@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,4 +1,8 @@
|
|
|
1
1
|
import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
AcceptEngagementInvitationCommandInput,
|
|
4
|
+
AcceptEngagementInvitationCommandOutput,
|
|
5
|
+
} from "./commands/AcceptEngagementInvitationCommand";
|
|
2
6
|
import {
|
|
3
7
|
AssignOpportunityCommandInput,
|
|
4
8
|
AssignOpportunityCommandOutput,
|
|
@@ -7,10 +11,30 @@ import {
|
|
|
7
11
|
AssociateOpportunityCommandInput,
|
|
8
12
|
AssociateOpportunityCommandOutput,
|
|
9
13
|
} from "./commands/AssociateOpportunityCommand";
|
|
14
|
+
import {
|
|
15
|
+
CreateEngagementCommandInput,
|
|
16
|
+
CreateEngagementCommandOutput,
|
|
17
|
+
} from "./commands/CreateEngagementCommand";
|
|
18
|
+
import {
|
|
19
|
+
CreateEngagementInvitationCommandInput,
|
|
20
|
+
CreateEngagementInvitationCommandOutput,
|
|
21
|
+
} from "./commands/CreateEngagementInvitationCommand";
|
|
10
22
|
import {
|
|
11
23
|
CreateOpportunityCommandInput,
|
|
12
24
|
CreateOpportunityCommandOutput,
|
|
13
25
|
} from "./commands/CreateOpportunityCommand";
|
|
26
|
+
import {
|
|
27
|
+
CreateResourceSnapshotCommandInput,
|
|
28
|
+
CreateResourceSnapshotCommandOutput,
|
|
29
|
+
} from "./commands/CreateResourceSnapshotCommand";
|
|
30
|
+
import {
|
|
31
|
+
CreateResourceSnapshotJobCommandInput,
|
|
32
|
+
CreateResourceSnapshotJobCommandOutput,
|
|
33
|
+
} from "./commands/CreateResourceSnapshotJobCommand";
|
|
34
|
+
import {
|
|
35
|
+
DeleteResourceSnapshotJobCommandInput,
|
|
36
|
+
DeleteResourceSnapshotJobCommandOutput,
|
|
37
|
+
} from "./commands/DeleteResourceSnapshotJobCommand";
|
|
14
38
|
import {
|
|
15
39
|
DisassociateOpportunityCommandInput,
|
|
16
40
|
DisassociateOpportunityCommandOutput,
|
|
@@ -19,6 +43,10 @@ import {
|
|
|
19
43
|
GetAwsOpportunitySummaryCommandInput,
|
|
20
44
|
GetAwsOpportunitySummaryCommandOutput,
|
|
21
45
|
} from "./commands/GetAwsOpportunitySummaryCommand";
|
|
46
|
+
import {
|
|
47
|
+
GetEngagementCommandInput,
|
|
48
|
+
GetEngagementCommandOutput,
|
|
49
|
+
} from "./commands/GetEngagementCommand";
|
|
22
50
|
import {
|
|
23
51
|
GetEngagementInvitationCommandInput,
|
|
24
52
|
GetEngagementInvitationCommandOutput,
|
|
@@ -27,18 +55,62 @@ import {
|
|
|
27
55
|
GetOpportunityCommandInput,
|
|
28
56
|
GetOpportunityCommandOutput,
|
|
29
57
|
} from "./commands/GetOpportunityCommand";
|
|
58
|
+
import {
|
|
59
|
+
GetResourceSnapshotCommandInput,
|
|
60
|
+
GetResourceSnapshotCommandOutput,
|
|
61
|
+
} from "./commands/GetResourceSnapshotCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetResourceSnapshotJobCommandInput,
|
|
64
|
+
GetResourceSnapshotJobCommandOutput,
|
|
65
|
+
} from "./commands/GetResourceSnapshotJobCommand";
|
|
66
|
+
import {
|
|
67
|
+
GetSellingSystemSettingsCommandInput,
|
|
68
|
+
GetSellingSystemSettingsCommandOutput,
|
|
69
|
+
} from "./commands/GetSellingSystemSettingsCommand";
|
|
70
|
+
import {
|
|
71
|
+
ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
72
|
+
ListEngagementByAcceptingInvitationTasksCommandOutput,
|
|
73
|
+
} from "./commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
74
|
+
import {
|
|
75
|
+
ListEngagementFromOpportunityTasksCommandInput,
|
|
76
|
+
ListEngagementFromOpportunityTasksCommandOutput,
|
|
77
|
+
} from "./commands/ListEngagementFromOpportunityTasksCommand";
|
|
30
78
|
import {
|
|
31
79
|
ListEngagementInvitationsCommandInput,
|
|
32
80
|
ListEngagementInvitationsCommandOutput,
|
|
33
81
|
} from "./commands/ListEngagementInvitationsCommand";
|
|
82
|
+
import {
|
|
83
|
+
ListEngagementMembersCommandInput,
|
|
84
|
+
ListEngagementMembersCommandOutput,
|
|
85
|
+
} from "./commands/ListEngagementMembersCommand";
|
|
86
|
+
import {
|
|
87
|
+
ListEngagementResourceAssociationsCommandInput,
|
|
88
|
+
ListEngagementResourceAssociationsCommandOutput,
|
|
89
|
+
} from "./commands/ListEngagementResourceAssociationsCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListEngagementsCommandInput,
|
|
92
|
+
ListEngagementsCommandOutput,
|
|
93
|
+
} from "./commands/ListEngagementsCommand";
|
|
34
94
|
import {
|
|
35
95
|
ListOpportunitiesCommandInput,
|
|
36
96
|
ListOpportunitiesCommandOutput,
|
|
37
97
|
} from "./commands/ListOpportunitiesCommand";
|
|
98
|
+
import {
|
|
99
|
+
ListResourceSnapshotJobsCommandInput,
|
|
100
|
+
ListResourceSnapshotJobsCommandOutput,
|
|
101
|
+
} from "./commands/ListResourceSnapshotJobsCommand";
|
|
102
|
+
import {
|
|
103
|
+
ListResourceSnapshotsCommandInput,
|
|
104
|
+
ListResourceSnapshotsCommandOutput,
|
|
105
|
+
} from "./commands/ListResourceSnapshotsCommand";
|
|
38
106
|
import {
|
|
39
107
|
ListSolutionsCommandInput,
|
|
40
108
|
ListSolutionsCommandOutput,
|
|
41
109
|
} from "./commands/ListSolutionsCommand";
|
|
110
|
+
import {
|
|
111
|
+
PutSellingSystemSettingsCommandInput,
|
|
112
|
+
PutSellingSystemSettingsCommandOutput,
|
|
113
|
+
} from "./commands/PutSellingSystemSettingsCommand";
|
|
42
114
|
import {
|
|
43
115
|
RejectEngagementInvitationCommandInput,
|
|
44
116
|
RejectEngagementInvitationCommandOutput,
|
|
@@ -51,12 +123,37 @@ import {
|
|
|
51
123
|
StartEngagementFromOpportunityTaskCommandInput,
|
|
52
124
|
StartEngagementFromOpportunityTaskCommandOutput,
|
|
53
125
|
} from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
126
|
+
import {
|
|
127
|
+
StartResourceSnapshotJobCommandInput,
|
|
128
|
+
StartResourceSnapshotJobCommandOutput,
|
|
129
|
+
} from "./commands/StartResourceSnapshotJobCommand";
|
|
130
|
+
import {
|
|
131
|
+
StopResourceSnapshotJobCommandInput,
|
|
132
|
+
StopResourceSnapshotJobCommandOutput,
|
|
133
|
+
} from "./commands/StopResourceSnapshotJobCommand";
|
|
134
|
+
import {
|
|
135
|
+
SubmitOpportunityCommandInput,
|
|
136
|
+
SubmitOpportunityCommandOutput,
|
|
137
|
+
} from "./commands/SubmitOpportunityCommand";
|
|
54
138
|
import {
|
|
55
139
|
UpdateOpportunityCommandInput,
|
|
56
140
|
UpdateOpportunityCommandOutput,
|
|
57
141
|
} from "./commands/UpdateOpportunityCommand";
|
|
58
142
|
import { PartnerCentralSellingClient } from "./PartnerCentralSellingClient";
|
|
59
143
|
export interface PartnerCentralSelling {
|
|
144
|
+
acceptEngagementInvitation(
|
|
145
|
+
args: AcceptEngagementInvitationCommandInput,
|
|
146
|
+
options?: __HttpHandlerOptions
|
|
147
|
+
): Promise<AcceptEngagementInvitationCommandOutput>;
|
|
148
|
+
acceptEngagementInvitation(
|
|
149
|
+
args: AcceptEngagementInvitationCommandInput,
|
|
150
|
+
cb: (err: any, data?: AcceptEngagementInvitationCommandOutput) => void
|
|
151
|
+
): void;
|
|
152
|
+
acceptEngagementInvitation(
|
|
153
|
+
args: AcceptEngagementInvitationCommandInput,
|
|
154
|
+
options: __HttpHandlerOptions,
|
|
155
|
+
cb: (err: any, data?: AcceptEngagementInvitationCommandOutput) => void
|
|
156
|
+
): void;
|
|
60
157
|
assignOpportunity(
|
|
61
158
|
args: AssignOpportunityCommandInput,
|
|
62
159
|
options?: __HttpHandlerOptions
|
|
@@ -83,6 +180,32 @@ export interface PartnerCentralSelling {
|
|
|
83
180
|
options: __HttpHandlerOptions,
|
|
84
181
|
cb: (err: any, data?: AssociateOpportunityCommandOutput) => void
|
|
85
182
|
): void;
|
|
183
|
+
createEngagement(
|
|
184
|
+
args: CreateEngagementCommandInput,
|
|
185
|
+
options?: __HttpHandlerOptions
|
|
186
|
+
): Promise<CreateEngagementCommandOutput>;
|
|
187
|
+
createEngagement(
|
|
188
|
+
args: CreateEngagementCommandInput,
|
|
189
|
+
cb: (err: any, data?: CreateEngagementCommandOutput) => void
|
|
190
|
+
): void;
|
|
191
|
+
createEngagement(
|
|
192
|
+
args: CreateEngagementCommandInput,
|
|
193
|
+
options: __HttpHandlerOptions,
|
|
194
|
+
cb: (err: any, data?: CreateEngagementCommandOutput) => void
|
|
195
|
+
): void;
|
|
196
|
+
createEngagementInvitation(
|
|
197
|
+
args: CreateEngagementInvitationCommandInput,
|
|
198
|
+
options?: __HttpHandlerOptions
|
|
199
|
+
): Promise<CreateEngagementInvitationCommandOutput>;
|
|
200
|
+
createEngagementInvitation(
|
|
201
|
+
args: CreateEngagementInvitationCommandInput,
|
|
202
|
+
cb: (err: any, data?: CreateEngagementInvitationCommandOutput) => void
|
|
203
|
+
): void;
|
|
204
|
+
createEngagementInvitation(
|
|
205
|
+
args: CreateEngagementInvitationCommandInput,
|
|
206
|
+
options: __HttpHandlerOptions,
|
|
207
|
+
cb: (err: any, data?: CreateEngagementInvitationCommandOutput) => void
|
|
208
|
+
): void;
|
|
86
209
|
createOpportunity(
|
|
87
210
|
args: CreateOpportunityCommandInput,
|
|
88
211
|
options?: __HttpHandlerOptions
|
|
@@ -96,6 +219,45 @@ export interface PartnerCentralSelling {
|
|
|
96
219
|
options: __HttpHandlerOptions,
|
|
97
220
|
cb: (err: any, data?: CreateOpportunityCommandOutput) => void
|
|
98
221
|
): void;
|
|
222
|
+
createResourceSnapshot(
|
|
223
|
+
args: CreateResourceSnapshotCommandInput,
|
|
224
|
+
options?: __HttpHandlerOptions
|
|
225
|
+
): Promise<CreateResourceSnapshotCommandOutput>;
|
|
226
|
+
createResourceSnapshot(
|
|
227
|
+
args: CreateResourceSnapshotCommandInput,
|
|
228
|
+
cb: (err: any, data?: CreateResourceSnapshotCommandOutput) => void
|
|
229
|
+
): void;
|
|
230
|
+
createResourceSnapshot(
|
|
231
|
+
args: CreateResourceSnapshotCommandInput,
|
|
232
|
+
options: __HttpHandlerOptions,
|
|
233
|
+
cb: (err: any, data?: CreateResourceSnapshotCommandOutput) => void
|
|
234
|
+
): void;
|
|
235
|
+
createResourceSnapshotJob(
|
|
236
|
+
args: CreateResourceSnapshotJobCommandInput,
|
|
237
|
+
options?: __HttpHandlerOptions
|
|
238
|
+
): Promise<CreateResourceSnapshotJobCommandOutput>;
|
|
239
|
+
createResourceSnapshotJob(
|
|
240
|
+
args: CreateResourceSnapshotJobCommandInput,
|
|
241
|
+
cb: (err: any, data?: CreateResourceSnapshotJobCommandOutput) => void
|
|
242
|
+
): void;
|
|
243
|
+
createResourceSnapshotJob(
|
|
244
|
+
args: CreateResourceSnapshotJobCommandInput,
|
|
245
|
+
options: __HttpHandlerOptions,
|
|
246
|
+
cb: (err: any, data?: CreateResourceSnapshotJobCommandOutput) => void
|
|
247
|
+
): void;
|
|
248
|
+
deleteResourceSnapshotJob(
|
|
249
|
+
args: DeleteResourceSnapshotJobCommandInput,
|
|
250
|
+
options?: __HttpHandlerOptions
|
|
251
|
+
): Promise<DeleteResourceSnapshotJobCommandOutput>;
|
|
252
|
+
deleteResourceSnapshotJob(
|
|
253
|
+
args: DeleteResourceSnapshotJobCommandInput,
|
|
254
|
+
cb: (err: any, data?: DeleteResourceSnapshotJobCommandOutput) => void
|
|
255
|
+
): void;
|
|
256
|
+
deleteResourceSnapshotJob(
|
|
257
|
+
args: DeleteResourceSnapshotJobCommandInput,
|
|
258
|
+
options: __HttpHandlerOptions,
|
|
259
|
+
cb: (err: any, data?: DeleteResourceSnapshotJobCommandOutput) => void
|
|
260
|
+
): void;
|
|
99
261
|
disassociateOpportunity(
|
|
100
262
|
args: DisassociateOpportunityCommandInput,
|
|
101
263
|
options?: __HttpHandlerOptions
|
|
@@ -122,6 +284,19 @@ export interface PartnerCentralSelling {
|
|
|
122
284
|
options: __HttpHandlerOptions,
|
|
123
285
|
cb: (err: any, data?: GetAwsOpportunitySummaryCommandOutput) => void
|
|
124
286
|
): void;
|
|
287
|
+
getEngagement(
|
|
288
|
+
args: GetEngagementCommandInput,
|
|
289
|
+
options?: __HttpHandlerOptions
|
|
290
|
+
): Promise<GetEngagementCommandOutput>;
|
|
291
|
+
getEngagement(
|
|
292
|
+
args: GetEngagementCommandInput,
|
|
293
|
+
cb: (err: any, data?: GetEngagementCommandOutput) => void
|
|
294
|
+
): void;
|
|
295
|
+
getEngagement(
|
|
296
|
+
args: GetEngagementCommandInput,
|
|
297
|
+
options: __HttpHandlerOptions,
|
|
298
|
+
cb: (err: any, data?: GetEngagementCommandOutput) => void
|
|
299
|
+
): void;
|
|
125
300
|
getEngagementInvitation(
|
|
126
301
|
args: GetEngagementInvitationCommandInput,
|
|
127
302
|
options?: __HttpHandlerOptions
|
|
@@ -148,6 +323,83 @@ export interface PartnerCentralSelling {
|
|
|
148
323
|
options: __HttpHandlerOptions,
|
|
149
324
|
cb: (err: any, data?: GetOpportunityCommandOutput) => void
|
|
150
325
|
): void;
|
|
326
|
+
getResourceSnapshot(
|
|
327
|
+
args: GetResourceSnapshotCommandInput,
|
|
328
|
+
options?: __HttpHandlerOptions
|
|
329
|
+
): Promise<GetResourceSnapshotCommandOutput>;
|
|
330
|
+
getResourceSnapshot(
|
|
331
|
+
args: GetResourceSnapshotCommandInput,
|
|
332
|
+
cb: (err: any, data?: GetResourceSnapshotCommandOutput) => void
|
|
333
|
+
): void;
|
|
334
|
+
getResourceSnapshot(
|
|
335
|
+
args: GetResourceSnapshotCommandInput,
|
|
336
|
+
options: __HttpHandlerOptions,
|
|
337
|
+
cb: (err: any, data?: GetResourceSnapshotCommandOutput) => void
|
|
338
|
+
): void;
|
|
339
|
+
getResourceSnapshotJob(
|
|
340
|
+
args: GetResourceSnapshotJobCommandInput,
|
|
341
|
+
options?: __HttpHandlerOptions
|
|
342
|
+
): Promise<GetResourceSnapshotJobCommandOutput>;
|
|
343
|
+
getResourceSnapshotJob(
|
|
344
|
+
args: GetResourceSnapshotJobCommandInput,
|
|
345
|
+
cb: (err: any, data?: GetResourceSnapshotJobCommandOutput) => void
|
|
346
|
+
): void;
|
|
347
|
+
getResourceSnapshotJob(
|
|
348
|
+
args: GetResourceSnapshotJobCommandInput,
|
|
349
|
+
options: __HttpHandlerOptions,
|
|
350
|
+
cb: (err: any, data?: GetResourceSnapshotJobCommandOutput) => void
|
|
351
|
+
): void;
|
|
352
|
+
getSellingSystemSettings(
|
|
353
|
+
args: GetSellingSystemSettingsCommandInput,
|
|
354
|
+
options?: __HttpHandlerOptions
|
|
355
|
+
): Promise<GetSellingSystemSettingsCommandOutput>;
|
|
356
|
+
getSellingSystemSettings(
|
|
357
|
+
args: GetSellingSystemSettingsCommandInput,
|
|
358
|
+
cb: (err: any, data?: GetSellingSystemSettingsCommandOutput) => void
|
|
359
|
+
): void;
|
|
360
|
+
getSellingSystemSettings(
|
|
361
|
+
args: GetSellingSystemSettingsCommandInput,
|
|
362
|
+
options: __HttpHandlerOptions,
|
|
363
|
+
cb: (err: any, data?: GetSellingSystemSettingsCommandOutput) => void
|
|
364
|
+
): void;
|
|
365
|
+
listEngagementByAcceptingInvitationTasks(
|
|
366
|
+
args: ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
367
|
+
options?: __HttpHandlerOptions
|
|
368
|
+
): Promise<ListEngagementByAcceptingInvitationTasksCommandOutput>;
|
|
369
|
+
listEngagementByAcceptingInvitationTasks(
|
|
370
|
+
args: ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
371
|
+
cb: (
|
|
372
|
+
err: any,
|
|
373
|
+
data?: ListEngagementByAcceptingInvitationTasksCommandOutput
|
|
374
|
+
) => void
|
|
375
|
+
): void;
|
|
376
|
+
listEngagementByAcceptingInvitationTasks(
|
|
377
|
+
args: ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
378
|
+
options: __HttpHandlerOptions,
|
|
379
|
+
cb: (
|
|
380
|
+
err: any,
|
|
381
|
+
data?: ListEngagementByAcceptingInvitationTasksCommandOutput
|
|
382
|
+
) => void
|
|
383
|
+
): void;
|
|
384
|
+
listEngagementFromOpportunityTasks(
|
|
385
|
+
args: ListEngagementFromOpportunityTasksCommandInput,
|
|
386
|
+
options?: __HttpHandlerOptions
|
|
387
|
+
): Promise<ListEngagementFromOpportunityTasksCommandOutput>;
|
|
388
|
+
listEngagementFromOpportunityTasks(
|
|
389
|
+
args: ListEngagementFromOpportunityTasksCommandInput,
|
|
390
|
+
cb: (
|
|
391
|
+
err: any,
|
|
392
|
+
data?: ListEngagementFromOpportunityTasksCommandOutput
|
|
393
|
+
) => void
|
|
394
|
+
): void;
|
|
395
|
+
listEngagementFromOpportunityTasks(
|
|
396
|
+
args: ListEngagementFromOpportunityTasksCommandInput,
|
|
397
|
+
options: __HttpHandlerOptions,
|
|
398
|
+
cb: (
|
|
399
|
+
err: any,
|
|
400
|
+
data?: ListEngagementFromOpportunityTasksCommandOutput
|
|
401
|
+
) => void
|
|
402
|
+
): void;
|
|
151
403
|
listEngagementInvitations(
|
|
152
404
|
args: ListEngagementInvitationsCommandInput,
|
|
153
405
|
options?: __HttpHandlerOptions
|
|
@@ -161,6 +413,51 @@ export interface PartnerCentralSelling {
|
|
|
161
413
|
options: __HttpHandlerOptions,
|
|
162
414
|
cb: (err: any, data?: ListEngagementInvitationsCommandOutput) => void
|
|
163
415
|
): void;
|
|
416
|
+
listEngagementMembers(
|
|
417
|
+
args: ListEngagementMembersCommandInput,
|
|
418
|
+
options?: __HttpHandlerOptions
|
|
419
|
+
): Promise<ListEngagementMembersCommandOutput>;
|
|
420
|
+
listEngagementMembers(
|
|
421
|
+
args: ListEngagementMembersCommandInput,
|
|
422
|
+
cb: (err: any, data?: ListEngagementMembersCommandOutput) => void
|
|
423
|
+
): void;
|
|
424
|
+
listEngagementMembers(
|
|
425
|
+
args: ListEngagementMembersCommandInput,
|
|
426
|
+
options: __HttpHandlerOptions,
|
|
427
|
+
cb: (err: any, data?: ListEngagementMembersCommandOutput) => void
|
|
428
|
+
): void;
|
|
429
|
+
listEngagementResourceAssociations(
|
|
430
|
+
args: ListEngagementResourceAssociationsCommandInput,
|
|
431
|
+
options?: __HttpHandlerOptions
|
|
432
|
+
): Promise<ListEngagementResourceAssociationsCommandOutput>;
|
|
433
|
+
listEngagementResourceAssociations(
|
|
434
|
+
args: ListEngagementResourceAssociationsCommandInput,
|
|
435
|
+
cb: (
|
|
436
|
+
err: any,
|
|
437
|
+
data?: ListEngagementResourceAssociationsCommandOutput
|
|
438
|
+
) => void
|
|
439
|
+
): void;
|
|
440
|
+
listEngagementResourceAssociations(
|
|
441
|
+
args: ListEngagementResourceAssociationsCommandInput,
|
|
442
|
+
options: __HttpHandlerOptions,
|
|
443
|
+
cb: (
|
|
444
|
+
err: any,
|
|
445
|
+
data?: ListEngagementResourceAssociationsCommandOutput
|
|
446
|
+
) => void
|
|
447
|
+
): void;
|
|
448
|
+
listEngagements(
|
|
449
|
+
args: ListEngagementsCommandInput,
|
|
450
|
+
options?: __HttpHandlerOptions
|
|
451
|
+
): Promise<ListEngagementsCommandOutput>;
|
|
452
|
+
listEngagements(
|
|
453
|
+
args: ListEngagementsCommandInput,
|
|
454
|
+
cb: (err: any, data?: ListEngagementsCommandOutput) => void
|
|
455
|
+
): void;
|
|
456
|
+
listEngagements(
|
|
457
|
+
args: ListEngagementsCommandInput,
|
|
458
|
+
options: __HttpHandlerOptions,
|
|
459
|
+
cb: (err: any, data?: ListEngagementsCommandOutput) => void
|
|
460
|
+
): void;
|
|
164
461
|
listOpportunities(
|
|
165
462
|
args: ListOpportunitiesCommandInput,
|
|
166
463
|
options?: __HttpHandlerOptions
|
|
@@ -174,6 +471,32 @@ export interface PartnerCentralSelling {
|
|
|
174
471
|
options: __HttpHandlerOptions,
|
|
175
472
|
cb: (err: any, data?: ListOpportunitiesCommandOutput) => void
|
|
176
473
|
): void;
|
|
474
|
+
listResourceSnapshotJobs(
|
|
475
|
+
args: ListResourceSnapshotJobsCommandInput,
|
|
476
|
+
options?: __HttpHandlerOptions
|
|
477
|
+
): Promise<ListResourceSnapshotJobsCommandOutput>;
|
|
478
|
+
listResourceSnapshotJobs(
|
|
479
|
+
args: ListResourceSnapshotJobsCommandInput,
|
|
480
|
+
cb: (err: any, data?: ListResourceSnapshotJobsCommandOutput) => void
|
|
481
|
+
): void;
|
|
482
|
+
listResourceSnapshotJobs(
|
|
483
|
+
args: ListResourceSnapshotJobsCommandInput,
|
|
484
|
+
options: __HttpHandlerOptions,
|
|
485
|
+
cb: (err: any, data?: ListResourceSnapshotJobsCommandOutput) => void
|
|
486
|
+
): void;
|
|
487
|
+
listResourceSnapshots(
|
|
488
|
+
args: ListResourceSnapshotsCommandInput,
|
|
489
|
+
options?: __HttpHandlerOptions
|
|
490
|
+
): Promise<ListResourceSnapshotsCommandOutput>;
|
|
491
|
+
listResourceSnapshots(
|
|
492
|
+
args: ListResourceSnapshotsCommandInput,
|
|
493
|
+
cb: (err: any, data?: ListResourceSnapshotsCommandOutput) => void
|
|
494
|
+
): void;
|
|
495
|
+
listResourceSnapshots(
|
|
496
|
+
args: ListResourceSnapshotsCommandInput,
|
|
497
|
+
options: __HttpHandlerOptions,
|
|
498
|
+
cb: (err: any, data?: ListResourceSnapshotsCommandOutput) => void
|
|
499
|
+
): void;
|
|
177
500
|
listSolutions(
|
|
178
501
|
args: ListSolutionsCommandInput,
|
|
179
502
|
options?: __HttpHandlerOptions
|
|
@@ -187,6 +510,19 @@ export interface PartnerCentralSelling {
|
|
|
187
510
|
options: __HttpHandlerOptions,
|
|
188
511
|
cb: (err: any, data?: ListSolutionsCommandOutput) => void
|
|
189
512
|
): void;
|
|
513
|
+
putSellingSystemSettings(
|
|
514
|
+
args: PutSellingSystemSettingsCommandInput,
|
|
515
|
+
options?: __HttpHandlerOptions
|
|
516
|
+
): Promise<PutSellingSystemSettingsCommandOutput>;
|
|
517
|
+
putSellingSystemSettings(
|
|
518
|
+
args: PutSellingSystemSettingsCommandInput,
|
|
519
|
+
cb: (err: any, data?: PutSellingSystemSettingsCommandOutput) => void
|
|
520
|
+
): void;
|
|
521
|
+
putSellingSystemSettings(
|
|
522
|
+
args: PutSellingSystemSettingsCommandInput,
|
|
523
|
+
options: __HttpHandlerOptions,
|
|
524
|
+
cb: (err: any, data?: PutSellingSystemSettingsCommandOutput) => void
|
|
525
|
+
): void;
|
|
190
526
|
rejectEngagementInvitation(
|
|
191
527
|
args: RejectEngagementInvitationCommandInput,
|
|
192
528
|
options?: __HttpHandlerOptions
|
|
@@ -238,6 +574,45 @@ export interface PartnerCentralSelling {
|
|
|
238
574
|
data?: StartEngagementFromOpportunityTaskCommandOutput
|
|
239
575
|
) => void
|
|
240
576
|
): void;
|
|
577
|
+
startResourceSnapshotJob(
|
|
578
|
+
args: StartResourceSnapshotJobCommandInput,
|
|
579
|
+
options?: __HttpHandlerOptions
|
|
580
|
+
): Promise<StartResourceSnapshotJobCommandOutput>;
|
|
581
|
+
startResourceSnapshotJob(
|
|
582
|
+
args: StartResourceSnapshotJobCommandInput,
|
|
583
|
+
cb: (err: any, data?: StartResourceSnapshotJobCommandOutput) => void
|
|
584
|
+
): void;
|
|
585
|
+
startResourceSnapshotJob(
|
|
586
|
+
args: StartResourceSnapshotJobCommandInput,
|
|
587
|
+
options: __HttpHandlerOptions,
|
|
588
|
+
cb: (err: any, data?: StartResourceSnapshotJobCommandOutput) => void
|
|
589
|
+
): void;
|
|
590
|
+
stopResourceSnapshotJob(
|
|
591
|
+
args: StopResourceSnapshotJobCommandInput,
|
|
592
|
+
options?: __HttpHandlerOptions
|
|
593
|
+
): Promise<StopResourceSnapshotJobCommandOutput>;
|
|
594
|
+
stopResourceSnapshotJob(
|
|
595
|
+
args: StopResourceSnapshotJobCommandInput,
|
|
596
|
+
cb: (err: any, data?: StopResourceSnapshotJobCommandOutput) => void
|
|
597
|
+
): void;
|
|
598
|
+
stopResourceSnapshotJob(
|
|
599
|
+
args: StopResourceSnapshotJobCommandInput,
|
|
600
|
+
options: __HttpHandlerOptions,
|
|
601
|
+
cb: (err: any, data?: StopResourceSnapshotJobCommandOutput) => void
|
|
602
|
+
): void;
|
|
603
|
+
submitOpportunity(
|
|
604
|
+
args: SubmitOpportunityCommandInput,
|
|
605
|
+
options?: __HttpHandlerOptions
|
|
606
|
+
): Promise<SubmitOpportunityCommandOutput>;
|
|
607
|
+
submitOpportunity(
|
|
608
|
+
args: SubmitOpportunityCommandInput,
|
|
609
|
+
cb: (err: any, data?: SubmitOpportunityCommandOutput) => void
|
|
610
|
+
): void;
|
|
611
|
+
submitOpportunity(
|
|
612
|
+
args: SubmitOpportunityCommandInput,
|
|
613
|
+
options: __HttpHandlerOptions,
|
|
614
|
+
cb: (err: any, data?: SubmitOpportunityCommandOutput) => void
|
|
615
|
+
): void;
|
|
241
616
|
updateOpportunity(
|
|
242
617
|
args: UpdateOpportunityCommandInput,
|
|
243
618
|
options?: __HttpHandlerOptions
|
|
@@ -45,6 +45,10 @@ import {
|
|
|
45
45
|
HttpAuthSchemeInputConfig,
|
|
46
46
|
HttpAuthSchemeResolvedConfig,
|
|
47
47
|
} from "./auth/httpAuthSchemeProvider";
|
|
48
|
+
import {
|
|
49
|
+
AcceptEngagementInvitationCommandInput,
|
|
50
|
+
AcceptEngagementInvitationCommandOutput,
|
|
51
|
+
} from "./commands/AcceptEngagementInvitationCommand";
|
|
48
52
|
import {
|
|
49
53
|
AssignOpportunityCommandInput,
|
|
50
54
|
AssignOpportunityCommandOutput,
|
|
@@ -53,10 +57,30 @@ import {
|
|
|
53
57
|
AssociateOpportunityCommandInput,
|
|
54
58
|
AssociateOpportunityCommandOutput,
|
|
55
59
|
} from "./commands/AssociateOpportunityCommand";
|
|
60
|
+
import {
|
|
61
|
+
CreateEngagementCommandInput,
|
|
62
|
+
CreateEngagementCommandOutput,
|
|
63
|
+
} from "./commands/CreateEngagementCommand";
|
|
64
|
+
import {
|
|
65
|
+
CreateEngagementInvitationCommandInput,
|
|
66
|
+
CreateEngagementInvitationCommandOutput,
|
|
67
|
+
} from "./commands/CreateEngagementInvitationCommand";
|
|
56
68
|
import {
|
|
57
69
|
CreateOpportunityCommandInput,
|
|
58
70
|
CreateOpportunityCommandOutput,
|
|
59
71
|
} from "./commands/CreateOpportunityCommand";
|
|
72
|
+
import {
|
|
73
|
+
CreateResourceSnapshotCommandInput,
|
|
74
|
+
CreateResourceSnapshotCommandOutput,
|
|
75
|
+
} from "./commands/CreateResourceSnapshotCommand";
|
|
76
|
+
import {
|
|
77
|
+
CreateResourceSnapshotJobCommandInput,
|
|
78
|
+
CreateResourceSnapshotJobCommandOutput,
|
|
79
|
+
} from "./commands/CreateResourceSnapshotJobCommand";
|
|
80
|
+
import {
|
|
81
|
+
DeleteResourceSnapshotJobCommandInput,
|
|
82
|
+
DeleteResourceSnapshotJobCommandOutput,
|
|
83
|
+
} from "./commands/DeleteResourceSnapshotJobCommand";
|
|
60
84
|
import {
|
|
61
85
|
DisassociateOpportunityCommandInput,
|
|
62
86
|
DisassociateOpportunityCommandOutput,
|
|
@@ -65,6 +89,10 @@ import {
|
|
|
65
89
|
GetAwsOpportunitySummaryCommandInput,
|
|
66
90
|
GetAwsOpportunitySummaryCommandOutput,
|
|
67
91
|
} from "./commands/GetAwsOpportunitySummaryCommand";
|
|
92
|
+
import {
|
|
93
|
+
GetEngagementCommandInput,
|
|
94
|
+
GetEngagementCommandOutput,
|
|
95
|
+
} from "./commands/GetEngagementCommand";
|
|
68
96
|
import {
|
|
69
97
|
GetEngagementInvitationCommandInput,
|
|
70
98
|
GetEngagementInvitationCommandOutput,
|
|
@@ -73,18 +101,62 @@ import {
|
|
|
73
101
|
GetOpportunityCommandInput,
|
|
74
102
|
GetOpportunityCommandOutput,
|
|
75
103
|
} from "./commands/GetOpportunityCommand";
|
|
104
|
+
import {
|
|
105
|
+
GetResourceSnapshotCommandInput,
|
|
106
|
+
GetResourceSnapshotCommandOutput,
|
|
107
|
+
} from "./commands/GetResourceSnapshotCommand";
|
|
108
|
+
import {
|
|
109
|
+
GetResourceSnapshotJobCommandInput,
|
|
110
|
+
GetResourceSnapshotJobCommandOutput,
|
|
111
|
+
} from "./commands/GetResourceSnapshotJobCommand";
|
|
112
|
+
import {
|
|
113
|
+
GetSellingSystemSettingsCommandInput,
|
|
114
|
+
GetSellingSystemSettingsCommandOutput,
|
|
115
|
+
} from "./commands/GetSellingSystemSettingsCommand";
|
|
116
|
+
import {
|
|
117
|
+
ListEngagementByAcceptingInvitationTasksCommandInput,
|
|
118
|
+
ListEngagementByAcceptingInvitationTasksCommandOutput,
|
|
119
|
+
} from "./commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
120
|
+
import {
|
|
121
|
+
ListEngagementFromOpportunityTasksCommandInput,
|
|
122
|
+
ListEngagementFromOpportunityTasksCommandOutput,
|
|
123
|
+
} from "./commands/ListEngagementFromOpportunityTasksCommand";
|
|
76
124
|
import {
|
|
77
125
|
ListEngagementInvitationsCommandInput,
|
|
78
126
|
ListEngagementInvitationsCommandOutput,
|
|
79
127
|
} from "./commands/ListEngagementInvitationsCommand";
|
|
128
|
+
import {
|
|
129
|
+
ListEngagementMembersCommandInput,
|
|
130
|
+
ListEngagementMembersCommandOutput,
|
|
131
|
+
} from "./commands/ListEngagementMembersCommand";
|
|
132
|
+
import {
|
|
133
|
+
ListEngagementResourceAssociationsCommandInput,
|
|
134
|
+
ListEngagementResourceAssociationsCommandOutput,
|
|
135
|
+
} from "./commands/ListEngagementResourceAssociationsCommand";
|
|
136
|
+
import {
|
|
137
|
+
ListEngagementsCommandInput,
|
|
138
|
+
ListEngagementsCommandOutput,
|
|
139
|
+
} from "./commands/ListEngagementsCommand";
|
|
80
140
|
import {
|
|
81
141
|
ListOpportunitiesCommandInput,
|
|
82
142
|
ListOpportunitiesCommandOutput,
|
|
83
143
|
} from "./commands/ListOpportunitiesCommand";
|
|
144
|
+
import {
|
|
145
|
+
ListResourceSnapshotJobsCommandInput,
|
|
146
|
+
ListResourceSnapshotJobsCommandOutput,
|
|
147
|
+
} from "./commands/ListResourceSnapshotJobsCommand";
|
|
148
|
+
import {
|
|
149
|
+
ListResourceSnapshotsCommandInput,
|
|
150
|
+
ListResourceSnapshotsCommandOutput,
|
|
151
|
+
} from "./commands/ListResourceSnapshotsCommand";
|
|
84
152
|
import {
|
|
85
153
|
ListSolutionsCommandInput,
|
|
86
154
|
ListSolutionsCommandOutput,
|
|
87
155
|
} from "./commands/ListSolutionsCommand";
|
|
156
|
+
import {
|
|
157
|
+
PutSellingSystemSettingsCommandInput,
|
|
158
|
+
PutSellingSystemSettingsCommandOutput,
|
|
159
|
+
} from "./commands/PutSellingSystemSettingsCommand";
|
|
88
160
|
import {
|
|
89
161
|
RejectEngagementInvitationCommandInput,
|
|
90
162
|
RejectEngagementInvitationCommandOutput,
|
|
@@ -97,6 +169,18 @@ import {
|
|
|
97
169
|
StartEngagementFromOpportunityTaskCommandInput,
|
|
98
170
|
StartEngagementFromOpportunityTaskCommandOutput,
|
|
99
171
|
} from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
172
|
+
import {
|
|
173
|
+
StartResourceSnapshotJobCommandInput,
|
|
174
|
+
StartResourceSnapshotJobCommandOutput,
|
|
175
|
+
} from "./commands/StartResourceSnapshotJobCommand";
|
|
176
|
+
import {
|
|
177
|
+
StopResourceSnapshotJobCommandInput,
|
|
178
|
+
StopResourceSnapshotJobCommandOutput,
|
|
179
|
+
} from "./commands/StopResourceSnapshotJobCommand";
|
|
180
|
+
import {
|
|
181
|
+
SubmitOpportunityCommandInput,
|
|
182
|
+
SubmitOpportunityCommandOutput,
|
|
183
|
+
} from "./commands/SubmitOpportunityCommand";
|
|
100
184
|
import {
|
|
101
185
|
UpdateOpportunityCommandInput,
|
|
102
186
|
UpdateOpportunityCommandOutput,
|
|
@@ -109,34 +193,76 @@ import {
|
|
|
109
193
|
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
110
194
|
export { __Client };
|
|
111
195
|
export type ServiceInputTypes =
|
|
196
|
+
| AcceptEngagementInvitationCommandInput
|
|
112
197
|
| AssignOpportunityCommandInput
|
|
113
198
|
| AssociateOpportunityCommandInput
|
|
199
|
+
| CreateEngagementCommandInput
|
|
200
|
+
| CreateEngagementInvitationCommandInput
|
|
114
201
|
| CreateOpportunityCommandInput
|
|
202
|
+
| CreateResourceSnapshotCommandInput
|
|
203
|
+
| CreateResourceSnapshotJobCommandInput
|
|
204
|
+
| DeleteResourceSnapshotJobCommandInput
|
|
115
205
|
| DisassociateOpportunityCommandInput
|
|
116
206
|
| GetAwsOpportunitySummaryCommandInput
|
|
207
|
+
| GetEngagementCommandInput
|
|
117
208
|
| GetEngagementInvitationCommandInput
|
|
118
209
|
| GetOpportunityCommandInput
|
|
210
|
+
| GetResourceSnapshotCommandInput
|
|
211
|
+
| GetResourceSnapshotJobCommandInput
|
|
212
|
+
| GetSellingSystemSettingsCommandInput
|
|
213
|
+
| ListEngagementByAcceptingInvitationTasksCommandInput
|
|
214
|
+
| ListEngagementFromOpportunityTasksCommandInput
|
|
119
215
|
| ListEngagementInvitationsCommandInput
|
|
216
|
+
| ListEngagementMembersCommandInput
|
|
217
|
+
| ListEngagementResourceAssociationsCommandInput
|
|
218
|
+
| ListEngagementsCommandInput
|
|
120
219
|
| ListOpportunitiesCommandInput
|
|
220
|
+
| ListResourceSnapshotJobsCommandInput
|
|
221
|
+
| ListResourceSnapshotsCommandInput
|
|
121
222
|
| ListSolutionsCommandInput
|
|
223
|
+
| PutSellingSystemSettingsCommandInput
|
|
122
224
|
| RejectEngagementInvitationCommandInput
|
|
123
225
|
| StartEngagementByAcceptingInvitationTaskCommandInput
|
|
124
226
|
| StartEngagementFromOpportunityTaskCommandInput
|
|
227
|
+
| StartResourceSnapshotJobCommandInput
|
|
228
|
+
| StopResourceSnapshotJobCommandInput
|
|
229
|
+
| SubmitOpportunityCommandInput
|
|
125
230
|
| UpdateOpportunityCommandInput;
|
|
126
231
|
export type ServiceOutputTypes =
|
|
232
|
+
| AcceptEngagementInvitationCommandOutput
|
|
127
233
|
| AssignOpportunityCommandOutput
|
|
128
234
|
| AssociateOpportunityCommandOutput
|
|
235
|
+
| CreateEngagementCommandOutput
|
|
236
|
+
| CreateEngagementInvitationCommandOutput
|
|
129
237
|
| CreateOpportunityCommandOutput
|
|
238
|
+
| CreateResourceSnapshotCommandOutput
|
|
239
|
+
| CreateResourceSnapshotJobCommandOutput
|
|
240
|
+
| DeleteResourceSnapshotJobCommandOutput
|
|
130
241
|
| DisassociateOpportunityCommandOutput
|
|
131
242
|
| GetAwsOpportunitySummaryCommandOutput
|
|
243
|
+
| GetEngagementCommandOutput
|
|
132
244
|
| GetEngagementInvitationCommandOutput
|
|
133
245
|
| GetOpportunityCommandOutput
|
|
246
|
+
| GetResourceSnapshotCommandOutput
|
|
247
|
+
| GetResourceSnapshotJobCommandOutput
|
|
248
|
+
| GetSellingSystemSettingsCommandOutput
|
|
249
|
+
| ListEngagementByAcceptingInvitationTasksCommandOutput
|
|
250
|
+
| ListEngagementFromOpportunityTasksCommandOutput
|
|
134
251
|
| ListEngagementInvitationsCommandOutput
|
|
252
|
+
| ListEngagementMembersCommandOutput
|
|
253
|
+
| ListEngagementResourceAssociationsCommandOutput
|
|
254
|
+
| ListEngagementsCommandOutput
|
|
135
255
|
| ListOpportunitiesCommandOutput
|
|
256
|
+
| ListResourceSnapshotJobsCommandOutput
|
|
257
|
+
| ListResourceSnapshotsCommandOutput
|
|
136
258
|
| ListSolutionsCommandOutput
|
|
259
|
+
| PutSellingSystemSettingsCommandOutput
|
|
137
260
|
| RejectEngagementInvitationCommandOutput
|
|
138
261
|
| StartEngagementByAcceptingInvitationTaskCommandOutput
|
|
139
262
|
| StartEngagementFromOpportunityTaskCommandOutput
|
|
263
|
+
| StartResourceSnapshotJobCommandOutput
|
|
264
|
+
| StopResourceSnapshotJobCommandOutput
|
|
265
|
+
| SubmitOpportunityCommandOutput
|
|
140
266
|
| UpdateOpportunityCommandOutput;
|
|
141
267
|
export interface ClientDefaults
|
|
142
268
|
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|