@aws-sdk/client-partnercentral-selling 3.1068.0 → 3.1070.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 +21 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +9 -15
- package/dist-cjs/endpoint/bdd.js +2 -5
- package/dist-cjs/endpoint/endpointResolver.js +7 -11
- package/dist-cjs/index.js +237 -197
- package/dist-cjs/models/PartnerCentralSellingServiceException.js +4 -8
- package/dist-cjs/models/errors.js +15 -25
- package/dist-cjs/runtimeConfig.browser.js +22 -26
- package/dist-cjs/runtimeConfig.js +30 -34
- package/dist-cjs/runtimeConfig.native.js +4 -7
- package/dist-cjs/runtimeConfig.shared.js +20 -24
- package/dist-cjs/schemas/schemas_0.js +660 -331
- package/dist-es/PartnerCentralSelling.js +8 -0
- package/dist-es/commands/GetProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/ListProspectingFromEngagementTasksCommand.js +16 -0
- package/dist-es/commands/StartProspectingFromEngagementTaskCommand.js +16 -0
- package/dist-es/commands/index.js +3 -0
- package/dist-es/models/enums.js +12 -0
- package/dist-es/pagination/ListProspectingFromEngagementTasksPaginator.js +4 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/schemas/schemas_0.js +200 -43
- package/dist-types/PartnerCentralSelling.d.ts +28 -0
- package/dist-types/PartnerCentralSellingClient.d.ts +5 -2
- package/dist-types/commands/CreateEngagementCommand.d.ts +34 -1
- package/dist-types/commands/CreateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +14 -0
- package/dist-types/commands/GetEngagementCommand.d.ts +34 -1
- package/dist-types/commands/GetProspectingFromEngagementTaskCommand.d.ts +105 -0
- package/dist-types/commands/GetResourceSnapshotCommand.d.ts +14 -0
- package/dist-types/commands/ListEngagementsCommand.d.ts +3 -3
- package/dist-types/commands/ListProspectingFromEngagementTasksCommand.d.ts +114 -0
- package/dist-types/commands/StartProspectingFromEngagementTaskCommand.d.ts +108 -0
- package/dist-types/commands/UpdateEngagementContextCommand.d.ts +34 -1
- package/dist-types/commands/index.d.ts +3 -0
- package/dist-types/models/enums.d.ts +28 -0
- package/dist-types/models/models_0.d.ts +529 -5
- package/dist-types/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/schemas/schemas_0.d.ts +19 -0
- package/dist-types/ts3.4/PartnerCentralSelling.d.ts +70 -0
- package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +18 -0
- package/dist-types/ts3.4/commands/GetProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/ListProspectingFromEngagementTasksCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/StartProspectingFromEngagementTaskCommand.d.ts +53 -0
- package/dist-types/ts3.4/commands/index.d.ts +3 -0
- package/dist-types/ts3.4/models/enums.d.ts +16 -0
- package/dist-types/ts3.4/models/models_0.d.ts +136 -0
- package/dist-types/ts3.4/pagination/ListProspectingFromEngagementTasksPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +19 -0
- package/package.json +8 -8
|
@@ -14,6 +14,7 @@ import { type GetAwsOpportunitySummaryCommandInput, type GetAwsOpportunitySummar
|
|
|
14
14
|
import { type GetEngagementCommandInput, type GetEngagementCommandOutput } from "./commands/GetEngagementCommand";
|
|
15
15
|
import { type GetEngagementInvitationCommandInput, type GetEngagementInvitationCommandOutput } from "./commands/GetEngagementInvitationCommand";
|
|
16
16
|
import { type GetOpportunityCommandInput, type GetOpportunityCommandOutput } from "./commands/GetOpportunityCommand";
|
|
17
|
+
import { type GetProspectingFromEngagementTaskCommandInput, type GetProspectingFromEngagementTaskCommandOutput } from "./commands/GetProspectingFromEngagementTaskCommand";
|
|
17
18
|
import { type GetResourceSnapshotCommandInput, type GetResourceSnapshotCommandOutput } from "./commands/GetResourceSnapshotCommand";
|
|
18
19
|
import { type GetResourceSnapshotJobCommandInput, type GetResourceSnapshotJobCommandOutput } from "./commands/GetResourceSnapshotJobCommand";
|
|
19
20
|
import { type GetSellingSystemSettingsCommandInput, type GetSellingSystemSettingsCommandOutput } from "./commands/GetSellingSystemSettingsCommand";
|
|
@@ -25,6 +26,7 @@ import { type ListEngagementResourceAssociationsCommandInput, type ListEngagemen
|
|
|
25
26
|
import { type ListEngagementsCommandInput, type ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
26
27
|
import { type ListOpportunitiesCommandInput, type ListOpportunitiesCommandOutput } from "./commands/ListOpportunitiesCommand";
|
|
27
28
|
import { type ListOpportunityFromEngagementTasksCommandInput, type ListOpportunityFromEngagementTasksCommandOutput } from "./commands/ListOpportunityFromEngagementTasksCommand";
|
|
29
|
+
import { type ListProspectingFromEngagementTasksCommandInput, type ListProspectingFromEngagementTasksCommandOutput } from "./commands/ListProspectingFromEngagementTasksCommand";
|
|
28
30
|
import { type ListResourceSnapshotJobsCommandInput, type ListResourceSnapshotJobsCommandOutput } from "./commands/ListResourceSnapshotJobsCommand";
|
|
29
31
|
import { type ListResourceSnapshotsCommandInput, type ListResourceSnapshotsCommandOutput } from "./commands/ListResourceSnapshotsCommand";
|
|
30
32
|
import { type ListSolutionsCommandInput, type ListSolutionsCommandOutput } from "./commands/ListSolutionsCommand";
|
|
@@ -34,6 +36,7 @@ import { type RejectEngagementInvitationCommandInput, type RejectEngagementInvit
|
|
|
34
36
|
import { type StartEngagementByAcceptingInvitationTaskCommandInput, type StartEngagementByAcceptingInvitationTaskCommandOutput } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
35
37
|
import { type StartEngagementFromOpportunityTaskCommandInput, type StartEngagementFromOpportunityTaskCommandOutput } from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
36
38
|
import { type StartOpportunityFromEngagementTaskCommandInput, type StartOpportunityFromEngagementTaskCommandOutput } from "./commands/StartOpportunityFromEngagementTaskCommand";
|
|
39
|
+
import { type StartProspectingFromEngagementTaskCommandInput, type StartProspectingFromEngagementTaskCommandOutput } from "./commands/StartProspectingFromEngagementTaskCommand";
|
|
37
40
|
import { type StartResourceSnapshotJobCommandInput, type StartResourceSnapshotJobCommandOutput } from "./commands/StartResourceSnapshotJobCommand";
|
|
38
41
|
import { type StopResourceSnapshotJobCommandInput, type StopResourceSnapshotJobCommandOutput } from "./commands/StopResourceSnapshotJobCommand";
|
|
39
42
|
import { type SubmitOpportunityCommandInput, type SubmitOpportunityCommandOutput } from "./commands/SubmitOpportunityCommand";
|
|
@@ -133,6 +136,12 @@ export interface PartnerCentralSelling {
|
|
|
133
136
|
getOpportunity(args: GetOpportunityCommandInput, options?: __HttpHandlerOptions): Promise<GetOpportunityCommandOutput>;
|
|
134
137
|
getOpportunity(args: GetOpportunityCommandInput, cb: (err: any, data?: GetOpportunityCommandOutput) => void): void;
|
|
135
138
|
getOpportunity(args: GetOpportunityCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetOpportunityCommandOutput) => void): void;
|
|
139
|
+
/**
|
|
140
|
+
* @see {@link GetProspectingFromEngagementTaskCommand}
|
|
141
|
+
*/
|
|
142
|
+
getProspectingFromEngagementTask(args: GetProspectingFromEngagementTaskCommandInput, options?: __HttpHandlerOptions): Promise<GetProspectingFromEngagementTaskCommandOutput>;
|
|
143
|
+
getProspectingFromEngagementTask(args: GetProspectingFromEngagementTaskCommandInput, cb: (err: any, data?: GetProspectingFromEngagementTaskCommandOutput) => void): void;
|
|
144
|
+
getProspectingFromEngagementTask(args: GetProspectingFromEngagementTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetProspectingFromEngagementTaskCommandOutput) => void): void;
|
|
136
145
|
/**
|
|
137
146
|
* @see {@link GetResourceSnapshotCommand}
|
|
138
147
|
*/
|
|
@@ -199,6 +208,12 @@ export interface PartnerCentralSelling {
|
|
|
199
208
|
listOpportunityFromEngagementTasks(args: ListOpportunityFromEngagementTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListOpportunityFromEngagementTasksCommandOutput>;
|
|
200
209
|
listOpportunityFromEngagementTasks(args: ListOpportunityFromEngagementTasksCommandInput, cb: (err: any, data?: ListOpportunityFromEngagementTasksCommandOutput) => void): void;
|
|
201
210
|
listOpportunityFromEngagementTasks(args: ListOpportunityFromEngagementTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOpportunityFromEngagementTasksCommandOutput) => void): void;
|
|
211
|
+
/**
|
|
212
|
+
* @see {@link ListProspectingFromEngagementTasksCommand}
|
|
213
|
+
*/
|
|
214
|
+
listProspectingFromEngagementTasks(args: ListProspectingFromEngagementTasksCommandInput, options?: __HttpHandlerOptions): Promise<ListProspectingFromEngagementTasksCommandOutput>;
|
|
215
|
+
listProspectingFromEngagementTasks(args: ListProspectingFromEngagementTasksCommandInput, cb: (err: any, data?: ListProspectingFromEngagementTasksCommandOutput) => void): void;
|
|
216
|
+
listProspectingFromEngagementTasks(args: ListProspectingFromEngagementTasksCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListProspectingFromEngagementTasksCommandOutput) => void): void;
|
|
202
217
|
/**
|
|
203
218
|
* @see {@link ListResourceSnapshotJobsCommand}
|
|
204
219
|
*/
|
|
@@ -253,6 +268,12 @@ export interface PartnerCentralSelling {
|
|
|
253
268
|
startOpportunityFromEngagementTask(args: StartOpportunityFromEngagementTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartOpportunityFromEngagementTaskCommandOutput>;
|
|
254
269
|
startOpportunityFromEngagementTask(args: StartOpportunityFromEngagementTaskCommandInput, cb: (err: any, data?: StartOpportunityFromEngagementTaskCommandOutput) => void): void;
|
|
255
270
|
startOpportunityFromEngagementTask(args: StartOpportunityFromEngagementTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartOpportunityFromEngagementTaskCommandOutput) => void): void;
|
|
271
|
+
/**
|
|
272
|
+
* @see {@link StartProspectingFromEngagementTaskCommand}
|
|
273
|
+
*/
|
|
274
|
+
startProspectingFromEngagementTask(args: StartProspectingFromEngagementTaskCommandInput, options?: __HttpHandlerOptions): Promise<StartProspectingFromEngagementTaskCommandOutput>;
|
|
275
|
+
startProspectingFromEngagementTask(args: StartProspectingFromEngagementTaskCommandInput, cb: (err: any, data?: StartProspectingFromEngagementTaskCommandOutput) => void): void;
|
|
276
|
+
startProspectingFromEngagementTask(args: StartProspectingFromEngagementTaskCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartProspectingFromEngagementTaskCommandOutput) => void): void;
|
|
256
277
|
/**
|
|
257
278
|
* @see {@link StartResourceSnapshotJobCommand}
|
|
258
279
|
*/
|
|
@@ -351,6 +372,13 @@ export interface PartnerCentralSelling {
|
|
|
351
372
|
* @returns AsyncIterable of {@link ListOpportunityFromEngagementTasksCommandOutput}.
|
|
352
373
|
*/
|
|
353
374
|
paginateListOpportunityFromEngagementTasks(args: ListOpportunityFromEngagementTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListOpportunityFromEngagementTasksCommandOutput>;
|
|
375
|
+
/**
|
|
376
|
+
* @see {@link ListProspectingFromEngagementTasksCommand}
|
|
377
|
+
* @param args - command input.
|
|
378
|
+
* @param paginationConfig - optional pagination config.
|
|
379
|
+
* @returns AsyncIterable of {@link ListProspectingFromEngagementTasksCommandOutput}.
|
|
380
|
+
*/
|
|
381
|
+
paginateListProspectingFromEngagementTasks(args: ListProspectingFromEngagementTasksCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProspectingFromEngagementTasksCommandOutput>;
|
|
354
382
|
/**
|
|
355
383
|
* @see {@link ListResourceSnapshotJobsCommand}
|
|
356
384
|
* @param args - command input.
|
|
@@ -21,6 +21,7 @@ import type { GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryComm
|
|
|
21
21
|
import type { GetEngagementCommandInput, GetEngagementCommandOutput } from "./commands/GetEngagementCommand";
|
|
22
22
|
import type { GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput } from "./commands/GetEngagementInvitationCommand";
|
|
23
23
|
import type { GetOpportunityCommandInput, GetOpportunityCommandOutput } from "./commands/GetOpportunityCommand";
|
|
24
|
+
import type { GetProspectingFromEngagementTaskCommandInput, GetProspectingFromEngagementTaskCommandOutput } from "./commands/GetProspectingFromEngagementTaskCommand";
|
|
24
25
|
import type { GetResourceSnapshotCommandInput, GetResourceSnapshotCommandOutput } from "./commands/GetResourceSnapshotCommand";
|
|
25
26
|
import type { GetResourceSnapshotJobCommandInput, GetResourceSnapshotJobCommandOutput } from "./commands/GetResourceSnapshotJobCommand";
|
|
26
27
|
import type { GetSellingSystemSettingsCommandInput, GetSellingSystemSettingsCommandOutput } from "./commands/GetSellingSystemSettingsCommand";
|
|
@@ -32,6 +33,7 @@ import type { ListEngagementResourceAssociationsCommandInput, ListEngagementReso
|
|
|
32
33
|
import type { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "./commands/ListEngagementsCommand";
|
|
33
34
|
import type { ListOpportunitiesCommandInput, ListOpportunitiesCommandOutput } from "./commands/ListOpportunitiesCommand";
|
|
34
35
|
import type { ListOpportunityFromEngagementTasksCommandInput, ListOpportunityFromEngagementTasksCommandOutput } from "./commands/ListOpportunityFromEngagementTasksCommand";
|
|
36
|
+
import type { ListProspectingFromEngagementTasksCommandInput, ListProspectingFromEngagementTasksCommandOutput } from "./commands/ListProspectingFromEngagementTasksCommand";
|
|
35
37
|
import type { ListResourceSnapshotJobsCommandInput, ListResourceSnapshotJobsCommandOutput } from "./commands/ListResourceSnapshotJobsCommand";
|
|
36
38
|
import type { ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput } from "./commands/ListResourceSnapshotsCommand";
|
|
37
39
|
import type { ListSolutionsCommandInput, ListSolutionsCommandOutput } from "./commands/ListSolutionsCommand";
|
|
@@ -41,6 +43,7 @@ import type { RejectEngagementInvitationCommandInput, RejectEngagementInvitation
|
|
|
41
43
|
import type { StartEngagementByAcceptingInvitationTaskCommandInput, StartEngagementByAcceptingInvitationTaskCommandOutput } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
42
44
|
import type { StartEngagementFromOpportunityTaskCommandInput, StartEngagementFromOpportunityTaskCommandOutput } from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
43
45
|
import type { StartOpportunityFromEngagementTaskCommandInput, StartOpportunityFromEngagementTaskCommandOutput } from "./commands/StartOpportunityFromEngagementTaskCommand";
|
|
46
|
+
import type { StartProspectingFromEngagementTaskCommandInput, StartProspectingFromEngagementTaskCommandOutput } from "./commands/StartProspectingFromEngagementTaskCommand";
|
|
44
47
|
import type { StartResourceSnapshotJobCommandInput, StartResourceSnapshotJobCommandOutput } from "./commands/StartResourceSnapshotJobCommand";
|
|
45
48
|
import type { StopResourceSnapshotJobCommandInput, StopResourceSnapshotJobCommandOutput } from "./commands/StopResourceSnapshotJobCommand";
|
|
46
49
|
import type { SubmitOpportunityCommandInput, SubmitOpportunityCommandOutput } from "./commands/SubmitOpportunityCommand";
|
|
@@ -54,11 +57,11 @@ export { __Client };
|
|
|
54
57
|
/**
|
|
55
58
|
* @public
|
|
56
59
|
*/
|
|
57
|
-
export type ServiceInputTypes = AcceptEngagementInvitationCommandInput | AssignOpportunityCommandInput | AssociateOpportunityCommandInput | CreateEngagementCommandInput | CreateEngagementContextCommandInput | CreateEngagementInvitationCommandInput | CreateOpportunityCommandInput | CreateResourceSnapshotCommandInput | CreateResourceSnapshotJobCommandInput | DeleteResourceSnapshotJobCommandInput | DisassociateOpportunityCommandInput | GetAwsOpportunitySummaryCommandInput | GetEngagementCommandInput | GetEngagementInvitationCommandInput | GetOpportunityCommandInput | GetResourceSnapshotCommandInput | GetResourceSnapshotJobCommandInput | GetSellingSystemSettingsCommandInput | ListEngagementByAcceptingInvitationTasksCommandInput | ListEngagementFromOpportunityTasksCommandInput | ListEngagementInvitationsCommandInput | ListEngagementMembersCommandInput | ListEngagementResourceAssociationsCommandInput | ListEngagementsCommandInput | ListOpportunitiesCommandInput | ListOpportunityFromEngagementTasksCommandInput | ListResourceSnapshotJobsCommandInput | ListResourceSnapshotsCommandInput | ListSolutionsCommandInput | ListTagsForResourceCommandInput | PutSellingSystemSettingsCommandInput | RejectEngagementInvitationCommandInput | StartEngagementByAcceptingInvitationTaskCommandInput | StartEngagementFromOpportunityTaskCommandInput | StartOpportunityFromEngagementTaskCommandInput | StartResourceSnapshotJobCommandInput | StopResourceSnapshotJobCommandInput | SubmitOpportunityCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEngagementContextCommandInput | UpdateOpportunityCommandInput;
|
|
60
|
+
export type ServiceInputTypes = AcceptEngagementInvitationCommandInput | AssignOpportunityCommandInput | AssociateOpportunityCommandInput | CreateEngagementCommandInput | CreateEngagementContextCommandInput | CreateEngagementInvitationCommandInput | CreateOpportunityCommandInput | CreateResourceSnapshotCommandInput | CreateResourceSnapshotJobCommandInput | DeleteResourceSnapshotJobCommandInput | DisassociateOpportunityCommandInput | GetAwsOpportunitySummaryCommandInput | GetEngagementCommandInput | GetEngagementInvitationCommandInput | GetOpportunityCommandInput | GetProspectingFromEngagementTaskCommandInput | GetResourceSnapshotCommandInput | GetResourceSnapshotJobCommandInput | GetSellingSystemSettingsCommandInput | ListEngagementByAcceptingInvitationTasksCommandInput | ListEngagementFromOpportunityTasksCommandInput | ListEngagementInvitationsCommandInput | ListEngagementMembersCommandInput | ListEngagementResourceAssociationsCommandInput | ListEngagementsCommandInput | ListOpportunitiesCommandInput | ListOpportunityFromEngagementTasksCommandInput | ListProspectingFromEngagementTasksCommandInput | ListResourceSnapshotJobsCommandInput | ListResourceSnapshotsCommandInput | ListSolutionsCommandInput | ListTagsForResourceCommandInput | PutSellingSystemSettingsCommandInput | RejectEngagementInvitationCommandInput | StartEngagementByAcceptingInvitationTaskCommandInput | StartEngagementFromOpportunityTaskCommandInput | StartOpportunityFromEngagementTaskCommandInput | StartProspectingFromEngagementTaskCommandInput | StartResourceSnapshotJobCommandInput | StopResourceSnapshotJobCommandInput | SubmitOpportunityCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateEngagementContextCommandInput | UpdateOpportunityCommandInput;
|
|
58
61
|
/**
|
|
59
62
|
* @public
|
|
60
63
|
*/
|
|
61
|
-
export type ServiceOutputTypes = AcceptEngagementInvitationCommandOutput | AssignOpportunityCommandOutput | AssociateOpportunityCommandOutput | CreateEngagementCommandOutput | CreateEngagementContextCommandOutput | CreateEngagementInvitationCommandOutput | CreateOpportunityCommandOutput | CreateResourceSnapshotCommandOutput | CreateResourceSnapshotJobCommandOutput | DeleteResourceSnapshotJobCommandOutput | DisassociateOpportunityCommandOutput | GetAwsOpportunitySummaryCommandOutput | GetEngagementCommandOutput | GetEngagementInvitationCommandOutput | GetOpportunityCommandOutput | GetResourceSnapshotCommandOutput | GetResourceSnapshotJobCommandOutput | GetSellingSystemSettingsCommandOutput | ListEngagementByAcceptingInvitationTasksCommandOutput | ListEngagementFromOpportunityTasksCommandOutput | ListEngagementInvitationsCommandOutput | ListEngagementMembersCommandOutput | ListEngagementResourceAssociationsCommandOutput | ListEngagementsCommandOutput | ListOpportunitiesCommandOutput | ListOpportunityFromEngagementTasksCommandOutput | ListResourceSnapshotJobsCommandOutput | ListResourceSnapshotsCommandOutput | ListSolutionsCommandOutput | ListTagsForResourceCommandOutput | PutSellingSystemSettingsCommandOutput | RejectEngagementInvitationCommandOutput | StartEngagementByAcceptingInvitationTaskCommandOutput | StartEngagementFromOpportunityTaskCommandOutput | StartOpportunityFromEngagementTaskCommandOutput | StartResourceSnapshotJobCommandOutput | StopResourceSnapshotJobCommandOutput | SubmitOpportunityCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEngagementContextCommandOutput | UpdateOpportunityCommandOutput;
|
|
64
|
+
export type ServiceOutputTypes = AcceptEngagementInvitationCommandOutput | AssignOpportunityCommandOutput | AssociateOpportunityCommandOutput | CreateEngagementCommandOutput | CreateEngagementContextCommandOutput | CreateEngagementInvitationCommandOutput | CreateOpportunityCommandOutput | CreateResourceSnapshotCommandOutput | CreateResourceSnapshotJobCommandOutput | DeleteResourceSnapshotJobCommandOutput | DisassociateOpportunityCommandOutput | GetAwsOpportunitySummaryCommandOutput | GetEngagementCommandOutput | GetEngagementInvitationCommandOutput | GetOpportunityCommandOutput | GetProspectingFromEngagementTaskCommandOutput | GetResourceSnapshotCommandOutput | GetResourceSnapshotJobCommandOutput | GetSellingSystemSettingsCommandOutput | ListEngagementByAcceptingInvitationTasksCommandOutput | ListEngagementFromOpportunityTasksCommandOutput | ListEngagementInvitationsCommandOutput | ListEngagementMembersCommandOutput | ListEngagementResourceAssociationsCommandOutput | ListEngagementsCommandOutput | ListOpportunitiesCommandOutput | ListOpportunityFromEngagementTasksCommandOutput | ListProspectingFromEngagementTasksCommandOutput | ListResourceSnapshotJobsCommandOutput | ListResourceSnapshotsCommandOutput | ListSolutionsCommandOutput | ListTagsForResourceCommandOutput | PutSellingSystemSettingsCommandOutput | RejectEngagementInvitationCommandOutput | StartEngagementByAcceptingInvitationTaskCommandOutput | StartEngagementFromOpportunityTaskCommandOutput | StartOpportunityFromEngagementTaskCommandOutput | StartProspectingFromEngagementTaskCommandOutput | StartResourceSnapshotJobCommandOutput | StopResourceSnapshotJobCommandOutput | SubmitOpportunityCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateEngagementContextCommandOutput | UpdateOpportunityCommandOutput;
|
|
62
65
|
/**
|
|
63
66
|
* @public
|
|
64
67
|
*/
|
|
@@ -46,7 +46,7 @@ declare const CreateEngagementCommand_base: {
|
|
|
46
46
|
* Contexts: [ // EngagementContexts
|
|
47
47
|
* { // EngagementContextDetails
|
|
48
48
|
* Id: "STRING_VALUE",
|
|
49
|
-
* Type: "CustomerProject" || "Lead", // required
|
|
49
|
+
* Type: "CustomerProject" || "Lead" || "ProspectingResult", // required
|
|
50
50
|
* Payload: { // EngagementContextPayload Union: only one key present
|
|
51
51
|
* CustomerProject: { // CustomerProjectsContext
|
|
52
52
|
* Customer: { // EngagementCustomer
|
|
@@ -62,6 +62,9 @@ declare const CreateEngagementCommand_base: {
|
|
|
62
62
|
* },
|
|
63
63
|
* },
|
|
64
64
|
* Lead: { // LeadContext
|
|
65
|
+
* Insights: { // LeadInsights
|
|
66
|
+
* LeadReadinessScore: "STRING_VALUE",
|
|
67
|
+
* },
|
|
65
68
|
* QualificationStatus: "STRING_VALUE",
|
|
66
69
|
* Customer: { // LeadCustomer
|
|
67
70
|
* Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
@@ -95,6 +98,36 @@ declare const CreateEngagementCommand_base: {
|
|
|
95
98
|
* },
|
|
96
99
|
* ],
|
|
97
100
|
* },
|
|
101
|
+
* ProspectingResult: { // ProspectingResult
|
|
102
|
+
* Aws: { // ProspectingResultAws
|
|
103
|
+
* StartTime: new Date("TIMESTAMP"),
|
|
104
|
+
* EndTime: new Date("TIMESTAMP"),
|
|
105
|
+
* TaskId: "STRING_VALUE",
|
|
106
|
+
* TaskArn: "STRING_VALUE",
|
|
107
|
+
* TaskName: "STRING_VALUE",
|
|
108
|
+
* Customer: { // ProspectingResultCustomer
|
|
109
|
+
* AccountName: "STRING_VALUE",
|
|
110
|
+
* Geo: "STRING_VALUE",
|
|
111
|
+
* Region: "STRING_VALUE",
|
|
112
|
+
* SubRegion: "STRING_VALUE",
|
|
113
|
+
* Country: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW",
|
|
114
|
+
* Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
115
|
+
* SubIndustry: "STRING_VALUE",
|
|
116
|
+
* Segment: "STRING_VALUE",
|
|
117
|
+
* CompanySize: "STRING_VALUE",
|
|
118
|
+
* EligiblePrograms: [ // EligibleProgramsList
|
|
119
|
+
* "STRING_VALUE",
|
|
120
|
+
* ],
|
|
121
|
+
* PublicProfileSummary: "STRING_VALUE",
|
|
122
|
+
* },
|
|
123
|
+
* Insights: { // ProspectingInsights
|
|
124
|
+
* MarketplaceEngagementScore: "STRING_VALUE",
|
|
125
|
+
* SolutionScore: "STRING_VALUE",
|
|
126
|
+
* SolutionCategory: "STRING_VALUE",
|
|
127
|
+
* SolutionSubCategory: "STRING_VALUE",
|
|
128
|
+
* },
|
|
129
|
+
* },
|
|
130
|
+
* },
|
|
98
131
|
* },
|
|
99
132
|
* },
|
|
100
133
|
* ],
|
|
@@ -42,7 +42,7 @@ declare const CreateEngagementContextCommand_base: {
|
|
|
42
42
|
* Catalog: "STRING_VALUE", // required
|
|
43
43
|
* EngagementIdentifier: "STRING_VALUE", // required
|
|
44
44
|
* ClientToken: "STRING_VALUE", // required
|
|
45
|
-
* Type: "CustomerProject" || "Lead", // required
|
|
45
|
+
* Type: "CustomerProject" || "Lead" || "ProspectingResult", // required
|
|
46
46
|
* Payload: { // EngagementContextPayload Union: only one key present
|
|
47
47
|
* CustomerProject: { // CustomerProjectsContext
|
|
48
48
|
* Customer: { // EngagementCustomer
|
|
@@ -58,6 +58,9 @@ declare const CreateEngagementContextCommand_base: {
|
|
|
58
58
|
* },
|
|
59
59
|
* },
|
|
60
60
|
* Lead: { // LeadContext
|
|
61
|
+
* Insights: { // LeadInsights
|
|
62
|
+
* LeadReadinessScore: "STRING_VALUE",
|
|
63
|
+
* },
|
|
61
64
|
* QualificationStatus: "STRING_VALUE",
|
|
62
65
|
* Customer: { // LeadCustomer
|
|
63
66
|
* Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
@@ -91,6 +94,36 @@ declare const CreateEngagementContextCommand_base: {
|
|
|
91
94
|
* },
|
|
92
95
|
* ],
|
|
93
96
|
* },
|
|
97
|
+
* ProspectingResult: { // ProspectingResult
|
|
98
|
+
* Aws: { // ProspectingResultAws
|
|
99
|
+
* StartTime: new Date("TIMESTAMP"),
|
|
100
|
+
* EndTime: new Date("TIMESTAMP"),
|
|
101
|
+
* TaskId: "STRING_VALUE",
|
|
102
|
+
* TaskArn: "STRING_VALUE",
|
|
103
|
+
* TaskName: "STRING_VALUE",
|
|
104
|
+
* Customer: { // ProspectingResultCustomer
|
|
105
|
+
* AccountName: "STRING_VALUE",
|
|
106
|
+
* Geo: "STRING_VALUE",
|
|
107
|
+
* Region: "STRING_VALUE",
|
|
108
|
+
* SubRegion: "STRING_VALUE",
|
|
109
|
+
* Country: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW",
|
|
110
|
+
* Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
111
|
+
* SubIndustry: "STRING_VALUE",
|
|
112
|
+
* Segment: "STRING_VALUE",
|
|
113
|
+
* CompanySize: "STRING_VALUE",
|
|
114
|
+
* EligiblePrograms: [ // EligibleProgramsList
|
|
115
|
+
* "STRING_VALUE",
|
|
116
|
+
* ],
|
|
117
|
+
* PublicProfileSummary: "STRING_VALUE",
|
|
118
|
+
* },
|
|
119
|
+
* Insights: { // ProspectingInsights
|
|
120
|
+
* MarketplaceEngagementScore: "STRING_VALUE",
|
|
121
|
+
* SolutionScore: "STRING_VALUE",
|
|
122
|
+
* SolutionCategory: "STRING_VALUE",
|
|
123
|
+
* SolutionSubCategory: "STRING_VALUE",
|
|
124
|
+
* },
|
|
125
|
+
* },
|
|
126
|
+
* },
|
|
94
127
|
* },
|
|
95
128
|
* };
|
|
96
129
|
* const command = new CreateEngagementContextCommand(input);
|
|
@@ -130,6 +130,19 @@ declare const GetAwsOpportunitySummaryCommand_base: {
|
|
|
130
130
|
* // ],
|
|
131
131
|
* // },
|
|
132
132
|
* // },
|
|
133
|
+
* // OpportunityQuality: { // OpportunityQuality
|
|
134
|
+
* // Score: Number("int"),
|
|
135
|
+
* // Trend: "STRING_VALUE",
|
|
136
|
+
* // },
|
|
137
|
+
* // Recommendations: [ // RecommendationList
|
|
138
|
+
* // { // Recommendation
|
|
139
|
+
* // Type: "STRING_VALUE", // required
|
|
140
|
+
* // Details: "STRING_VALUE", // required
|
|
141
|
+
* // Attributes: { // RecommendationAttributeMap
|
|
142
|
+
* // "<keys>": "STRING_VALUE",
|
|
143
|
+
* // },
|
|
144
|
+
* // },
|
|
145
|
+
* // ],
|
|
133
146
|
* // },
|
|
134
147
|
* // InvolvementTypeChangeReason: "Expansion Opportunity" || "Change in Deal Information" || "Customer Requested" || "Technical Complexity" || "Risk Mitigation",
|
|
135
148
|
* // RelatedEntityIds: { // AwsOpportunityRelatedEntities
|
|
@@ -163,6 +176,7 @@ declare const GetAwsOpportunitySummaryCommand_base: {
|
|
|
163
176
|
* // ],
|
|
164
177
|
* // AwsPartition: "aws-eusc",
|
|
165
178
|
* // },
|
|
179
|
+
* // CosellMotion: "STRING_VALUE",
|
|
166
180
|
* // Catalog: "STRING_VALUE", // required
|
|
167
181
|
* // };
|
|
168
182
|
*
|
|
@@ -57,7 +57,7 @@ declare const GetEngagementCommand_base: {
|
|
|
57
57
|
* // Contexts: [ // EngagementContexts
|
|
58
58
|
* // { // EngagementContextDetails
|
|
59
59
|
* // Id: "STRING_VALUE",
|
|
60
|
-
* // Type: "CustomerProject" || "Lead", // required
|
|
60
|
+
* // Type: "CustomerProject" || "Lead" || "ProspectingResult", // required
|
|
61
61
|
* // Payload: { // EngagementContextPayload Union: only one key present
|
|
62
62
|
* // CustomerProject: { // CustomerProjectsContext
|
|
63
63
|
* // Customer: { // EngagementCustomer
|
|
@@ -73,6 +73,9 @@ declare const GetEngagementCommand_base: {
|
|
|
73
73
|
* // },
|
|
74
74
|
* // },
|
|
75
75
|
* // Lead: { // LeadContext
|
|
76
|
+
* // Insights: { // LeadInsights
|
|
77
|
+
* // LeadReadinessScore: "STRING_VALUE",
|
|
78
|
+
* // },
|
|
76
79
|
* // QualificationStatus: "STRING_VALUE",
|
|
77
80
|
* // Customer: { // LeadCustomer
|
|
78
81
|
* // Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
@@ -106,6 +109,36 @@ declare const GetEngagementCommand_base: {
|
|
|
106
109
|
* // },
|
|
107
110
|
* // ],
|
|
108
111
|
* // },
|
|
112
|
+
* // ProspectingResult: { // ProspectingResult
|
|
113
|
+
* // Aws: { // ProspectingResultAws
|
|
114
|
+
* // StartTime: new Date("TIMESTAMP"),
|
|
115
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
116
|
+
* // TaskId: "STRING_VALUE",
|
|
117
|
+
* // TaskArn: "STRING_VALUE",
|
|
118
|
+
* // TaskName: "STRING_VALUE",
|
|
119
|
+
* // Customer: { // ProspectingResultCustomer
|
|
120
|
+
* // AccountName: "STRING_VALUE",
|
|
121
|
+
* // Geo: "STRING_VALUE",
|
|
122
|
+
* // Region: "STRING_VALUE",
|
|
123
|
+
* // SubRegion: "STRING_VALUE",
|
|
124
|
+
* // Country: "US" || "AF" || "AX" || "AL" || "DZ" || "AS" || "AD" || "AO" || "AI" || "AQ" || "AG" || "AR" || "AM" || "AW" || "AU" || "AT" || "AZ" || "BS" || "BH" || "BD" || "BB" || "BY" || "BE" || "BZ" || "BJ" || "BM" || "BT" || "BO" || "BQ" || "BA" || "BW" || "BV" || "BR" || "IO" || "BN" || "BG" || "BF" || "BI" || "KH" || "CM" || "CA" || "CV" || "KY" || "CF" || "TD" || "CL" || "CN" || "CX" || "CC" || "CO" || "KM" || "CG" || "CK" || "CR" || "CI" || "HR" || "CU" || "CW" || "CY" || "CZ" || "CD" || "DK" || "DJ" || "DM" || "DO" || "EC" || "EG" || "SV" || "GQ" || "ER" || "EE" || "ET" || "FK" || "FO" || "FJ" || "FI" || "FR" || "GF" || "PF" || "TF" || "GA" || "GM" || "GE" || "DE" || "GH" || "GI" || "GR" || "GL" || "GD" || "GP" || "GU" || "GT" || "GG" || "GN" || "GW" || "GY" || "HT" || "HM" || "VA" || "HN" || "HK" || "HU" || "IS" || "IN" || "ID" || "IR" || "IQ" || "IE" || "IM" || "IL" || "IT" || "JM" || "JP" || "JE" || "JO" || "KZ" || "KE" || "KI" || "KR" || "KW" || "KG" || "LA" || "LV" || "LB" || "LS" || "LR" || "LY" || "LI" || "LT" || "LU" || "MO" || "MK" || "MG" || "MW" || "MY" || "MV" || "ML" || "MT" || "MH" || "MQ" || "MR" || "MU" || "YT" || "MX" || "FM" || "MD" || "MC" || "MN" || "ME" || "MS" || "MA" || "MZ" || "MM" || "NA" || "NR" || "NP" || "NL" || "AN" || "NC" || "NZ" || "NI" || "NE" || "NG" || "NU" || "NF" || "MP" || "NO" || "OM" || "PK" || "PW" || "PS" || "PA" || "PG" || "PY" || "PE" || "PH" || "PN" || "PL" || "PT" || "PR" || "QA" || "RE" || "RO" || "RU" || "RW" || "BL" || "SH" || "KN" || "LC" || "MF" || "PM" || "VC" || "WS" || "SM" || "ST" || "SA" || "SN" || "RS" || "SC" || "SL" || "SG" || "SX" || "SK" || "SI" || "SB" || "SO" || "ZA" || "GS" || "SS" || "ES" || "LK" || "SD" || "SR" || "SJ" || "SZ" || "SE" || "CH" || "SY" || "TW" || "TJ" || "TZ" || "TH" || "TL" || "TG" || "TK" || "TO" || "TT" || "TN" || "TR" || "TM" || "TC" || "TV" || "UG" || "UA" || "AE" || "GB" || "UM" || "UY" || "UZ" || "VU" || "VE" || "VN" || "VG" || "VI" || "WF" || "EH" || "YE" || "ZM" || "ZW",
|
|
125
|
+
* // Industry: "Aerospace" || "Agriculture" || "Automotive" || "Computers and Electronics" || "Consumer Goods" || "Education" || "Energy - Oil and Gas" || "Energy - Power and Utilities" || "Financial Services" || "Gaming" || "Government" || "Healthcare" || "Hospitality" || "Life Sciences" || "Manufacturing" || "Marketing and Advertising" || "Media and Entertainment" || "Mining" || "Non-Profit Organization" || "Professional Services" || "Real Estate and Construction" || "Retail" || "Software and Internet" || "Telecommunications" || "Transportation and Logistics" || "Travel" || "Wholesale and Distribution" || "Other",
|
|
126
|
+
* // SubIndustry: "STRING_VALUE",
|
|
127
|
+
* // Segment: "STRING_VALUE",
|
|
128
|
+
* // CompanySize: "STRING_VALUE",
|
|
129
|
+
* // EligiblePrograms: [ // EligibleProgramsList
|
|
130
|
+
* // "STRING_VALUE",
|
|
131
|
+
* // ],
|
|
132
|
+
* // PublicProfileSummary: "STRING_VALUE",
|
|
133
|
+
* // },
|
|
134
|
+
* // Insights: { // ProspectingInsights
|
|
135
|
+
* // MarketplaceEngagementScore: "STRING_VALUE",
|
|
136
|
+
* // SolutionScore: "STRING_VALUE",
|
|
137
|
+
* // SolutionCategory: "STRING_VALUE",
|
|
138
|
+
* // SolutionSubCategory: "STRING_VALUE",
|
|
139
|
+
* // },
|
|
140
|
+
* // },
|
|
141
|
+
* // },
|
|
109
142
|
* // },
|
|
110
143
|
* // },
|
|
111
144
|
* // ],
|
|
@@ -0,0 +1,105 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/core/client";
|
|
2
|
+
import type { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import type { GetProspectingFromEngagementTaskRequest, GetProspectingFromEngagementTaskResponse } from "../models/models_0";
|
|
4
|
+
import type { 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 GetProspectingFromEngagementTaskCommand}.
|
|
14
|
+
*/
|
|
15
|
+
export interface GetProspectingFromEngagementTaskCommandInput extends GetProspectingFromEngagementTaskRequest {
|
|
16
|
+
}
|
|
17
|
+
/**
|
|
18
|
+
* @public
|
|
19
|
+
*
|
|
20
|
+
* The output of {@link GetProspectingFromEngagementTaskCommand}.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetProspectingFromEngagementTaskCommandOutput extends GetProspectingFromEngagementTaskResponse, __MetadataBearer {
|
|
23
|
+
}
|
|
24
|
+
declare const GetProspectingFromEngagementTaskCommand_base: {
|
|
25
|
+
new (input: GetProspectingFromEngagementTaskCommandInput): import("@smithy/core/client").CommandImpl<GetProspectingFromEngagementTaskCommandInput, GetProspectingFromEngagementTaskCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
26
|
+
new (input: GetProspectingFromEngagementTaskCommandInput): import("@smithy/core/client").CommandImpl<GetProspectingFromEngagementTaskCommandInput, GetProspectingFromEngagementTaskCommandOutput, PartnerCentralSellingClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes>;
|
|
27
|
+
getEndpointParameterInstructions(): {
|
|
28
|
+
[x: string]: unknown;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
/**
|
|
32
|
+
* <p>Retrieves the details and current status of a prospecting task previously started with <code>StartProspectingFromEngagementTask</code> to enable polling for completion and access to per-engagement processing results.</p>
|
|
33
|
+
* @example
|
|
34
|
+
* Use a bare-bones client and the command you need to make an API call.
|
|
35
|
+
* ```javascript
|
|
36
|
+
* import { PartnerCentralSellingClient, GetProspectingFromEngagementTaskCommand } from "@aws-sdk/client-partnercentral-selling"; // ES Modules import
|
|
37
|
+
* // const { PartnerCentralSellingClient, GetProspectingFromEngagementTaskCommand } = require("@aws-sdk/client-partnercentral-selling"); // CommonJS import
|
|
38
|
+
* // import type { PartnerCentralSellingClientConfig } from "@aws-sdk/client-partnercentral-selling";
|
|
39
|
+
* const config = {}; // type is PartnerCentralSellingClientConfig
|
|
40
|
+
* const client = new PartnerCentralSellingClient(config);
|
|
41
|
+
* const input = { // GetProspectingFromEngagementTaskRequest
|
|
42
|
+
* Catalog: "STRING_VALUE", // required
|
|
43
|
+
* TaskIdentifier: "STRING_VALUE", // required
|
|
44
|
+
* };
|
|
45
|
+
* const command = new GetProspectingFromEngagementTaskCommand(input);
|
|
46
|
+
* const response = await client.send(command);
|
|
47
|
+
* // { // GetProspectingFromEngagementTaskResponse
|
|
48
|
+
* // TaskId: "STRING_VALUE", // required
|
|
49
|
+
* // TaskArn: "STRING_VALUE", // required
|
|
50
|
+
* // TaskName: "STRING_VALUE", // required
|
|
51
|
+
* // StartTime: new Date("TIMESTAMP"), // required
|
|
52
|
+
* // EndTime: new Date("TIMESTAMP"),
|
|
53
|
+
* // Engagements: [ // EngagementProspectingResultList // required
|
|
54
|
+
* // { // EngagementProspectingResult
|
|
55
|
+
* // EngagementIdentifier: "STRING_VALUE", // required
|
|
56
|
+
* // EngagementContextId: "STRING_VALUE",
|
|
57
|
+
* // Status: "PENDING" || "IN_PROGRESS" || "COMPLETED" || "FAILED", // required
|
|
58
|
+
* // ReasonCode: "STRING_VALUE",
|
|
59
|
+
* // Message: "STRING_VALUE",
|
|
60
|
+
* // },
|
|
61
|
+
* // ],
|
|
62
|
+
* // };
|
|
63
|
+
*
|
|
64
|
+
* ```
|
|
65
|
+
*
|
|
66
|
+
* @param GetProspectingFromEngagementTaskCommandInput - {@link GetProspectingFromEngagementTaskCommandInput}
|
|
67
|
+
* @returns {@link GetProspectingFromEngagementTaskCommandOutput}
|
|
68
|
+
* @see {@link GetProspectingFromEngagementTaskCommandInput} for command's `input` shape.
|
|
69
|
+
* @see {@link GetProspectingFromEngagementTaskCommandOutput} for command's `response` shape.
|
|
70
|
+
* @see {@link PartnerCentralSellingClientResolvedConfig | config} for PartnerCentralSellingClient's `config` shape.
|
|
71
|
+
*
|
|
72
|
+
* @throws {@link AccessDeniedException} (client fault)
|
|
73
|
+
* <p>This error occurs when you don't have permission to perform the requested action.</p> <p>You don’t have access to this action or resource. Review IAM policies or contact your AWS administrator for assistance.</p>
|
|
74
|
+
*
|
|
75
|
+
* @throws {@link InternalServerException} (server fault)
|
|
76
|
+
* <p>This error occurs when the specified resource can’t be found or doesn't exist. Resource ID and type might be incorrect.</p> <p>Suggested action: This is usually a transient error. Retry after the provided retry delay or a short interval. If the problem persists, contact AWS support.</p>
|
|
77
|
+
*
|
|
78
|
+
* @throws {@link ResourceNotFoundException} (client fault)
|
|
79
|
+
* <p>This error occurs when the specified resource can't be found. The resource might not exist, or isn't visible with the current credentials.</p> <p>Suggested action: Verify that the resource ID is correct and the resource is in the expected AWS region. Check IAM permissions for accessing the resource.</p>
|
|
80
|
+
*
|
|
81
|
+
* @throws {@link ThrottlingException} (client fault)
|
|
82
|
+
* <p>This error occurs when there are too many requests sent. Review the provided quotas and adapt your usage to avoid throttling.</p> <p>This error occurs when there are too many requests sent. Review the provided <a href="https://docs.aws.amazon.com/partner-central/latest/selling-api/quotas.html">Quotas</a> and retry after the provided delay.</p>
|
|
83
|
+
*
|
|
84
|
+
* @throws {@link ValidationException} (client fault)
|
|
85
|
+
* <p>The input fails to satisfy the constraints specified by the service or business validation rules.</p> <p>Suggested action: Review the error message, including the failed fields and reasons, to correct the request payload.</p>
|
|
86
|
+
*
|
|
87
|
+
* @throws {@link PartnerCentralSellingServiceException}
|
|
88
|
+
* <p>Base exception class for all service exceptions from PartnerCentralSelling service.</p>
|
|
89
|
+
*
|
|
90
|
+
*
|
|
91
|
+
* @public
|
|
92
|
+
*/
|
|
93
|
+
export declare class GetProspectingFromEngagementTaskCommand extends GetProspectingFromEngagementTaskCommand_base {
|
|
94
|
+
/** @internal type navigation helper, not in runtime. */
|
|
95
|
+
protected static __types: {
|
|
96
|
+
api: {
|
|
97
|
+
input: GetProspectingFromEngagementTaskRequest;
|
|
98
|
+
output: GetProspectingFromEngagementTaskResponse;
|
|
99
|
+
};
|
|
100
|
+
sdk: {
|
|
101
|
+
input: GetProspectingFromEngagementTaskCommandInput;
|
|
102
|
+
output: GetProspectingFromEngagementTaskCommandOutput;
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
}
|
|
@@ -229,6 +229,19 @@ declare const GetResourceSnapshotCommand_base: {
|
|
|
229
229
|
* // ],
|
|
230
230
|
* // },
|
|
231
231
|
* // },
|
|
232
|
+
* // OpportunityQuality: { // OpportunityQuality
|
|
233
|
+
* // Score: Number("int"),
|
|
234
|
+
* // Trend: "STRING_VALUE",
|
|
235
|
+
* // },
|
|
236
|
+
* // Recommendations: [ // RecommendationList
|
|
237
|
+
* // { // Recommendation
|
|
238
|
+
* // Type: "STRING_VALUE", // required
|
|
239
|
+
* // Details: "STRING_VALUE", // required
|
|
240
|
+
* // Attributes: { // RecommendationAttributeMap
|
|
241
|
+
* // "<keys>": "STRING_VALUE",
|
|
242
|
+
* // },
|
|
243
|
+
* // },
|
|
244
|
+
* // ],
|
|
232
245
|
* // },
|
|
233
246
|
* // InvolvementTypeChangeReason: "Expansion Opportunity" || "Change in Deal Information" || "Customer Requested" || "Technical Complexity" || "Risk Mitigation",
|
|
234
247
|
* // RelatedEntityIds: { // AwsOpportunityRelatedEntities
|
|
@@ -262,6 +275,7 @@ declare const GetResourceSnapshotCommand_base: {
|
|
|
262
275
|
* // ],
|
|
263
276
|
* // AwsPartition: "aws-eusc",
|
|
264
277
|
* // },
|
|
278
|
+
* // CosellMotion: "STRING_VALUE",
|
|
265
279
|
* // },
|
|
266
280
|
* // },
|
|
267
281
|
* // TargetMemberAccounts: [ // AwsAccountIdOrAliasList
|
|
@@ -47,10 +47,10 @@ declare const ListEngagementsCommand_base: {
|
|
|
47
47
|
* "STRING_VALUE",
|
|
48
48
|
* ],
|
|
49
49
|
* ContextTypes: [ // EngagementContextTypeList
|
|
50
|
-
* "CustomerProject" || "Lead",
|
|
50
|
+
* "CustomerProject" || "Lead" || "ProspectingResult",
|
|
51
51
|
* ],
|
|
52
52
|
* ExcludeContextTypes: [
|
|
53
|
-
* "CustomerProject" || "Lead",
|
|
53
|
+
* "CustomerProject" || "Lead" || "ProspectingResult",
|
|
54
54
|
* ],
|
|
55
55
|
* Sort: { // EngagementSort
|
|
56
56
|
* SortOrder: "ASCENDING" || "DESCENDING", // required
|
|
@@ -76,7 +76,7 @@ declare const ListEngagementsCommand_base: {
|
|
|
76
76
|
* // ModifiedAt: new Date("TIMESTAMP"),
|
|
77
77
|
* // ModifiedBy: "STRING_VALUE",
|
|
78
78
|
* // ContextTypes: [ // EngagementContextTypeList
|
|
79
|
-
* // "CustomerProject" || "Lead",
|
|
79
|
+
* // "CustomerProject" || "Lead" || "ProspectingResult",
|
|
80
80
|
* // ],
|
|
81
81
|
* // },
|
|
82
82
|
* // ],
|