@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,33 +1,75 @@
|
|
|
1
1
|
import { createAggregatedClient } from "@smithy/smithy-client";
|
|
2
|
+
import { AcceptEngagementInvitationCommand, } from "./commands/AcceptEngagementInvitationCommand";
|
|
2
3
|
import { AssignOpportunityCommand, } from "./commands/AssignOpportunityCommand";
|
|
3
4
|
import { AssociateOpportunityCommand, } from "./commands/AssociateOpportunityCommand";
|
|
5
|
+
import { CreateEngagementCommand, } from "./commands/CreateEngagementCommand";
|
|
6
|
+
import { CreateEngagementInvitationCommand, } from "./commands/CreateEngagementInvitationCommand";
|
|
4
7
|
import { CreateOpportunityCommand, } from "./commands/CreateOpportunityCommand";
|
|
8
|
+
import { CreateResourceSnapshotCommand, } from "./commands/CreateResourceSnapshotCommand";
|
|
9
|
+
import { CreateResourceSnapshotJobCommand, } from "./commands/CreateResourceSnapshotJobCommand";
|
|
10
|
+
import { DeleteResourceSnapshotJobCommand, } from "./commands/DeleteResourceSnapshotJobCommand";
|
|
5
11
|
import { DisassociateOpportunityCommand, } from "./commands/DisassociateOpportunityCommand";
|
|
6
12
|
import { GetAwsOpportunitySummaryCommand, } from "./commands/GetAwsOpportunitySummaryCommand";
|
|
13
|
+
import { GetEngagementCommand, } from "./commands/GetEngagementCommand";
|
|
7
14
|
import { GetEngagementInvitationCommand, } from "./commands/GetEngagementInvitationCommand";
|
|
8
15
|
import { GetOpportunityCommand, } from "./commands/GetOpportunityCommand";
|
|
16
|
+
import { GetResourceSnapshotCommand, } from "./commands/GetResourceSnapshotCommand";
|
|
17
|
+
import { GetResourceSnapshotJobCommand, } from "./commands/GetResourceSnapshotJobCommand";
|
|
18
|
+
import { GetSellingSystemSettingsCommand, } from "./commands/GetSellingSystemSettingsCommand";
|
|
19
|
+
import { ListEngagementByAcceptingInvitationTasksCommand, } from "./commands/ListEngagementByAcceptingInvitationTasksCommand";
|
|
20
|
+
import { ListEngagementFromOpportunityTasksCommand, } from "./commands/ListEngagementFromOpportunityTasksCommand";
|
|
9
21
|
import { ListEngagementInvitationsCommand, } from "./commands/ListEngagementInvitationsCommand";
|
|
22
|
+
import { ListEngagementMembersCommand, } from "./commands/ListEngagementMembersCommand";
|
|
23
|
+
import { ListEngagementResourceAssociationsCommand, } from "./commands/ListEngagementResourceAssociationsCommand";
|
|
24
|
+
import { ListEngagementsCommand, } from "./commands/ListEngagementsCommand";
|
|
10
25
|
import { ListOpportunitiesCommand, } from "./commands/ListOpportunitiesCommand";
|
|
26
|
+
import { ListResourceSnapshotJobsCommand, } from "./commands/ListResourceSnapshotJobsCommand";
|
|
27
|
+
import { ListResourceSnapshotsCommand, } from "./commands/ListResourceSnapshotsCommand";
|
|
11
28
|
import { ListSolutionsCommand, } from "./commands/ListSolutionsCommand";
|
|
29
|
+
import { PutSellingSystemSettingsCommand, } from "./commands/PutSellingSystemSettingsCommand";
|
|
12
30
|
import { RejectEngagementInvitationCommand, } from "./commands/RejectEngagementInvitationCommand";
|
|
13
31
|
import { StartEngagementByAcceptingInvitationTaskCommand, } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
|
|
14
32
|
import { StartEngagementFromOpportunityTaskCommand, } from "./commands/StartEngagementFromOpportunityTaskCommand";
|
|
33
|
+
import { StartResourceSnapshotJobCommand, } from "./commands/StartResourceSnapshotJobCommand";
|
|
34
|
+
import { StopResourceSnapshotJobCommand, } from "./commands/StopResourceSnapshotJobCommand";
|
|
35
|
+
import { SubmitOpportunityCommand, } from "./commands/SubmitOpportunityCommand";
|
|
15
36
|
import { UpdateOpportunityCommand, } from "./commands/UpdateOpportunityCommand";
|
|
16
37
|
import { PartnerCentralSellingClient } from "./PartnerCentralSellingClient";
|
|
17
38
|
const commands = {
|
|
39
|
+
AcceptEngagementInvitationCommand,
|
|
18
40
|
AssignOpportunityCommand,
|
|
19
41
|
AssociateOpportunityCommand,
|
|
42
|
+
CreateEngagementCommand,
|
|
43
|
+
CreateEngagementInvitationCommand,
|
|
20
44
|
CreateOpportunityCommand,
|
|
45
|
+
CreateResourceSnapshotCommand,
|
|
46
|
+
CreateResourceSnapshotJobCommand,
|
|
47
|
+
DeleteResourceSnapshotJobCommand,
|
|
21
48
|
DisassociateOpportunityCommand,
|
|
22
49
|
GetAwsOpportunitySummaryCommand,
|
|
50
|
+
GetEngagementCommand,
|
|
23
51
|
GetEngagementInvitationCommand,
|
|
24
52
|
GetOpportunityCommand,
|
|
53
|
+
GetResourceSnapshotCommand,
|
|
54
|
+
GetResourceSnapshotJobCommand,
|
|
55
|
+
GetSellingSystemSettingsCommand,
|
|
56
|
+
ListEngagementByAcceptingInvitationTasksCommand,
|
|
57
|
+
ListEngagementFromOpportunityTasksCommand,
|
|
25
58
|
ListEngagementInvitationsCommand,
|
|
59
|
+
ListEngagementMembersCommand,
|
|
60
|
+
ListEngagementResourceAssociationsCommand,
|
|
61
|
+
ListEngagementsCommand,
|
|
26
62
|
ListOpportunitiesCommand,
|
|
63
|
+
ListResourceSnapshotJobsCommand,
|
|
64
|
+
ListResourceSnapshotsCommand,
|
|
27
65
|
ListSolutionsCommand,
|
|
66
|
+
PutSellingSystemSettingsCommand,
|
|
28
67
|
RejectEngagementInvitationCommand,
|
|
29
68
|
StartEngagementByAcceptingInvitationTaskCommand,
|
|
30
69
|
StartEngagementFromOpportunityTaskCommand,
|
|
70
|
+
StartResourceSnapshotJobCommand,
|
|
71
|
+
StopResourceSnapshotJobCommand,
|
|
72
|
+
SubmitOpportunityCommand,
|
|
31
73
|
UpdateOpportunityCommand,
|
|
32
74
|
};
|
|
33
75
|
export class PartnerCentralSelling extends PartnerCentralSellingClient {
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_AcceptEngagementInvitationCommand, se_AcceptEngagementInvitationCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class AcceptEngagementInvitationCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "AcceptEngagementInvitation", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "AcceptEngagementInvitationCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_AcceptEngagementInvitationCommand)
|
|
20
|
+
.de(de_AcceptEngagementInvitationCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateEngagementRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateEngagementCommand, se_CreateEngagementCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateEngagementCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "CreateEngagement", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "CreateEngagementCommand")
|
|
19
|
+
.f(CreateEngagementRequestFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_CreateEngagementCommand)
|
|
21
|
+
.de(de_CreateEngagementCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { CreateEngagementInvitationRequestFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_CreateEngagementInvitationCommand, se_CreateEngagementInvitationCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class CreateEngagementInvitationCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "CreateEngagementInvitation", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "CreateEngagementInvitationCommand")
|
|
19
|
+
.f(CreateEngagementInvitationRequestFilterSensitiveLog, void 0)
|
|
20
|
+
.ser(se_CreateEngagementInvitationCommand)
|
|
21
|
+
.de(de_CreateEngagementInvitationCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateResourceSnapshotCommand, se_CreateResourceSnapshotCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateResourceSnapshotCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "CreateResourceSnapshot", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "CreateResourceSnapshotCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_CreateResourceSnapshotCommand)
|
|
20
|
+
.de(de_CreateResourceSnapshotCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_CreateResourceSnapshotJobCommand, se_CreateResourceSnapshotJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class CreateResourceSnapshotJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "CreateResourceSnapshotJob", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "CreateResourceSnapshotJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_CreateResourceSnapshotJobCommand)
|
|
20
|
+
.de(de_CreateResourceSnapshotJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_DeleteResourceSnapshotJobCommand, se_DeleteResourceSnapshotJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class DeleteResourceSnapshotJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "DeleteResourceSnapshotJob", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "DeleteResourceSnapshotJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_DeleteResourceSnapshotJobCommand)
|
|
20
|
+
.de(de_DeleteResourceSnapshotJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetEngagementResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetEngagementCommand, se_GetEngagementCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetEngagementCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "GetEngagement", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "GetEngagementCommand")
|
|
19
|
+
.f(void 0, GetEngagementResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetEngagementCommand)
|
|
21
|
+
.de(de_GetEngagementCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { GetResourceSnapshotResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_GetResourceSnapshotCommand, se_GetResourceSnapshotCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class GetResourceSnapshotCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "GetResourceSnapshot", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "GetResourceSnapshotCommand")
|
|
19
|
+
.f(void 0, GetResourceSnapshotResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_GetResourceSnapshotCommand)
|
|
21
|
+
.de(de_GetResourceSnapshotCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetResourceSnapshotJobCommand, se_GetResourceSnapshotJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetResourceSnapshotJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "GetResourceSnapshotJob", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "GetResourceSnapshotJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetResourceSnapshotJobCommand)
|
|
20
|
+
.de(de_GetResourceSnapshotJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_GetSellingSystemSettingsCommand, se_GetSellingSystemSettingsCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class GetSellingSystemSettingsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "GetSellingSystemSettings", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "GetSellingSystemSettingsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_GetSellingSystemSettingsCommand)
|
|
20
|
+
.de(de_GetSellingSystemSettingsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListEngagementByAcceptingInvitationTasksCommand, se_ListEngagementByAcceptingInvitationTasksCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListEngagementByAcceptingInvitationTasksCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "ListEngagementByAcceptingInvitationTasks", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "ListEngagementByAcceptingInvitationTasksCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListEngagementByAcceptingInvitationTasksCommand)
|
|
20
|
+
.de(de_ListEngagementByAcceptingInvitationTasksCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListEngagementFromOpportunityTasksCommand, se_ListEngagementFromOpportunityTasksCommand, } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListEngagementFromOpportunityTasksCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "ListEngagementFromOpportunityTasks", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "ListEngagementFromOpportunityTasksCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListEngagementFromOpportunityTasksCommand)
|
|
20
|
+
.de(de_ListEngagementFromOpportunityTasksCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -2,7 +2,7 @@ import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
|
2
2
|
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
3
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
4
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
-
import { ListEngagementInvitationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
5
|
+
import { ListEngagementInvitationsRequestFilterSensitiveLog, ListEngagementInvitationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
6
|
import { de_ListEngagementInvitationsCommand, se_ListEngagementInvitationsCommand } from "../protocols/Aws_json1_0";
|
|
7
7
|
export { $Command };
|
|
8
8
|
export class ListEngagementInvitationsCommand extends $Command
|
|
@@ -16,7 +16,7 @@ export class ListEngagementInvitationsCommand extends $Command
|
|
|
16
16
|
})
|
|
17
17
|
.s("AWSPartnerCentralSelling", "ListEngagementInvitations", {})
|
|
18
18
|
.n("PartnerCentralSellingClient", "ListEngagementInvitationsCommand")
|
|
19
|
-
.f(
|
|
19
|
+
.f(ListEngagementInvitationsRequestFilterSensitiveLog, ListEngagementInvitationsResponseFilterSensitiveLog)
|
|
20
20
|
.ser(se_ListEngagementInvitationsCommand)
|
|
21
21
|
.de(de_ListEngagementInvitationsCommand)
|
|
22
22
|
.build() {
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListEngagementMembersResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListEngagementMembersCommand, se_ListEngagementMembersCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListEngagementMembersCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "ListEngagementMembers", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "ListEngagementMembersCommand")
|
|
19
|
+
.f(void 0, ListEngagementMembersResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListEngagementMembersCommand)
|
|
21
|
+
.de(de_ListEngagementMembersCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListEngagementResourceAssociationsRequestFilterSensitiveLog, ListEngagementResourceAssociationsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListEngagementResourceAssociationsCommand, se_ListEngagementResourceAssociationsCommand, } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListEngagementResourceAssociationsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "ListEngagementResourceAssociations", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "ListEngagementResourceAssociationsCommand")
|
|
19
|
+
.f(ListEngagementResourceAssociationsRequestFilterSensitiveLog, ListEngagementResourceAssociationsResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListEngagementResourceAssociationsCommand)
|
|
21
|
+
.de(de_ListEngagementResourceAssociationsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListEngagementsRequestFilterSensitiveLog, ListEngagementsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListEngagementsCommand, se_ListEngagementsCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListEngagementsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "ListEngagements", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "ListEngagementsCommand")
|
|
19
|
+
.f(ListEngagementsRequestFilterSensitiveLog, ListEngagementsResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListEngagementsCommand)
|
|
21
|
+
.de(de_ListEngagementsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_ListResourceSnapshotJobsCommand, se_ListResourceSnapshotJobsCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class ListResourceSnapshotJobsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "ListResourceSnapshotJobs", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "ListResourceSnapshotJobsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_ListResourceSnapshotJobsCommand)
|
|
20
|
+
.de(de_ListResourceSnapshotJobsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { ListResourceSnapshotsRequestFilterSensitiveLog, ListResourceSnapshotsResponseFilterSensitiveLog, } from "../models/models_0";
|
|
6
|
+
import { de_ListResourceSnapshotsCommand, se_ListResourceSnapshotsCommand } from "../protocols/Aws_json1_0";
|
|
7
|
+
export { $Command };
|
|
8
|
+
export class ListResourceSnapshotsCommand extends $Command
|
|
9
|
+
.classBuilder()
|
|
10
|
+
.ep(commonParams)
|
|
11
|
+
.m(function (Command, cs, config, o) {
|
|
12
|
+
return [
|
|
13
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
14
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
15
|
+
];
|
|
16
|
+
})
|
|
17
|
+
.s("AWSPartnerCentralSelling", "ListResourceSnapshots", {})
|
|
18
|
+
.n("PartnerCentralSellingClient", "ListResourceSnapshotsCommand")
|
|
19
|
+
.f(ListResourceSnapshotsRequestFilterSensitiveLog, ListResourceSnapshotsResponseFilterSensitiveLog)
|
|
20
|
+
.ser(se_ListResourceSnapshotsCommand)
|
|
21
|
+
.de(de_ListResourceSnapshotsCommand)
|
|
22
|
+
.build() {
|
|
23
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_PutSellingSystemSettingsCommand, se_PutSellingSystemSettingsCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class PutSellingSystemSettingsCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "PutSellingSystemSettings", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "PutSellingSystemSettingsCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_PutSellingSystemSettingsCommand)
|
|
20
|
+
.de(de_PutSellingSystemSettingsCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StartResourceSnapshotJobCommand, se_StartResourceSnapshotJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StartResourceSnapshotJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "StartResourceSnapshotJob", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "StartResourceSnapshotJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StartResourceSnapshotJobCommand)
|
|
20
|
+
.de(de_StartResourceSnapshotJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_StopResourceSnapshotJobCommand, se_StopResourceSnapshotJobCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class StopResourceSnapshotJobCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "StopResourceSnapshotJob", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "StopResourceSnapshotJobCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_StopResourceSnapshotJobCommand)
|
|
20
|
+
.de(de_StopResourceSnapshotJobCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
2
|
+
import { getSerdePlugin } from "@smithy/middleware-serde";
|
|
3
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
4
|
+
import { commonParams } from "../endpoint/EndpointParameters";
|
|
5
|
+
import { de_SubmitOpportunityCommand, se_SubmitOpportunityCommand } from "../protocols/Aws_json1_0";
|
|
6
|
+
export { $Command };
|
|
7
|
+
export class SubmitOpportunityCommand extends $Command
|
|
8
|
+
.classBuilder()
|
|
9
|
+
.ep(commonParams)
|
|
10
|
+
.m(function (Command, cs, config, o) {
|
|
11
|
+
return [
|
|
12
|
+
getSerdePlugin(config, this.serialize, this.deserialize),
|
|
13
|
+
getEndpointPlugin(config, Command.getEndpointParameterInstructions()),
|
|
14
|
+
];
|
|
15
|
+
})
|
|
16
|
+
.s("AWSPartnerCentralSelling", "SubmitOpportunity", {})
|
|
17
|
+
.n("PartnerCentralSellingClient", "SubmitOpportunityCommand")
|
|
18
|
+
.f(void 0, void 0)
|
|
19
|
+
.ser(se_SubmitOpportunityCommand)
|
|
20
|
+
.de(de_SubmitOpportunityCommand)
|
|
21
|
+
.build() {
|
|
22
|
+
}
|
|
@@ -1,14 +1,35 @@
|
|
|
1
|
+
export * from "./AcceptEngagementInvitationCommand";
|
|
1
2
|
export * from "./AssignOpportunityCommand";
|
|
2
3
|
export * from "./AssociateOpportunityCommand";
|
|
4
|
+
export * from "./CreateEngagementCommand";
|
|
5
|
+
export * from "./CreateEngagementInvitationCommand";
|
|
3
6
|
export * from "./CreateOpportunityCommand";
|
|
7
|
+
export * from "./CreateResourceSnapshotCommand";
|
|
8
|
+
export * from "./CreateResourceSnapshotJobCommand";
|
|
9
|
+
export * from "./DeleteResourceSnapshotJobCommand";
|
|
4
10
|
export * from "./DisassociateOpportunityCommand";
|
|
5
11
|
export * from "./GetAwsOpportunitySummaryCommand";
|
|
12
|
+
export * from "./GetEngagementCommand";
|
|
6
13
|
export * from "./GetEngagementInvitationCommand";
|
|
7
14
|
export * from "./GetOpportunityCommand";
|
|
15
|
+
export * from "./GetResourceSnapshotCommand";
|
|
16
|
+
export * from "./GetResourceSnapshotJobCommand";
|
|
17
|
+
export * from "./GetSellingSystemSettingsCommand";
|
|
18
|
+
export * from "./ListEngagementByAcceptingInvitationTasksCommand";
|
|
19
|
+
export * from "./ListEngagementFromOpportunityTasksCommand";
|
|
8
20
|
export * from "./ListEngagementInvitationsCommand";
|
|
21
|
+
export * from "./ListEngagementMembersCommand";
|
|
22
|
+
export * from "./ListEngagementResourceAssociationsCommand";
|
|
23
|
+
export * from "./ListEngagementsCommand";
|
|
9
24
|
export * from "./ListOpportunitiesCommand";
|
|
25
|
+
export * from "./ListResourceSnapshotJobsCommand";
|
|
26
|
+
export * from "./ListResourceSnapshotsCommand";
|
|
10
27
|
export * from "./ListSolutionsCommand";
|
|
28
|
+
export * from "./PutSellingSystemSettingsCommand";
|
|
11
29
|
export * from "./RejectEngagementInvitationCommand";
|
|
12
30
|
export * from "./StartEngagementByAcceptingInvitationTaskCommand";
|
|
13
31
|
export * from "./StartEngagementFromOpportunityTaskCommand";
|
|
32
|
+
export * from "./StartResourceSnapshotJobCommand";
|
|
33
|
+
export * from "./StopResourceSnapshotJobCommand";
|
|
34
|
+
export * from "./SubmitOpportunityCommand";
|
|
14
35
|
export * from "./UpdateOpportunityCommand";
|