@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
|
@@ -1,20 +1,47 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import { AcceptEngagementInvitationCommandInput, AcceptEngagementInvitationCommandOutput } from "./commands/AcceptEngagementInvitationCommand";
|
|
2
3
|
import { AssignOpportunityCommandInput, AssignOpportunityCommandOutput } from "./commands/AssignOpportunityCommand";
|
|
3
4
|
import { AssociateOpportunityCommandInput, AssociateOpportunityCommandOutput } from "./commands/AssociateOpportunityCommand";
|
|
5
|
+
import { CreateEngagementCommandInput, CreateEngagementCommandOutput } from "./commands/CreateEngagementCommand";
|
|
6
|
+
import { CreateEngagementInvitationCommandInput, CreateEngagementInvitationCommandOutput } from "./commands/CreateEngagementInvitationCommand";
|
|
4
7
|
import { CreateOpportunityCommandInput, CreateOpportunityCommandOutput } from "./commands/CreateOpportunityCommand";
|
|
8
|
+
import { CreateResourceSnapshotCommandInput, CreateResourceSnapshotCommandOutput } from "./commands/CreateResourceSnapshotCommand";
|
|
9
|
+
import { CreateResourceSnapshotJobCommandInput, CreateResourceSnapshotJobCommandOutput } from "./commands/CreateResourceSnapshotJobCommand";
|
|
10
|
+
import { DeleteResourceSnapshotJobCommandInput, DeleteResourceSnapshotJobCommandOutput } from "./commands/DeleteResourceSnapshotJobCommand";
|
|
5
11
|
import { DisassociateOpportunityCommandInput, DisassociateOpportunityCommandOutput } from "./commands/DisassociateOpportunityCommand";
|
|
6
12
|
import { GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryCommandOutput } from "./commands/GetAwsOpportunitySummaryCommand";
|
|
13
|
+
import { GetEngagementCommandInput, GetEngagementCommandOutput } from "./commands/GetEngagementCommand";
|
|
7
14
|
import { GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput } from "./commands/GetEngagementInvitationCommand";
|
|
8
15
|
import { GetOpportunityCommandInput, GetOpportunityCommandOutput } from "./commands/GetOpportunityCommand";
|
|
16
|
+
import { GetResourceSnapshotCommandInput, GetResourceSnapshotCommandOutput } from "./commands/GetResourceSnapshotCommand";
|
|
17
|
+
import { GetResourceSnapshotJobCommandInput, GetResourceSnapshotJobCommandOutput } from "./commands/GetResourceSnapshotJobCommand";
|
|
18
|
+
import { GetSellingSystemSettingsCommandInput, GetSellingSystemSettingsCommandOutput } from "./commands/GetSellingSystemSettingsCommand";
|
|
19
|
+
import { ListEngagementByAcceptingInvitationTasksCommandInput, ListEngagementByAcceptingInvitationTasksCommandOutput } from "./commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
20
|
+
import { ListEngagementFromOpportunityTasksCommandInput, ListEngagementFromOpportunityTasksCommandOutput } from "./commands/ListEngagementFromOpportunityTasksCommand";
|
|
9
21
|
import { ListEngagementInvitationsCommandInput, ListEngagementInvitationsCommandOutput } from "./commands/ListEngagementInvitationsCommand";
|
|
22
|
+
import { ListEngagementMembersCommandInput, ListEngagementMembersCommandOutput } from "./commands/ListEngagementMembersCommand";
|
|
23
|
+
import { ListEngagementResourceAssociationsCommandInput, ListEngagementResourceAssociationsCommandOutput } from "./commands/ListEngagementResourceAssociationsCommand";
|
|
24
|
+
import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
10
25
|
import { ListOpportunitiesCommandInput, ListOpportunitiesCommandOutput } from "./commands/ListOpportunitiesCommand";
|
|
26
|
+
import { ListResourceSnapshotJobsCommandInput, ListResourceSnapshotJobsCommandOutput } from "./commands/ListResourceSnapshotJobsCommand";
|
|
27
|
+
import { ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput } from "./commands/ListResourceSnapshotsCommand";
|
|
11
28
|
import { ListSolutionsCommandInput, ListSolutionsCommandOutput } from "./commands/ListSolutionsCommand";
|
|
29
|
+
import { PutSellingSystemSettingsCommandInput, PutSellingSystemSettingsCommandOutput } from "./commands/PutSellingSystemSettingsCommand";
|
|
12
30
|
import { RejectEngagementInvitationCommandInput, RejectEngagementInvitationCommandOutput } from "./commands/RejectEngagementInvitationCommand";
|
|
13
31
|
import { StartEngagementByAcceptingInvitationTaskCommandInput, StartEngagementByAcceptingInvitationTaskCommandOutput } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
14
32
|
import { StartEngagementFromOpportunityTaskCommandInput, StartEngagementFromOpportunityTaskCommandOutput } from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
33
|
+
import { StartResourceSnapshotJobCommandInput, StartResourceSnapshotJobCommandOutput } from "./commands/StartResourceSnapshotJobCommand";
|
|
34
|
+
import { StopResourceSnapshotJobCommandInput, StopResourceSnapshotJobCommandOutput } from "./commands/StopResourceSnapshotJobCommand";
|
|
35
|
+
import { SubmitOpportunityCommandInput, SubmitOpportunityCommandOutput } from "./commands/SubmitOpportunityCommand";
|
|
15
36
|
import { UpdateOpportunityCommandInput, UpdateOpportunityCommandOutput } from "./commands/UpdateOpportunityCommand";
|
|
16
37
|
import { PartnerCentralSellingClient } from "./PartnerCentralSellingClient";
|
|
17
38
|
export interface PartnerCentralSelling {
|
|
39
|
+
/**
|
|
40
|
+
* @see {@link AcceptEngagementInvitationCommand}
|
|
41
|
+
*/
|
|
42
|
+
acceptEngagementInvitation(args: AcceptEngagementInvitationCommandInput, options?: __HttpHandlerOptions): Promise<AcceptEngagementInvitationCommandOutput>;
|
|
43
|
+
acceptEngagementInvitation(args: AcceptEngagementInvitationCommandInput, cb: (err: any, data?: AcceptEngagementInvitationCommandOutput) => void): void;
|
|
44
|
+
acceptEngagementInvitation(args: AcceptEngagementInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AcceptEngagementInvitationCommandOutput) => void): void;
|
|
18
45
|
/**
|
|
19
46
|
* @see {@link AssignOpportunityCommand}
|
|
20
47
|
*/
|
|
@@ -27,12 +54,42 @@ export interface PartnerCentralSelling {
|
|
|
27
54
|
associateOpportunity(args: AssociateOpportunityCommandInput, options?: __HttpHandlerOptions): Promise<AssociateOpportunityCommandOutput>;
|
|
28
55
|
associateOpportunity(args: AssociateOpportunityCommandInput, cb: (err: any, data?: AssociateOpportunityCommandOutput) => void): void;
|
|
29
56
|
associateOpportunity(args: AssociateOpportunityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: AssociateOpportunityCommandOutput) => void): void;
|
|
57
|
+
/**
|
|
58
|
+
* @see {@link CreateEngagementCommand}
|
|
59
|
+
*/
|
|
60
|
+
createEngagement(args: CreateEngagementCommandInput, options?: __HttpHandlerOptions): Promise<CreateEngagementCommandOutput>;
|
|
61
|
+
createEngagement(args: CreateEngagementCommandInput, cb: (err: any, data?: CreateEngagementCommandOutput) => void): void;
|
|
62
|
+
createEngagement(args: CreateEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEngagementCommandOutput) => void): void;
|
|
63
|
+
/**
|
|
64
|
+
* @see {@link CreateEngagementInvitationCommand}
|
|
65
|
+
*/
|
|
66
|
+
createEngagementInvitation(args: CreateEngagementInvitationCommandInput, options?: __HttpHandlerOptions): Promise<CreateEngagementInvitationCommandOutput>;
|
|
67
|
+
createEngagementInvitation(args: CreateEngagementInvitationCommandInput, cb: (err: any, data?: CreateEngagementInvitationCommandOutput) => void): void;
|
|
68
|
+
createEngagementInvitation(args: CreateEngagementInvitationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEngagementInvitationCommandOutput) => void): void;
|
|
30
69
|
/**
|
|
31
70
|
* @see {@link CreateOpportunityCommand}
|
|
32
71
|
*/
|
|
33
72
|
createOpportunity(args: CreateOpportunityCommandInput, options?: __HttpHandlerOptions): Promise<CreateOpportunityCommandOutput>;
|
|
34
73
|
createOpportunity(args: CreateOpportunityCommandInput, cb: (err: any, data?: CreateOpportunityCommandOutput) => void): void;
|
|
35
74
|
createOpportunity(args: CreateOpportunityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateOpportunityCommandOutput) => void): void;
|
|
75
|
+
/**
|
|
76
|
+
* @see {@link CreateResourceSnapshotCommand}
|
|
77
|
+
*/
|
|
78
|
+
createResourceSnapshot(args: CreateResourceSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceSnapshotCommandOutput>;
|
|
79
|
+
createResourceSnapshot(args: CreateResourceSnapshotCommandInput, cb: (err: any, data?: CreateResourceSnapshotCommandOutput) => void): void;
|
|
80
|
+
createResourceSnapshot(args: CreateResourceSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceSnapshotCommandOutput) => void): void;
|
|
81
|
+
/**
|
|
82
|
+
* @see {@link CreateResourceSnapshotJobCommand}
|
|
83
|
+
*/
|
|
84
|
+
createResourceSnapshotJob(args: CreateResourceSnapshotJobCommandInput, options?: __HttpHandlerOptions): Promise<CreateResourceSnapshotJobCommandOutput>;
|
|
85
|
+
createResourceSnapshotJob(args: CreateResourceSnapshotJobCommandInput, cb: (err: any, data?: CreateResourceSnapshotJobCommandOutput) => void): void;
|
|
86
|
+
createResourceSnapshotJob(args: CreateResourceSnapshotJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateResourceSnapshotJobCommandOutput) => void): void;
|
|
87
|
+
/**
|
|
88
|
+
* @see {@link DeleteResourceSnapshotJobCommand}
|
|
89
|
+
*/
|
|
90
|
+
deleteResourceSnapshotJob(args: DeleteResourceSnapshotJobCommandInput, options?: __HttpHandlerOptions): Promise<DeleteResourceSnapshotJobCommandOutput>;
|
|
91
|
+
deleteResourceSnapshotJob(args: DeleteResourceSnapshotJobCommandInput, cb: (err: any, data?: DeleteResourceSnapshotJobCommandOutput) => void): void;
|
|
92
|
+
deleteResourceSnapshotJob(args: DeleteResourceSnapshotJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteResourceSnapshotJobCommandOutput) => void): void;
|
|
36
93
|
/**
|
|
37
94
|
* @see {@link DisassociateOpportunityCommand}
|
|
38
95
|
*/
|
|
@@ -45,6 +102,12 @@ export interface PartnerCentralSelling {
|
|
|
45
102
|
getAwsOpportunitySummary(args: GetAwsOpportunitySummaryCommandInput, options?: __HttpHandlerOptions): Promise<GetAwsOpportunitySummaryCommandOutput>;
|
|
46
103
|
getAwsOpportunitySummary(args: GetAwsOpportunitySummaryCommandInput, cb: (err: any, data?: GetAwsOpportunitySummaryCommandOutput) => void): void;
|
|
47
104
|
getAwsOpportunitySummary(args: GetAwsOpportunitySummaryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetAwsOpportunitySummaryCommandOutput) => void): void;
|
|
105
|
+
/**
|
|
106
|
+
* @see {@link GetEngagementCommand}
|
|
107
|
+
*/
|
|
108
|
+
getEngagement(args: GetEngagementCommandInput, options?: __HttpHandlerOptions): Promise<GetEngagementCommandOutput>;
|
|
109
|
+
getEngagement(args: GetEngagementCommandInput, cb: (err: any, data?: GetEngagementCommandOutput) => void): void;
|
|
110
|
+
getEngagement(args: GetEngagementCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEngagementCommandOutput) => void): void;
|
|
48
111
|
/**
|
|
49
112
|
* @see {@link GetEngagementInvitationCommand}
|
|
50
113
|
*/
|
|
@@ -57,24 +120,90 @@ export interface PartnerCentralSelling {
|
|
|
57
120
|
getOpportunity(args: GetOpportunityCommandInput, options?: __HttpHandlerOptions): Promise<GetOpportunityCommandOutput>;
|
|
58
121
|
getOpportunity(args: GetOpportunityCommandInput, cb: (err: any, data?: GetOpportunityCommandOutput) => void): void;
|
|
59
122
|
getOpportunity(args: GetOpportunityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOpportunityCommandOutput) => void): void;
|
|
123
|
+
/**
|
|
124
|
+
* @see {@link GetResourceSnapshotCommand}
|
|
125
|
+
*/
|
|
126
|
+
getResourceSnapshot(args: GetResourceSnapshotCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceSnapshotCommandOutput>;
|
|
127
|
+
getResourceSnapshot(args: GetResourceSnapshotCommandInput, cb: (err: any, data?: GetResourceSnapshotCommandOutput) => void): void;
|
|
128
|
+
getResourceSnapshot(args: GetResourceSnapshotCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceSnapshotCommandOutput) => void): void;
|
|
129
|
+
/**
|
|
130
|
+
* @see {@link GetResourceSnapshotJobCommand}
|
|
131
|
+
*/
|
|
132
|
+
getResourceSnapshotJob(args: GetResourceSnapshotJobCommandInput, options?: __HttpHandlerOptions): Promise<GetResourceSnapshotJobCommandOutput>;
|
|
133
|
+
getResourceSnapshotJob(args: GetResourceSnapshotJobCommandInput, cb: (err: any, data?: GetResourceSnapshotJobCommandOutput) => void): void;
|
|
134
|
+
getResourceSnapshotJob(args: GetResourceSnapshotJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetResourceSnapshotJobCommandOutput) => void): void;
|
|
135
|
+
/**
|
|
136
|
+
* @see {@link GetSellingSystemSettingsCommand}
|
|
137
|
+
*/
|
|
138
|
+
getSellingSystemSettings(args: GetSellingSystemSettingsCommandInput, options?: __HttpHandlerOptions): Promise<GetSellingSystemSettingsCommandOutput>;
|
|
139
|
+
getSellingSystemSettings(args: GetSellingSystemSettingsCommandInput, cb: (err: any, data?: GetSellingSystemSettingsCommandOutput) => void): void;
|
|
140
|
+
getSellingSystemSettings(args: GetSellingSystemSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetSellingSystemSettingsCommandOutput) => void): void;
|
|
141
|
+
/**
|
|
142
|
+
* @see {@link ListEngagementByAcceptingInvitationTasksCommand}
|
|
143
|
+
*/
|
|
144
|
+
listEngagementByAcceptingInvitationTasks(args: ListEngagementByAcceptingInvitationTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementByAcceptingInvitationTasksCommandOutput>;
|
|
145
|
+
listEngagementByAcceptingInvitationTasks(args: ListEngagementByAcceptingInvitationTasksCommandInput, cb: (err: any, data?: ListEngagementByAcceptingInvitationTasksCommandOutput) => void): void;
|
|
146
|
+
listEngagementByAcceptingInvitationTasks(args: ListEngagementByAcceptingInvitationTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementByAcceptingInvitationTasksCommandOutput) => void): void;
|
|
147
|
+
/**
|
|
148
|
+
* @see {@link ListEngagementFromOpportunityTasksCommand}
|
|
149
|
+
*/
|
|
150
|
+
listEngagementFromOpportunityTasks(args: ListEngagementFromOpportunityTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementFromOpportunityTasksCommandOutput>;
|
|
151
|
+
listEngagementFromOpportunityTasks(args: ListEngagementFromOpportunityTasksCommandInput, cb: (err: any, data?: ListEngagementFromOpportunityTasksCommandOutput) => void): void;
|
|
152
|
+
listEngagementFromOpportunityTasks(args: ListEngagementFromOpportunityTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementFromOpportunityTasksCommandOutput) => void): void;
|
|
60
153
|
/**
|
|
61
154
|
* @see {@link ListEngagementInvitationsCommand}
|
|
62
155
|
*/
|
|
63
156
|
listEngagementInvitations(args: ListEngagementInvitationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementInvitationsCommandOutput>;
|
|
64
157
|
listEngagementInvitations(args: ListEngagementInvitationsCommandInput, cb: (err: any, data?: ListEngagementInvitationsCommandOutput) => void): void;
|
|
65
158
|
listEngagementInvitations(args: ListEngagementInvitationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementInvitationsCommandOutput) => void): void;
|
|
159
|
+
/**
|
|
160
|
+
* @see {@link ListEngagementMembersCommand}
|
|
161
|
+
*/
|
|
162
|
+
listEngagementMembers(args: ListEngagementMembersCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementMembersCommandOutput>;
|
|
163
|
+
listEngagementMembers(args: ListEngagementMembersCommandInput, cb: (err: any, data?: ListEngagementMembersCommandOutput) => void): void;
|
|
164
|
+
listEngagementMembers(args: ListEngagementMembersCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementMembersCommandOutput) => void): void;
|
|
165
|
+
/**
|
|
166
|
+
* @see {@link ListEngagementResourceAssociationsCommand}
|
|
167
|
+
*/
|
|
168
|
+
listEngagementResourceAssociations(args: ListEngagementResourceAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementResourceAssociationsCommandOutput>;
|
|
169
|
+
listEngagementResourceAssociations(args: ListEngagementResourceAssociationsCommandInput, cb: (err: any, data?: ListEngagementResourceAssociationsCommandOutput) => void): void;
|
|
170
|
+
listEngagementResourceAssociations(args: ListEngagementResourceAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementResourceAssociationsCommandOutput) => void): void;
|
|
171
|
+
/**
|
|
172
|
+
* @see {@link ListEngagementsCommand}
|
|
173
|
+
*/
|
|
174
|
+
listEngagements(args: ListEngagementsCommandInput, options?: __HttpHandlerOptions): Promise<ListEngagementsCommandOutput>;
|
|
175
|
+
listEngagements(args: ListEngagementsCommandInput, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
176
|
+
listEngagements(args: ListEngagementsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEngagementsCommandOutput) => void): void;
|
|
66
177
|
/**
|
|
67
178
|
* @see {@link ListOpportunitiesCommand}
|
|
68
179
|
*/
|
|
69
180
|
listOpportunities(args: ListOpportunitiesCommandInput, options?: __HttpHandlerOptions): Promise<ListOpportunitiesCommandOutput>;
|
|
70
181
|
listOpportunities(args: ListOpportunitiesCommandInput, cb: (err: any, data?: ListOpportunitiesCommandOutput) => void): void;
|
|
71
182
|
listOpportunities(args: ListOpportunitiesCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpportunitiesCommandOutput) => void): void;
|
|
183
|
+
/**
|
|
184
|
+
* @see {@link ListResourceSnapshotJobsCommand}
|
|
185
|
+
*/
|
|
186
|
+
listResourceSnapshotJobs(args: ListResourceSnapshotJobsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceSnapshotJobsCommandOutput>;
|
|
187
|
+
listResourceSnapshotJobs(args: ListResourceSnapshotJobsCommandInput, cb: (err: any, data?: ListResourceSnapshotJobsCommandOutput) => void): void;
|
|
188
|
+
listResourceSnapshotJobs(args: ListResourceSnapshotJobsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceSnapshotJobsCommandOutput) => void): void;
|
|
189
|
+
/**
|
|
190
|
+
* @see {@link ListResourceSnapshotsCommand}
|
|
191
|
+
*/
|
|
192
|
+
listResourceSnapshots(args: ListResourceSnapshotsCommandInput, options?: __HttpHandlerOptions): Promise<ListResourceSnapshotsCommandOutput>;
|
|
193
|
+
listResourceSnapshots(args: ListResourceSnapshotsCommandInput, cb: (err: any, data?: ListResourceSnapshotsCommandOutput) => void): void;
|
|
194
|
+
listResourceSnapshots(args: ListResourceSnapshotsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListResourceSnapshotsCommandOutput) => void): void;
|
|
72
195
|
/**
|
|
73
196
|
* @see {@link ListSolutionsCommand}
|
|
74
197
|
*/
|
|
75
198
|
listSolutions(args: ListSolutionsCommandInput, options?: __HttpHandlerOptions): Promise<ListSolutionsCommandOutput>;
|
|
76
199
|
listSolutions(args: ListSolutionsCommandInput, cb: (err: any, data?: ListSolutionsCommandOutput) => void): void;
|
|
77
200
|
listSolutions(args: ListSolutionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListSolutionsCommandOutput) => void): void;
|
|
201
|
+
/**
|
|
202
|
+
* @see {@link PutSellingSystemSettingsCommand}
|
|
203
|
+
*/
|
|
204
|
+
putSellingSystemSettings(args: PutSellingSystemSettingsCommandInput, options?: __HttpHandlerOptions): Promise<PutSellingSystemSettingsCommandOutput>;
|
|
205
|
+
putSellingSystemSettings(args: PutSellingSystemSettingsCommandInput, cb: (err: any, data?: PutSellingSystemSettingsCommandOutput) => void): void;
|
|
206
|
+
putSellingSystemSettings(args: PutSellingSystemSettingsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: PutSellingSystemSettingsCommandOutput) => void): void;
|
|
78
207
|
/**
|
|
79
208
|
* @see {@link RejectEngagementInvitationCommand}
|
|
80
209
|
*/
|
|
@@ -93,6 +222,24 @@ export interface PartnerCentralSelling {
|
|
|
93
222
|
startEngagementFromOpportunityTask(args: StartEngagementFromOpportunityTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartEngagementFromOpportunityTaskCommandOutput>;
|
|
94
223
|
startEngagementFromOpportunityTask(args: StartEngagementFromOpportunityTaskCommandInput, cb: (err: any, data?: StartEngagementFromOpportunityTaskCommandOutput) => void): void;
|
|
95
224
|
startEngagementFromOpportunityTask(args: StartEngagementFromOpportunityTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartEngagementFromOpportunityTaskCommandOutput) => void): void;
|
|
225
|
+
/**
|
|
226
|
+
* @see {@link StartResourceSnapshotJobCommand}
|
|
227
|
+
*/
|
|
228
|
+
startResourceSnapshotJob(args: StartResourceSnapshotJobCommandInput, options?: __HttpHandlerOptions): Promise<StartResourceSnapshotJobCommandOutput>;
|
|
229
|
+
startResourceSnapshotJob(args: StartResourceSnapshotJobCommandInput, cb: (err: any, data?: StartResourceSnapshotJobCommandOutput) => void): void;
|
|
230
|
+
startResourceSnapshotJob(args: StartResourceSnapshotJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartResourceSnapshotJobCommandOutput) => void): void;
|
|
231
|
+
/**
|
|
232
|
+
* @see {@link StopResourceSnapshotJobCommand}
|
|
233
|
+
*/
|
|
234
|
+
stopResourceSnapshotJob(args: StopResourceSnapshotJobCommandInput, options?: __HttpHandlerOptions): Promise<StopResourceSnapshotJobCommandOutput>;
|
|
235
|
+
stopResourceSnapshotJob(args: StopResourceSnapshotJobCommandInput, cb: (err: any, data?: StopResourceSnapshotJobCommandOutput) => void): void;
|
|
236
|
+
stopResourceSnapshotJob(args: StopResourceSnapshotJobCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopResourceSnapshotJobCommandOutput) => void): void;
|
|
237
|
+
/**
|
|
238
|
+
* @see {@link SubmitOpportunityCommand}
|
|
239
|
+
*/
|
|
240
|
+
submitOpportunity(args: SubmitOpportunityCommandInput, options?: __HttpHandlerOptions): Promise<SubmitOpportunityCommandOutput>;
|
|
241
|
+
submitOpportunity(args: SubmitOpportunityCommandInput, cb: (err: any, data?: SubmitOpportunityCommandOutput) => void): void;
|
|
242
|
+
submitOpportunity(args: SubmitOpportunityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: SubmitOpportunityCommandOutput) => void): void;
|
|
96
243
|
/**
|
|
97
244
|
* @see {@link UpdateOpportunityCommand}
|
|
98
245
|
*/
|
|
@@ -103,70 +250,63 @@ export interface PartnerCentralSelling {
|
|
|
103
250
|
/**
|
|
104
251
|
* <fullname>AWS Partner Central API for Selling</fullname>
|
|
105
252
|
* <p>
|
|
106
|
-
* <b>AWS Partner Central API for Selling Reference
|
|
253
|
+
* <b>AWS Partner Central API for Selling Reference
|
|
254
|
+
* Guide</b>
|
|
107
255
|
* </p>
|
|
108
|
-
* <p>This Amazon Web Services (AWS) Partner Central API reference is
|
|
109
|
-
*
|
|
110
|
-
*
|
|
111
|
-
*
|
|
112
|
-
*
|
|
113
|
-
*
|
|
114
|
-
*
|
|
115
|
-
* either using API <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/API_Operations.html">Actions</a> or by using an AWS SDK that's tailored to your
|
|
116
|
-
* programming language or platform. For more information, see <a href="http://aws.amazon.com/getting-started">Getting Started with
|
|
117
|
-
* AWS</a> and <a href="http://aws.amazon.com/developer/tools/">Tools to Build on AWS</a>.</p>
|
|
256
|
+
* <p>This Amazon Web Services (AWS) Partner Central API reference is designed to help
|
|
257
|
+
* <a href="http://aws.amazon.com/partners/programs/">AWS Partners</a> integrate
|
|
258
|
+
* Customer Relationship Management (CRM) systems with AWS Partner Central. Partners can
|
|
259
|
+
* automate interactions with AWS Partner Central, which helps to ensure effective
|
|
260
|
+
* engagements in joint business activities.</p>
|
|
261
|
+
* <p>The API provides standard AWS API functionality. Access it by either using API <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/API_Operations.html">Actions</a> or by using an AWS SDK that's tailored to your programming language
|
|
262
|
+
* or platform. For more information, see <a href="http://aws.amazon.com/getting-started">Getting Started with AWS</a> and <a href="http://aws.amazon.com/developer/tools/">Tools to Build on AWS</a>.</p>
|
|
118
263
|
* <p class="title">
|
|
119
264
|
* <b>Features offered by AWS Partner Central API</b>
|
|
120
265
|
* </p>
|
|
121
266
|
* <ol>
|
|
122
267
|
* <li>
|
|
123
268
|
* <p>
|
|
124
|
-
* <b>Opportunity management:</b>
|
|
125
|
-
*
|
|
126
|
-
*
|
|
127
|
-
*
|
|
128
|
-
* <code>AssignOpportunity</code>.</p>
|
|
269
|
+
* <b>Opportunity management:</b> Manages coselling
|
|
270
|
+
* opportunities through API actions such as <code>CreateOpportunity</code>,
|
|
271
|
+
* <code>UpdateOpportunity</code>, <code>ListOpportunities</code>,
|
|
272
|
+
* <code>GetOpportunity</code>, and <code>AssignOpportunity</code>.</p>
|
|
129
273
|
* </li>
|
|
130
274
|
* <li>
|
|
131
275
|
* <p>
|
|
132
|
-
* <b>AWS referral management:</b>
|
|
133
|
-
*
|
|
134
|
-
*
|
|
135
|
-
*
|
|
136
|
-
*
|
|
137
|
-
* <code>RejectEngagementInvitation</code>.</p>
|
|
276
|
+
* <b>AWS referral management:</b> Manages referrals
|
|
277
|
+
* shared by AWS using actions such as <code>ListEngagementInvitations</code>,
|
|
278
|
+
* <code>GetEngagementInvitation</code>,
|
|
279
|
+
* <code>StartEngagementByAcceptingInvitation</code>, and
|
|
280
|
+
* <code>RejectEngagementInvitation</code>.</p>
|
|
138
281
|
* </li>
|
|
139
282
|
* <li>
|
|
140
283
|
* <p>
|
|
141
|
-
* <b>Entity association:</b>
|
|
142
|
-
*
|
|
143
|
-
*
|
|
144
|
-
*
|
|
145
|
-
*
|
|
146
|
-
*
|
|
284
|
+
* <b>Entity association:</b> Associates related
|
|
285
|
+
* entities such as <i>AWS Products</i>, <i>Partner
|
|
286
|
+
* Solutions</i>, and <i>AWS Marketplace Private
|
|
287
|
+
* Offers</i> with opportunities using the actions
|
|
288
|
+
* <code>AssociateOpportunity</code>, and
|
|
289
|
+
* <code>DisassociateOpportunity</code>.</p>
|
|
147
290
|
* </li>
|
|
148
291
|
* <li>
|
|
149
292
|
* <p>
|
|
150
|
-
* <b>View AWS opportunity
|
|
151
|
-
*
|
|
152
|
-
*
|
|
153
|
-
* action.</p>
|
|
293
|
+
* <b>View AWS opportunity details:</b> Retrieves
|
|
294
|
+
* real-time summaries of AWS opportunities using the
|
|
295
|
+
* <code>GetAWSOpportunitySummary</code> action.</p>
|
|
154
296
|
* </li>
|
|
155
297
|
* <li>
|
|
156
298
|
* <p>
|
|
157
|
-
* <b>List solutions:</b> Provides
|
|
158
|
-
*
|
|
159
|
-
* <code>ListSolutions</code>.</p>
|
|
299
|
+
* <b>List solutions:</b> Provides list APIs for
|
|
300
|
+
* listing partner offers using <code>ListSolutions</code>.</p>
|
|
160
301
|
* </li>
|
|
161
302
|
* <li>
|
|
162
303
|
* <p>
|
|
163
|
-
* <b>Event subscription:</b>
|
|
164
|
-
*
|
|
165
|
-
*
|
|
166
|
-
*
|
|
167
|
-
*
|
|
168
|
-
*
|
|
169
|
-
* Created</i>.</p>
|
|
304
|
+
* <b>Event subscription:</b> Subscribe to real-time
|
|
305
|
+
* opportunity updates through AWS EventBridge by using actions such as
|
|
306
|
+
* <i>Opportunity Created</i>, <i>Opportunity
|
|
307
|
+
* Updated</i>, <i>Engagement Invitation Accepted</i>,
|
|
308
|
+
* <i>Engagement Invitation Rejected</i>, and
|
|
309
|
+
* <i>Engagement Invitation Created</i>.</p>
|
|
170
310
|
* </li>
|
|
171
311
|
* </ol>
|
|
172
312
|
* @public
|
|
@@ -7,19 +7,40 @@ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol
|
|
|
7
7
|
import { Client as __Client, DefaultsMode as __DefaultsMode, SmithyConfiguration as __SmithyConfiguration, SmithyResolvedConfiguration as __SmithyResolvedConfiguration } from "@smithy/smithy-client";
|
|
8
8
|
import { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { HttpAuthSchemeInputConfig, HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
+
import { AcceptEngagementInvitationCommandInput, AcceptEngagementInvitationCommandOutput } from "./commands/AcceptEngagementInvitationCommand";
|
|
10
11
|
import { AssignOpportunityCommandInput, AssignOpportunityCommandOutput } from "./commands/AssignOpportunityCommand";
|
|
11
12
|
import { AssociateOpportunityCommandInput, AssociateOpportunityCommandOutput } from "./commands/AssociateOpportunityCommand";
|
|
13
|
+
import { CreateEngagementCommandInput, CreateEngagementCommandOutput } from "./commands/CreateEngagementCommand";
|
|
14
|
+
import { CreateEngagementInvitationCommandInput, CreateEngagementInvitationCommandOutput } from "./commands/CreateEngagementInvitationCommand";
|
|
12
15
|
import { CreateOpportunityCommandInput, CreateOpportunityCommandOutput } from "./commands/CreateOpportunityCommand";
|
|
16
|
+
import { CreateResourceSnapshotCommandInput, CreateResourceSnapshotCommandOutput } from "./commands/CreateResourceSnapshotCommand";
|
|
17
|
+
import { CreateResourceSnapshotJobCommandInput, CreateResourceSnapshotJobCommandOutput } from "./commands/CreateResourceSnapshotJobCommand";
|
|
18
|
+
import { DeleteResourceSnapshotJobCommandInput, DeleteResourceSnapshotJobCommandOutput } from "./commands/DeleteResourceSnapshotJobCommand";
|
|
13
19
|
import { DisassociateOpportunityCommandInput, DisassociateOpportunityCommandOutput } from "./commands/DisassociateOpportunityCommand";
|
|
14
20
|
import { GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryCommandOutput } from "./commands/GetAwsOpportunitySummaryCommand";
|
|
21
|
+
import { GetEngagementCommandInput, GetEngagementCommandOutput } from "./commands/GetEngagementCommand";
|
|
15
22
|
import { GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput } from "./commands/GetEngagementInvitationCommand";
|
|
16
23
|
import { GetOpportunityCommandInput, GetOpportunityCommandOutput } from "./commands/GetOpportunityCommand";
|
|
24
|
+
import { GetResourceSnapshotCommandInput, GetResourceSnapshotCommandOutput } from "./commands/GetResourceSnapshotCommand";
|
|
25
|
+
import { GetResourceSnapshotJobCommandInput, GetResourceSnapshotJobCommandOutput } from "./commands/GetResourceSnapshotJobCommand";
|
|
26
|
+
import { GetSellingSystemSettingsCommandInput, GetSellingSystemSettingsCommandOutput } from "./commands/GetSellingSystemSettingsCommand";
|
|
27
|
+
import { ListEngagementByAcceptingInvitationTasksCommandInput, ListEngagementByAcceptingInvitationTasksCommandOutput } from "./commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
28
|
+
import { ListEngagementFromOpportunityTasksCommandInput, ListEngagementFromOpportunityTasksCommandOutput } from "./commands/ListEngagementFromOpportunityTasksCommand";
|
|
17
29
|
import { ListEngagementInvitationsCommandInput, ListEngagementInvitationsCommandOutput } from "./commands/ListEngagementInvitationsCommand";
|
|
30
|
+
import { ListEngagementMembersCommandInput, ListEngagementMembersCommandOutput } from "./commands/ListEngagementMembersCommand";
|
|
31
|
+
import { ListEngagementResourceAssociationsCommandInput, ListEngagementResourceAssociationsCommandOutput } from "./commands/ListEngagementResourceAssociationsCommand";
|
|
32
|
+
import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
18
33
|
import { ListOpportunitiesCommandInput, ListOpportunitiesCommandOutput } from "./commands/ListOpportunitiesCommand";
|
|
34
|
+
import { ListResourceSnapshotJobsCommandInput, ListResourceSnapshotJobsCommandOutput } from "./commands/ListResourceSnapshotJobsCommand";
|
|
35
|
+
import { ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput } from "./commands/ListResourceSnapshotsCommand";
|
|
19
36
|
import { ListSolutionsCommandInput, ListSolutionsCommandOutput } from "./commands/ListSolutionsCommand";
|
|
37
|
+
import { PutSellingSystemSettingsCommandInput, PutSellingSystemSettingsCommandOutput } from "./commands/PutSellingSystemSettingsCommand";
|
|
20
38
|
import { RejectEngagementInvitationCommandInput, RejectEngagementInvitationCommandOutput } from "./commands/RejectEngagementInvitationCommand";
|
|
21
39
|
import { StartEngagementByAcceptingInvitationTaskCommandInput, StartEngagementByAcceptingInvitationTaskCommandOutput } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
22
40
|
import { StartEngagementFromOpportunityTaskCommandInput, StartEngagementFromOpportunityTaskCommandOutput } from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
41
|
+
import { StartResourceSnapshotJobCommandInput, StartResourceSnapshotJobCommandOutput } from "./commands/StartResourceSnapshotJobCommand";
|
|
42
|
+
import { StopResourceSnapshotJobCommandInput, StopResourceSnapshotJobCommandOutput } from "./commands/StopResourceSnapshotJobCommand";
|
|
43
|
+
import { SubmitOpportunityCommandInput, SubmitOpportunityCommandOutput } from "./commands/SubmitOpportunityCommand";
|
|
23
44
|
import { UpdateOpportunityCommandInput, UpdateOpportunityCommandOutput } from "./commands/UpdateOpportunityCommand";
|
|
24
45
|
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
25
46
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
@@ -27,11 +48,11 @@ export { __Client };
|
|
|
27
48
|
/**
|
|
28
49
|
* @public
|
|
29
50
|
*/
|
|
30
|
-
export type ServiceInputTypes = AssignOpportunityCommandInput | AssociateOpportunityCommandInput | CreateOpportunityCommandInput | DisassociateOpportunityCommandInput | GetAwsOpportunitySummaryCommandInput | GetEngagementInvitationCommandInput | GetOpportunityCommandInput | ListEngagementInvitationsCommandInput | ListOpportunitiesCommandInput | ListSolutionsCommandInput | RejectEngagementInvitationCommandInput | StartEngagementByAcceptingInvitationTaskCommandInput | StartEngagementFromOpportunityTaskCommandInput | UpdateOpportunityCommandInput;
|
|
51
|
+
export type ServiceInputTypes = AcceptEngagementInvitationCommandInput | AssignOpportunityCommandInput | AssociateOpportunityCommandInput | CreateEngagementCommandInput | CreateEngagementInvitationCommandInput | CreateOpportunityCommandInput | CreateResourceSnapshotCommandInput | CreateResourceSnapshotJobCommandInput | DeleteResourceSnapshotJobCommandInput | DisassociateOpportunityCommandInput | GetAwsOpportunitySummaryCommandInput | GetEngagementCommandInput | GetEngagementInvitationCommandInput | GetOpportunityCommandInput | GetResourceSnapshotCommandInput | GetResourceSnapshotJobCommandInput | GetSellingSystemSettingsCommandInput | ListEngagementByAcceptingInvitationTasksCommandInput | ListEngagementFromOpportunityTasksCommandInput | ListEngagementInvitationsCommandInput | ListEngagementMembersCommandInput | ListEngagementResourceAssociationsCommandInput | ListEngagementsCommandInput | ListOpportunitiesCommandInput | ListResourceSnapshotJobsCommandInput | ListResourceSnapshotsCommandInput | ListSolutionsCommandInput | PutSellingSystemSettingsCommandInput | RejectEngagementInvitationCommandInput | StartEngagementByAcceptingInvitationTaskCommandInput | StartEngagementFromOpportunityTaskCommandInput | StartResourceSnapshotJobCommandInput | StopResourceSnapshotJobCommandInput | SubmitOpportunityCommandInput | UpdateOpportunityCommandInput;
|
|
31
52
|
/**
|
|
32
53
|
* @public
|
|
33
54
|
*/
|
|
34
|
-
export type ServiceOutputTypes = AssignOpportunityCommandOutput | AssociateOpportunityCommandOutput | CreateOpportunityCommandOutput | DisassociateOpportunityCommandOutput | GetAwsOpportunitySummaryCommandOutput | GetEngagementInvitationCommandOutput | GetOpportunityCommandOutput | ListEngagementInvitationsCommandOutput | ListOpportunitiesCommandOutput | ListSolutionsCommandOutput | RejectEngagementInvitationCommandOutput | StartEngagementByAcceptingInvitationTaskCommandOutput | StartEngagementFromOpportunityTaskCommandOutput | UpdateOpportunityCommandOutput;
|
|
55
|
+
export type ServiceOutputTypes = AcceptEngagementInvitationCommandOutput | AssignOpportunityCommandOutput | AssociateOpportunityCommandOutput | CreateEngagementCommandOutput | CreateEngagementInvitationCommandOutput | CreateOpportunityCommandOutput | CreateResourceSnapshotCommandOutput | CreateResourceSnapshotJobCommandOutput | DeleteResourceSnapshotJobCommandOutput | DisassociateOpportunityCommandOutput | GetAwsOpportunitySummaryCommandOutput | GetEngagementCommandOutput | GetEngagementInvitationCommandOutput | GetOpportunityCommandOutput | GetResourceSnapshotCommandOutput | GetResourceSnapshotJobCommandOutput | GetSellingSystemSettingsCommandOutput | ListEngagementByAcceptingInvitationTasksCommandOutput | ListEngagementFromOpportunityTasksCommandOutput | ListEngagementInvitationsCommandOutput | ListEngagementMembersCommandOutput | ListEngagementResourceAssociationsCommandOutput | ListEngagementsCommandOutput | ListOpportunitiesCommandOutput | ListResourceSnapshotJobsCommandOutput | ListResourceSnapshotsCommandOutput | ListSolutionsCommandOutput | PutSellingSystemSettingsCommandOutput | RejectEngagementInvitationCommandOutput | StartEngagementByAcceptingInvitationTaskCommandOutput | StartEngagementFromOpportunityTaskCommandOutput | StartResourceSnapshotJobCommandOutput | StopResourceSnapshotJobCommandOutput | SubmitOpportunityCommandOutput | UpdateOpportunityCommandOutput;
|
|
35
56
|
/**
|
|
36
57
|
* @public
|
|
37
58
|
*/
|
|
@@ -167,70 +188,63 @@ export interface PartnerCentralSellingClientResolvedConfig extends PartnerCentra
|
|
|
167
188
|
/**
|
|
168
189
|
* <fullname>AWS Partner Central API for Selling</fullname>
|
|
169
190
|
* <p>
|
|
170
|
-
* <b>AWS Partner Central API for Selling Reference
|
|
191
|
+
* <b>AWS Partner Central API for Selling Reference
|
|
192
|
+
* Guide</b>
|
|
171
193
|
* </p>
|
|
172
|
-
* <p>This Amazon Web Services (AWS) Partner Central API reference is
|
|
173
|
-
*
|
|
174
|
-
*
|
|
175
|
-
*
|
|
176
|
-
*
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
* either using API <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/API_Operations.html">Actions</a> or by using an AWS SDK that's tailored to your
|
|
180
|
-
* programming language or platform. For more information, see <a href="http://aws.amazon.com/getting-started">Getting Started with
|
|
181
|
-
* AWS</a> and <a href="http://aws.amazon.com/developer/tools/">Tools to Build on AWS</a>.</p>
|
|
194
|
+
* <p>This Amazon Web Services (AWS) Partner Central API reference is designed to help
|
|
195
|
+
* <a href="http://aws.amazon.com/partners/programs/">AWS Partners</a> integrate
|
|
196
|
+
* Customer Relationship Management (CRM) systems with AWS Partner Central. Partners can
|
|
197
|
+
* automate interactions with AWS Partner Central, which helps to ensure effective
|
|
198
|
+
* engagements in joint business activities.</p>
|
|
199
|
+
* <p>The API provides standard AWS API functionality. Access it by either using API <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/API_Operations.html">Actions</a> or by using an AWS SDK that's tailored to your programming language
|
|
200
|
+
* or platform. For more information, see <a href="http://aws.amazon.com/getting-started">Getting Started with AWS</a> and <a href="http://aws.amazon.com/developer/tools/">Tools to Build on AWS</a>.</p>
|
|
182
201
|
* <p class="title">
|
|
183
202
|
* <b>Features offered by AWS Partner Central API</b>
|
|
184
203
|
* </p>
|
|
185
204
|
* <ol>
|
|
186
205
|
* <li>
|
|
187
206
|
* <p>
|
|
188
|
-
* <b>Opportunity management:</b>
|
|
189
|
-
*
|
|
190
|
-
*
|
|
191
|
-
*
|
|
192
|
-
* <code>AssignOpportunity</code>.</p>
|
|
207
|
+
* <b>Opportunity management:</b> Manages coselling
|
|
208
|
+
* opportunities through API actions such as <code>CreateOpportunity</code>,
|
|
209
|
+
* <code>UpdateOpportunity</code>, <code>ListOpportunities</code>,
|
|
210
|
+
* <code>GetOpportunity</code>, and <code>AssignOpportunity</code>.</p>
|
|
193
211
|
* </li>
|
|
194
212
|
* <li>
|
|
195
213
|
* <p>
|
|
196
|
-
* <b>AWS referral management:</b>
|
|
197
|
-
*
|
|
198
|
-
*
|
|
199
|
-
*
|
|
200
|
-
*
|
|
201
|
-
* <code>RejectEngagementInvitation</code>.</p>
|
|
214
|
+
* <b>AWS referral management:</b> Manages referrals
|
|
215
|
+
* shared by AWS using actions such as <code>ListEngagementInvitations</code>,
|
|
216
|
+
* <code>GetEngagementInvitation</code>,
|
|
217
|
+
* <code>StartEngagementByAcceptingInvitation</code>, and
|
|
218
|
+
* <code>RejectEngagementInvitation</code>.</p>
|
|
202
219
|
* </li>
|
|
203
220
|
* <li>
|
|
204
221
|
* <p>
|
|
205
|
-
* <b>Entity association:</b>
|
|
206
|
-
*
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
*
|
|
222
|
+
* <b>Entity association:</b> Associates related
|
|
223
|
+
* entities such as <i>AWS Products</i>, <i>Partner
|
|
224
|
+
* Solutions</i>, and <i>AWS Marketplace Private
|
|
225
|
+
* Offers</i> with opportunities using the actions
|
|
226
|
+
* <code>AssociateOpportunity</code>, and
|
|
227
|
+
* <code>DisassociateOpportunity</code>.</p>
|
|
211
228
|
* </li>
|
|
212
229
|
* <li>
|
|
213
230
|
* <p>
|
|
214
|
-
* <b>View AWS opportunity
|
|
215
|
-
*
|
|
216
|
-
*
|
|
217
|
-
* action.</p>
|
|
231
|
+
* <b>View AWS opportunity details:</b> Retrieves
|
|
232
|
+
* real-time summaries of AWS opportunities using the
|
|
233
|
+
* <code>GetAWSOpportunitySummary</code> action.</p>
|
|
218
234
|
* </li>
|
|
219
235
|
* <li>
|
|
220
236
|
* <p>
|
|
221
|
-
* <b>List solutions:</b> Provides
|
|
222
|
-
*
|
|
223
|
-
* <code>ListSolutions</code>.</p>
|
|
237
|
+
* <b>List solutions:</b> Provides list APIs for
|
|
238
|
+
* listing partner offers using <code>ListSolutions</code>.</p>
|
|
224
239
|
* </li>
|
|
225
240
|
* <li>
|
|
226
241
|
* <p>
|
|
227
|
-
* <b>Event subscription:</b>
|
|
228
|
-
*
|
|
229
|
-
*
|
|
230
|
-
*
|
|
231
|
-
*
|
|
232
|
-
*
|
|
233
|
-
* Created</i>.</p>
|
|
242
|
+
* <b>Event subscription:</b> Subscribe to real-time
|
|
243
|
+
* opportunity updates through AWS EventBridge by using actions such as
|
|
244
|
+
* <i>Opportunity Created</i>, <i>Opportunity
|
|
245
|
+
* Updated</i>, <i>Engagement Invitation Accepted</i>,
|
|
246
|
+
* <i>Engagement Invitation Rejected</i>, and
|
|
247
|
+
* <i>Engagement Invitation Created</i>.</p>
|
|
234
248
|
* </li>
|
|
235
249
|
* </ol>
|
|
236
250
|
* @public
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { AcceptEngagementInvitationRequest } 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 AcceptEngagementInvitationCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface AcceptEngagementInvitationCommandInput extends AcceptEngagementInvitationRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link AcceptEngagementInvitationCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface AcceptEngagementInvitationCommandOutput extends __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const AcceptEngagementInvitationCommand_base: {
|
|
25
|
+
new (input: AcceptEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<AcceptEngagementInvitationCommandInput, AcceptEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (__0_0: AcceptEngagementInvitationCommandInput): import("@smithy/smithy-client").CommandImpl<AcceptEngagementInvitationCommandInput, AcceptEngagementInvitationCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
28
|
+
};
|
|
29
|
+
/**
|
|
30
|
+
* <p>
|
|
31
|
+
* Use the <code>AcceptEngagementInvitation</code> action to accept an engagement invitation shared by AWS.
|
|
32
|
+
* Accepting the invitation indicates your willingness to participate in the engagement,
|
|
33
|
+
* granting you access to all engagement-related data.
|
|
34
|
+
* </p>
|
|
35
|
+
* @example
|
|
36
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
37
|
+
* ```javascript
|
|
38
|
+
* import { PartnerCentralSellingClient, AcceptEngagementInvitationCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
|
|
39
|
+
* // const { PartnerCentralSellingClient, AcceptEngagementInvitationCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
|
|
40
|
+
* const client = new PartnerCentralSellingClient(config);
|
|
41
|
+
* const input = { // AcceptEngagementInvitationRequest
|
|
42
|
+
* Catalog: "STRING_VALUE", // required
|
|
43
|
+
* Identifier: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new AcceptEngagementInvitationCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // {};
|
|
48
|
+
*
|
|
49
|
+
* ```
|
|
50
|
+
*
|
|
51
|
+
* @param AcceptEngagementInvitationCommandInput - {@link AcceptEngagementInvitationCommandInput}
|
|
52
|
+
* @returns {@link AcceptEngagementInvitationCommandOutput}
|
|
53
|
+
* @see {@link AcceptEngagementInvitationCommandInput} for command's `input` shape.
|
|
54
|
+
* @see {@link AcceptEngagementInvitationCommandOutput} for command's `response` shape.
|
|
55
|
+
* @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
|
|
56
|
+
*
|
|
57
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
58
|
+
* <p>This error occurs when you don't have permission to perform the requested
|
|
59
|
+
* action.</p>
|
|
60
|
+
* <p>You don’t have access to this action or resource. Review IAM policies or contact your
|
|
61
|
+
* AWS administrator for assistance.</p>
|
|
62
|
+
*
|
|
63
|
+
* @throws {@link InternalServerException} (server fault)
|
|
64
|
+
* <p>This error occurs when the specified resource can’t be found or doesn't exist.
|
|
65
|
+
* Resource ID and type might be incorrect.</p>
|
|
66
|
+
* <p>Suggested action: This is usually a transient error. Retry after the provided retry
|
|
67
|
+
* delay or a short interval. If the problem persists, contact AWS support.</p>
|
|
68
|
+
*
|
|
69
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
70
|
+
* <p>This error occurs when the specified resource can't be found. The resource might not
|
|
71
|
+
* exist, or isn't visible with the current credentials.</p>
|
|
72
|
+
* <p>Suggested action: Verify that the resource ID is correct and the resource is in the
|
|
73
|
+
* expected AWS region. Check IAM permissions for accessing the resource.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
76
|
+
* <p>This error occurs when there are too many requests sent. Review the provided quotas
|
|
77
|
+
* and adapt your usage to avoid throttling.</p>
|
|
78
|
+
* <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>
|
|
79
|
+
*
|
|
80
|
+
* @throws {@link ValidationException} (client fault)
|
|
81
|
+
* <p>The input fails to satisfy the constraints specified by the service or business
|
|
82
|
+
* validation rules.</p>
|
|
83
|
+
* <p>Suggested action: Review the error message, including the failed fields and reasons,
|
|
84
|
+
* to correct the request payload.</p>
|
|
85
|
+
*
|
|
86
|
+
* @throws {@link PartnerCentralSellingServiceException}
|
|
87
|
+
* <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
|
|
88
|
+
*
|
|
89
|
+
* @public
|
|
90
|
+
*/
|
|
91
|
+
export declare class AcceptEngagementInvitationCommand extends AcceptEngagementInvitationCommand_base {
|
|
92
|
+
/** @internal type navigation helper, not in runtime. */
|
|
93
|
+
protected static __types: {
|
|
94
|
+
api: {
|
|
95
|
+
input: AcceptEngagementInvitationRequest;
|
|
96
|
+
output: {};
|
|
97
|
+
};
|
|
98
|
+
sdk: {
|
|
99
|
+
input: AcceptEngagementInvitationCommandInput;
|
|
100
|
+
output: AcceptEngagementInvitationCommandOutput;
|
|
101
|
+
};
|
|
102
|
+
};
|
|
103
|
+
}
|