@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.
Files changed (153) hide show
  1. package/README.md +206 -45
  2. package/dist-cjs/PartnerCentralSelling.js +42 -0
  3. package/dist-cjs/commands/AcceptEngagementInvitationCommand.js +26 -0
  4. package/dist-cjs/commands/CreateEngagementCommand.js +27 -0
  5. package/dist-cjs/commands/CreateEngagementInvitationCommand.js +27 -0
  6. package/dist-cjs/commands/CreateResourceSnapshotCommand.js +26 -0
  7. package/dist-cjs/commands/CreateResourceSnapshotJobCommand.js +26 -0
  8. package/dist-cjs/commands/DeleteResourceSnapshotJobCommand.js +26 -0
  9. package/dist-cjs/commands/GetEngagementCommand.js +27 -0
  10. package/dist-cjs/commands/GetResourceSnapshotCommand.js +27 -0
  11. package/dist-cjs/commands/GetResourceSnapshotJobCommand.js +26 -0
  12. package/dist-cjs/commands/GetSellingSystemSettingsCommand.js +26 -0
  13. package/dist-cjs/commands/ListEngagementByAcceptingInvitationTasksCommand.js +26 -0
  14. package/dist-cjs/commands/ListEngagementFromOpportunityTasksCommand.js +26 -0
  15. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +1 -1
  16. package/dist-cjs/commands/ListEngagementMembersCommand.js +27 -0
  17. package/dist-cjs/commands/ListEngagementResourceAssociationsCommand.js +27 -0
  18. package/dist-cjs/commands/ListEngagementsCommand.js +27 -0
  19. package/dist-cjs/commands/ListResourceSnapshotJobsCommand.js +26 -0
  20. package/dist-cjs/commands/ListResourceSnapshotsCommand.js +27 -0
  21. package/dist-cjs/commands/PutSellingSystemSettingsCommand.js +26 -0
  22. package/dist-cjs/commands/StartResourceSnapshotJobCommand.js +26 -0
  23. package/dist-cjs/commands/StopResourceSnapshotJobCommand.js +26 -0
  24. package/dist-cjs/commands/SubmitOpportunityCommand.js +26 -0
  25. package/dist-cjs/commands/index.js +21 -0
  26. package/dist-cjs/models/models_0.js +281 -87
  27. package/dist-cjs/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +7 -0
  28. package/dist-cjs/pagination/ListEngagementFromOpportunityTasksPaginator.js +7 -0
  29. package/dist-cjs/pagination/ListEngagementMembersPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListEngagementResourceAssociationsPaginator.js +7 -0
  31. package/dist-cjs/pagination/ListEngagementsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListResourceSnapshotJobsPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListResourceSnapshotsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +599 -1
  36. package/dist-es/PartnerCentralSelling.js +42 -0
  37. package/dist-es/commands/AcceptEngagementInvitationCommand.js +22 -0
  38. package/dist-es/commands/CreateEngagementCommand.js +23 -0
  39. package/dist-es/commands/CreateEngagementInvitationCommand.js +23 -0
  40. package/dist-es/commands/CreateResourceSnapshotCommand.js +22 -0
  41. package/dist-es/commands/CreateResourceSnapshotJobCommand.js +22 -0
  42. package/dist-es/commands/DeleteResourceSnapshotJobCommand.js +22 -0
  43. package/dist-es/commands/GetEngagementCommand.js +23 -0
  44. package/dist-es/commands/GetResourceSnapshotCommand.js +23 -0
  45. package/dist-es/commands/GetResourceSnapshotJobCommand.js +22 -0
  46. package/dist-es/commands/GetSellingSystemSettingsCommand.js +22 -0
  47. package/dist-es/commands/ListEngagementByAcceptingInvitationTasksCommand.js +22 -0
  48. package/dist-es/commands/ListEngagementFromOpportunityTasksCommand.js +22 -0
  49. package/dist-es/commands/ListEngagementInvitationsCommand.js +2 -2
  50. package/dist-es/commands/ListEngagementMembersCommand.js +23 -0
  51. package/dist-es/commands/ListEngagementResourceAssociationsCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementsCommand.js +23 -0
  53. package/dist-es/commands/ListResourceSnapshotJobsCommand.js +22 -0
  54. package/dist-es/commands/ListResourceSnapshotsCommand.js +23 -0
  55. package/dist-es/commands/PutSellingSystemSettingsCommand.js +22 -0
  56. package/dist-es/commands/StartResourceSnapshotJobCommand.js +22 -0
  57. package/dist-es/commands/StopResourceSnapshotJobCommand.js +22 -0
  58. package/dist-es/commands/SubmitOpportunityCommand.js +22 -0
  59. package/dist-es/commands/index.js +21 -0
  60. package/dist-es/models/models_0.js +249 -81
  61. package/dist-es/pagination/ListEngagementByAcceptingInvitationTasksPaginator.js +4 -0
  62. package/dist-es/pagination/ListEngagementFromOpportunityTasksPaginator.js +4 -0
  63. package/dist-es/pagination/ListEngagementMembersPaginator.js +4 -0
  64. package/dist-es/pagination/ListEngagementResourceAssociationsPaginator.js +4 -0
  65. package/dist-es/pagination/ListEngagementsPaginator.js +4 -0
  66. package/dist-es/pagination/ListResourceSnapshotJobsPaginator.js +4 -0
  67. package/dist-es/pagination/ListResourceSnapshotsPaginator.js +4 -0
  68. package/dist-es/pagination/index.js +7 -0
  69. package/dist-es/protocols/Aws_json1_0.js +556 -1
  70. package/dist-types/PartnerCentralSelling.d.ts +182 -42
  71. package/dist-types/PartnerCentralSellingClient.d.ts +58 -44
  72. package/dist-types/commands/AcceptEngagementInvitationCommand.d.ts +103 -0
  73. package/dist-types/commands/AssignOpportunityCommand.d.ts +27 -32
  74. package/dist-types/commands/AssociateOpportunityCommand.d.ts +40 -46
  75. package/dist-types/commands/CreateEngagementCommand.d.ts +136 -0
  76. package/dist-types/commands/CreateEngagementInvitationCommand.d.ts +158 -0
  77. package/dist-types/commands/CreateOpportunityCommand.d.ts +40 -46
  78. package/dist-types/commands/CreateResourceSnapshotCommand.d.ts +117 -0
  79. package/dist-types/commands/CreateResourceSnapshotJobCommand.d.ts +119 -0
  80. package/dist-types/commands/DeleteResourceSnapshotJobCommand.d.ts +96 -0
  81. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +29 -34
  82. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +24 -28
  83. package/dist-types/commands/GetEngagementCommand.d.ts +124 -0
  84. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +34 -24
  85. package/dist-types/commands/GetOpportunityCommand.d.ts +24 -29
  86. package/dist-types/commands/GetResourceSnapshotCommand.d.ts +186 -0
  87. package/dist-types/commands/GetResourceSnapshotJobCommand.d.ts +109 -0
  88. package/dist-types/commands/GetSellingSystemSettingsCommand.d.ts +95 -0
  89. package/dist-types/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +128 -0
  90. package/dist-types/commands/ListEngagementFromOpportunityTasksCommand.d.ts +129 -0
  91. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +34 -25
  92. package/dist-types/commands/ListEngagementMembersCommand.d.ts +109 -0
  93. package/dist-types/commands/ListEngagementResourceAssociationsCommand.d.ts +112 -0
  94. package/dist-types/commands/ListEngagementsCommand.d.ts +123 -0
  95. package/dist-types/commands/ListOpportunitiesCommand.d.ts +35 -39
  96. package/dist-types/commands/ListResourceSnapshotJobsCommand.d.ts +108 -0
  97. package/dist-types/commands/ListResourceSnapshotsCommand.d.ts +113 -0
  98. package/dist-types/commands/ListSolutionsCommand.d.ts +20 -20
  99. package/dist-types/commands/PutSellingSystemSettingsCommand.d.ts +96 -0
  100. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +22 -27
  101. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +37 -35
  102. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +37 -35
  103. package/dist-types/commands/StartResourceSnapshotJobCommand.d.ts +95 -0
  104. package/dist-types/commands/StopResourceSnapshotJobCommand.d.ts +95 -0
  105. package/dist-types/commands/SubmitOpportunityCommand.d.ts +106 -0
  106. package/dist-types/commands/UpdateOpportunityCommand.d.ts +33 -35
  107. package/dist-types/commands/index.d.ts +21 -0
  108. package/dist-types/index.d.ts +35 -42
  109. package/dist-types/models/models_0.d.ts +4764 -2209
  110. package/dist-types/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +7 -0
  111. package/dist-types/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +7 -0
  112. package/dist-types/pagination/ListEngagementMembersPaginator.d.ts +7 -0
  113. package/dist-types/pagination/ListEngagementResourceAssociationsPaginator.d.ts +7 -0
  114. package/dist-types/pagination/ListEngagementsPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListResourceSnapshotJobsPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListResourceSnapshotsPaginator.d.ts +7 -0
  117. package/dist-types/pagination/index.d.ts +7 -0
  118. package/dist-types/protocols/Aws_json1_0.d.ts +189 -0
  119. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +375 -0
  120. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +126 -0
  121. package/dist-types/ts3.4/commands/AcceptEngagementInvitationCommand.d.ts +47 -0
  122. package/dist-types/ts3.4/commands/CreateEngagementCommand.d.ts +50 -0
  123. package/dist-types/ts3.4/commands/CreateEngagementInvitationCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateResourceSnapshotCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreateResourceSnapshotJobCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/DeleteResourceSnapshotJobCommand.d.ts +47 -0
  127. package/dist-types/ts3.4/commands/GetEngagementCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/GetResourceSnapshotCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/GetResourceSnapshotJobCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetSellingSystemSettingsCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/ListEngagementByAcceptingInvitationTasksCommand.d.ts +51 -0
  132. package/dist-types/ts3.4/commands/ListEngagementFromOpportunityTasksCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/ListEngagementMembersCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListEngagementResourceAssociationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListEngagementsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListResourceSnapshotJobsCommand.d.ts +51 -0
  137. package/dist-types/ts3.4/commands/ListResourceSnapshotsCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutSellingSystemSettingsCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/StartResourceSnapshotJobCommand.d.ts +47 -0
  140. package/dist-types/ts3.4/commands/StopResourceSnapshotJobCommand.d.ts +47 -0
  141. package/dist-types/ts3.4/commands/SubmitOpportunityCommand.d.ts +46 -0
  142. package/dist-types/ts3.4/commands/index.d.ts +21 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +587 -86
  144. package/dist-types/ts3.4/pagination/ListEngagementByAcceptingInvitationTasksPaginator.d.ts +11 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementFromOpportunityTasksPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListEngagementMembersPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListEngagementResourceAssociationsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/ListEngagementsPaginator.d.ts +11 -0
  149. package/dist-types/ts3.4/pagination/ListResourceSnapshotJobsPaginator.d.ts +11 -0
  150. package/dist-types/ts3.4/pagination/ListResourceSnapshotsPaginator.d.ts +11 -0
  151. package/dist-types/ts3.4/pagination/index.d.ts +7 -0
  152. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +252 -0
  153. 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(void 0, ListEngagementInvitationsResponseFilterSensitiveLog)
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";