@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
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEngagementByAcceptingInvitationTasksCommandInput, ListEngagementByAcceptingInvitationTasksCommandOutput } from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEngagementByAcceptingInvitationTasks: (config: PartnerCentralSellingPaginationConfiguration, input: ListEngagementByAcceptingInvitationTasksCommandInput, ...rest: any[]) => Paginator<ListEngagementByAcceptingInvitationTasksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEngagementFromOpportunityTasksCommandInput, ListEngagementFromOpportunityTasksCommandOutput } from "../commands/ListEngagementFromOpportunityTasksCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEngagementFromOpportunityTasks: (config: PartnerCentralSellingPaginationConfiguration, input: ListEngagementFromOpportunityTasksCommandInput, ...rest: any[]) => Paginator<ListEngagementFromOpportunityTasksCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEngagementMembersCommandInput, ListEngagementMembersCommandOutput } from "../commands/ListEngagementMembersCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEngagementMembers: (config: PartnerCentralSellingPaginationConfiguration, input: ListEngagementMembersCommandInput, ...rest: any[]) => Paginator<ListEngagementMembersCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEngagementResourceAssociationsCommandInput, ListEngagementResourceAssociationsCommandOutput } from "../commands/ListEngagementResourceAssociationsCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEngagementResourceAssociations: (config: PartnerCentralSellingPaginationConfiguration, input: ListEngagementResourceAssociationsCommandInput, ...rest: any[]) => Paginator<ListEngagementResourceAssociationsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "../commands/ListEngagementsCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListEngagements: (config: PartnerCentralSellingPaginationConfiguration, input: ListEngagementsCommandInput, ...rest: any[]) => Paginator<ListEngagementsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListResourceSnapshotJobsCommandInput, ListResourceSnapshotJobsCommandOutput } from "../commands/ListResourceSnapshotJobsCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListResourceSnapshotJobs: (config: PartnerCentralSellingPaginationConfiguration, input: ListResourceSnapshotJobsCommandInput, ...rest: any[]) => Paginator<ListResourceSnapshotJobsCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput } from "../commands/ListResourceSnapshotsCommand";
3
+ import { PartnerCentralSellingPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListResourceSnapshots: (config: PartnerCentralSellingPaginationConfiguration, input: ListResourceSnapshotsCommandInput, ...rest: any[]) => Paginator<ListResourceSnapshotsCommandOutput>;
@@ -1,4 +1,11 @@
1
1
  export * from "./Interfaces";
2
+ export * from "./ListEngagementByAcceptingInvitationTasksPaginator";
3
+ export * from "./ListEngagementFromOpportunityTasksPaginator";
2
4
  export * from "./ListEngagementInvitationsPaginator";
5
+ export * from "./ListEngagementMembersPaginator";
6
+ export * from "./ListEngagementResourceAssociationsPaginator";
7
+ export * from "./ListEngagementsPaginator";
3
8
  export * from "./ListOpportunitiesPaginator";
9
+ export * from "./ListResourceSnapshotJobsPaginator";
10
+ export * from "./ListResourceSnapshotsPaginator";
4
11
  export * from "./ListSolutionsPaginator";
@@ -1,19 +1,44 @@
1
1
  import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
2
  import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { AcceptEngagementInvitationCommandInput, AcceptEngagementInvitationCommandOutput } from "../commands/AcceptEngagementInvitationCommand";
3
4
  import { AssignOpportunityCommandInput, AssignOpportunityCommandOutput } from "../commands/AssignOpportunityCommand";
4
5
  import { AssociateOpportunityCommandInput, AssociateOpportunityCommandOutput } from "../commands/AssociateOpportunityCommand";
6
+ import { CreateEngagementCommandInput, CreateEngagementCommandOutput } from "../commands/CreateEngagementCommand";
7
+ import { CreateEngagementInvitationCommandInput, CreateEngagementInvitationCommandOutput } from "../commands/CreateEngagementInvitationCommand";
5
8
  import { CreateOpportunityCommandInput, CreateOpportunityCommandOutput } from "../commands/CreateOpportunityCommand";
9
+ import { CreateResourceSnapshotCommandInput, CreateResourceSnapshotCommandOutput } from "../commands/CreateResourceSnapshotCommand";
10
+ import { CreateResourceSnapshotJobCommandInput, CreateResourceSnapshotJobCommandOutput } from "../commands/CreateResourceSnapshotJobCommand";
11
+ import { DeleteResourceSnapshotJobCommandInput, DeleteResourceSnapshotJobCommandOutput } from "../commands/DeleteResourceSnapshotJobCommand";
6
12
  import { DisassociateOpportunityCommandInput, DisassociateOpportunityCommandOutput } from "../commands/DisassociateOpportunityCommand";
7
13
  import { GetAwsOpportunitySummaryCommandInput, GetAwsOpportunitySummaryCommandOutput } from "../commands/GetAwsOpportunitySummaryCommand";
14
+ import { GetEngagementCommandInput, GetEngagementCommandOutput } from "../commands/GetEngagementCommand";
8
15
  import { GetEngagementInvitationCommandInput, GetEngagementInvitationCommandOutput } from "../commands/GetEngagementInvitationCommand";
9
16
  import { GetOpportunityCommandInput, GetOpportunityCommandOutput } from "../commands/GetOpportunityCommand";
17
+ import { GetResourceSnapshotCommandInput, GetResourceSnapshotCommandOutput } from "../commands/GetResourceSnapshotCommand";
18
+ import { GetResourceSnapshotJobCommandInput, GetResourceSnapshotJobCommandOutput } from "../commands/GetResourceSnapshotJobCommand";
19
+ import { GetSellingSystemSettingsCommandInput, GetSellingSystemSettingsCommandOutput } from "../commands/GetSellingSystemSettingsCommand";
20
+ import { ListEngagementByAcceptingInvitationTasksCommandInput, ListEngagementByAcceptingInvitationTasksCommandOutput } from "../commands/ListEngagementByAcceptingInvitationTasksCommand";
21
+ import { ListEngagementFromOpportunityTasksCommandInput, ListEngagementFromOpportunityTasksCommandOutput } from "../commands/ListEngagementFromOpportunityTasksCommand";
10
22
  import { ListEngagementInvitationsCommandInput, ListEngagementInvitationsCommandOutput } from "../commands/ListEngagementInvitationsCommand";
23
+ import { ListEngagementMembersCommandInput, ListEngagementMembersCommandOutput } from "../commands/ListEngagementMembersCommand";
24
+ import { ListEngagementResourceAssociationsCommandInput, ListEngagementResourceAssociationsCommandOutput } from "../commands/ListEngagementResourceAssociationsCommand";
25
+ import { ListEngagementsCommandInput, ListEngagementsCommandOutput } from "../commands/ListEngagementsCommand";
11
26
  import { ListOpportunitiesCommandInput, ListOpportunitiesCommandOutput } from "../commands/ListOpportunitiesCommand";
27
+ import { ListResourceSnapshotJobsCommandInput, ListResourceSnapshotJobsCommandOutput } from "../commands/ListResourceSnapshotJobsCommand";
28
+ import { ListResourceSnapshotsCommandInput, ListResourceSnapshotsCommandOutput } from "../commands/ListResourceSnapshotsCommand";
12
29
  import { ListSolutionsCommandInput, ListSolutionsCommandOutput } from "../commands/ListSolutionsCommand";
30
+ import { PutSellingSystemSettingsCommandInput, PutSellingSystemSettingsCommandOutput } from "../commands/PutSellingSystemSettingsCommand";
13
31
  import { RejectEngagementInvitationCommandInput, RejectEngagementInvitationCommandOutput } from "../commands/RejectEngagementInvitationCommand";
14
32
  import { StartEngagementByAcceptingInvitationTaskCommandInput, StartEngagementByAcceptingInvitationTaskCommandOutput } from "../commands/StartEngagementByAcceptingInvitationTaskCommand";
15
33
  import { StartEngagementFromOpportunityTaskCommandInput, StartEngagementFromOpportunityTaskCommandOutput } from "../commands/StartEngagementFromOpportunityTaskCommand";
34
+ import { StartResourceSnapshotJobCommandInput, StartResourceSnapshotJobCommandOutput } from "../commands/StartResourceSnapshotJobCommand";
35
+ import { StopResourceSnapshotJobCommandInput, StopResourceSnapshotJobCommandOutput } from "../commands/StopResourceSnapshotJobCommand";
36
+ import { SubmitOpportunityCommandInput, SubmitOpportunityCommandOutput } from "../commands/SubmitOpportunityCommand";
16
37
  import { UpdateOpportunityCommandInput, UpdateOpportunityCommandOutput } from "../commands/UpdateOpportunityCommand";
38
+ /**
39
+ * serializeAws_json1_0AcceptEngagementInvitationCommand
40
+ */
41
+ export declare const se_AcceptEngagementInvitationCommand: (input: AcceptEngagementInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
17
42
  /**
18
43
  * serializeAws_json1_0AssignOpportunityCommand
19
44
  */
@@ -22,10 +47,30 @@ export declare const se_AssignOpportunityCommand: (input: AssignOpportunityComma
22
47
  * serializeAws_json1_0AssociateOpportunityCommand
23
48
  */
24
49
  export declare const se_AssociateOpportunityCommand: (input: AssociateOpportunityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
50
+ /**
51
+ * serializeAws_json1_0CreateEngagementCommand
52
+ */
53
+ export declare const se_CreateEngagementCommand: (input: CreateEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
54
+ /**
55
+ * serializeAws_json1_0CreateEngagementInvitationCommand
56
+ */
57
+ export declare const se_CreateEngagementInvitationCommand: (input: CreateEngagementInvitationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
25
58
  /**
26
59
  * serializeAws_json1_0CreateOpportunityCommand
27
60
  */
28
61
  export declare const se_CreateOpportunityCommand: (input: CreateOpportunityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
62
+ /**
63
+ * serializeAws_json1_0CreateResourceSnapshotCommand
64
+ */
65
+ export declare const se_CreateResourceSnapshotCommand: (input: CreateResourceSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
66
+ /**
67
+ * serializeAws_json1_0CreateResourceSnapshotJobCommand
68
+ */
69
+ export declare const se_CreateResourceSnapshotJobCommand: (input: CreateResourceSnapshotJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
70
+ /**
71
+ * serializeAws_json1_0DeleteResourceSnapshotJobCommand
72
+ */
73
+ export declare const se_DeleteResourceSnapshotJobCommand: (input: DeleteResourceSnapshotJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
29
74
  /**
30
75
  * serializeAws_json1_0DisassociateOpportunityCommand
31
76
  */
@@ -34,6 +79,10 @@ export declare const se_DisassociateOpportunityCommand: (input: DisassociateOppo
34
79
  * serializeAws_json1_0GetAwsOpportunitySummaryCommand
35
80
  */
36
81
  export declare const se_GetAwsOpportunitySummaryCommand: (input: GetAwsOpportunitySummaryCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
82
+ /**
83
+ * serializeAws_json1_0GetEngagementCommand
84
+ */
85
+ export declare const se_GetEngagementCommand: (input: GetEngagementCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
37
86
  /**
38
87
  * serializeAws_json1_0GetEngagementInvitationCommand
39
88
  */
@@ -42,18 +91,62 @@ export declare const se_GetEngagementInvitationCommand: (input: GetEngagementInv
42
91
  * serializeAws_json1_0GetOpportunityCommand
43
92
  */
44
93
  export declare const se_GetOpportunityCommand: (input: GetOpportunityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
94
+ /**
95
+ * serializeAws_json1_0GetResourceSnapshotCommand
96
+ */
97
+ export declare const se_GetResourceSnapshotCommand: (input: GetResourceSnapshotCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
98
+ /**
99
+ * serializeAws_json1_0GetResourceSnapshotJobCommand
100
+ */
101
+ export declare const se_GetResourceSnapshotJobCommand: (input: GetResourceSnapshotJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
102
+ /**
103
+ * serializeAws_json1_0GetSellingSystemSettingsCommand
104
+ */
105
+ export declare const se_GetSellingSystemSettingsCommand: (input: GetSellingSystemSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
106
+ /**
107
+ * serializeAws_json1_0ListEngagementByAcceptingInvitationTasksCommand
108
+ */
109
+ export declare const se_ListEngagementByAcceptingInvitationTasksCommand: (input: ListEngagementByAcceptingInvitationTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
110
+ /**
111
+ * serializeAws_json1_0ListEngagementFromOpportunityTasksCommand
112
+ */
113
+ export declare const se_ListEngagementFromOpportunityTasksCommand: (input: ListEngagementFromOpportunityTasksCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
45
114
  /**
46
115
  * serializeAws_json1_0ListEngagementInvitationsCommand
47
116
  */
48
117
  export declare const se_ListEngagementInvitationsCommand: (input: ListEngagementInvitationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
118
+ /**
119
+ * serializeAws_json1_0ListEngagementMembersCommand
120
+ */
121
+ export declare const se_ListEngagementMembersCommand: (input: ListEngagementMembersCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
122
+ /**
123
+ * serializeAws_json1_0ListEngagementResourceAssociationsCommand
124
+ */
125
+ export declare const se_ListEngagementResourceAssociationsCommand: (input: ListEngagementResourceAssociationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
126
+ /**
127
+ * serializeAws_json1_0ListEngagementsCommand
128
+ */
129
+ export declare const se_ListEngagementsCommand: (input: ListEngagementsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
49
130
  /**
50
131
  * serializeAws_json1_0ListOpportunitiesCommand
51
132
  */
52
133
  export declare const se_ListOpportunitiesCommand: (input: ListOpportunitiesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
134
+ /**
135
+ * serializeAws_json1_0ListResourceSnapshotJobsCommand
136
+ */
137
+ export declare const se_ListResourceSnapshotJobsCommand: (input: ListResourceSnapshotJobsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
138
+ /**
139
+ * serializeAws_json1_0ListResourceSnapshotsCommand
140
+ */
141
+ export declare const se_ListResourceSnapshotsCommand: (input: ListResourceSnapshotsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
53
142
  /**
54
143
  * serializeAws_json1_0ListSolutionsCommand
55
144
  */
56
145
  export declare const se_ListSolutionsCommand: (input: ListSolutionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
146
+ /**
147
+ * serializeAws_json1_0PutSellingSystemSettingsCommand
148
+ */
149
+ export declare const se_PutSellingSystemSettingsCommand: (input: PutSellingSystemSettingsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
57
150
  /**
58
151
  * serializeAws_json1_0RejectEngagementInvitationCommand
59
152
  */
@@ -66,10 +159,26 @@ export declare const se_StartEngagementByAcceptingInvitationTaskCommand: (input:
66
159
  * serializeAws_json1_0StartEngagementFromOpportunityTaskCommand
67
160
  */
68
161
  export declare const se_StartEngagementFromOpportunityTaskCommand: (input: StartEngagementFromOpportunityTaskCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
162
+ /**
163
+ * serializeAws_json1_0StartResourceSnapshotJobCommand
164
+ */
165
+ export declare const se_StartResourceSnapshotJobCommand: (input: StartResourceSnapshotJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
166
+ /**
167
+ * serializeAws_json1_0StopResourceSnapshotJobCommand
168
+ */
169
+ export declare const se_StopResourceSnapshotJobCommand: (input: StopResourceSnapshotJobCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
170
+ /**
171
+ * serializeAws_json1_0SubmitOpportunityCommand
172
+ */
173
+ export declare const se_SubmitOpportunityCommand: (input: SubmitOpportunityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
69
174
  /**
70
175
  * serializeAws_json1_0UpdateOpportunityCommand
71
176
  */
72
177
  export declare const se_UpdateOpportunityCommand: (input: UpdateOpportunityCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
178
+ /**
179
+ * deserializeAws_json1_0AcceptEngagementInvitationCommand
180
+ */
181
+ export declare const de_AcceptEngagementInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AcceptEngagementInvitationCommandOutput>;
73
182
  /**
74
183
  * deserializeAws_json1_0AssignOpportunityCommand
75
184
  */
@@ -78,10 +187,30 @@ export declare const de_AssignOpportunityCommand: (output: __HttpResponse, conte
78
187
  * deserializeAws_json1_0AssociateOpportunityCommand
79
188
  */
80
189
  export declare const de_AssociateOpportunityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateOpportunityCommandOutput>;
190
+ /**
191
+ * deserializeAws_json1_0CreateEngagementCommand
192
+ */
193
+ export declare const de_CreateEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEngagementCommandOutput>;
194
+ /**
195
+ * deserializeAws_json1_0CreateEngagementInvitationCommand
196
+ */
197
+ export declare const de_CreateEngagementInvitationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateEngagementInvitationCommandOutput>;
81
198
  /**
82
199
  * deserializeAws_json1_0CreateOpportunityCommand
83
200
  */
84
201
  export declare const de_CreateOpportunityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateOpportunityCommandOutput>;
202
+ /**
203
+ * deserializeAws_json1_0CreateResourceSnapshotCommand
204
+ */
205
+ export declare const de_CreateResourceSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResourceSnapshotCommandOutput>;
206
+ /**
207
+ * deserializeAws_json1_0CreateResourceSnapshotJobCommand
208
+ */
209
+ export declare const de_CreateResourceSnapshotJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateResourceSnapshotJobCommandOutput>;
210
+ /**
211
+ * deserializeAws_json1_0DeleteResourceSnapshotJobCommand
212
+ */
213
+ export declare const de_DeleteResourceSnapshotJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteResourceSnapshotJobCommandOutput>;
85
214
  /**
86
215
  * deserializeAws_json1_0DisassociateOpportunityCommand
87
216
  */
@@ -90,6 +219,10 @@ export declare const de_DisassociateOpportunityCommand: (output: __HttpResponse,
90
219
  * deserializeAws_json1_0GetAwsOpportunitySummaryCommand
91
220
  */
92
221
  export declare const de_GetAwsOpportunitySummaryCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetAwsOpportunitySummaryCommandOutput>;
222
+ /**
223
+ * deserializeAws_json1_0GetEngagementCommand
224
+ */
225
+ export declare const de_GetEngagementCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetEngagementCommandOutput>;
93
226
  /**
94
227
  * deserializeAws_json1_0GetEngagementInvitationCommand
95
228
  */
@@ -98,18 +231,62 @@ export declare const de_GetEngagementInvitationCommand: (output: __HttpResponse,
98
231
  * deserializeAws_json1_0GetOpportunityCommand
99
232
  */
100
233
  export declare const de_GetOpportunityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetOpportunityCommandOutput>;
234
+ /**
235
+ * deserializeAws_json1_0GetResourceSnapshotCommand
236
+ */
237
+ export declare const de_GetResourceSnapshotCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceSnapshotCommandOutput>;
238
+ /**
239
+ * deserializeAws_json1_0GetResourceSnapshotJobCommand
240
+ */
241
+ export declare const de_GetResourceSnapshotJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetResourceSnapshotJobCommandOutput>;
242
+ /**
243
+ * deserializeAws_json1_0GetSellingSystemSettingsCommand
244
+ */
245
+ export declare const de_GetSellingSystemSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetSellingSystemSettingsCommandOutput>;
246
+ /**
247
+ * deserializeAws_json1_0ListEngagementByAcceptingInvitationTasksCommand
248
+ */
249
+ export declare const de_ListEngagementByAcceptingInvitationTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementByAcceptingInvitationTasksCommandOutput>;
250
+ /**
251
+ * deserializeAws_json1_0ListEngagementFromOpportunityTasksCommand
252
+ */
253
+ export declare const de_ListEngagementFromOpportunityTasksCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementFromOpportunityTasksCommandOutput>;
101
254
  /**
102
255
  * deserializeAws_json1_0ListEngagementInvitationsCommand
103
256
  */
104
257
  export declare const de_ListEngagementInvitationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementInvitationsCommandOutput>;
258
+ /**
259
+ * deserializeAws_json1_0ListEngagementMembersCommand
260
+ */
261
+ export declare const de_ListEngagementMembersCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementMembersCommandOutput>;
262
+ /**
263
+ * deserializeAws_json1_0ListEngagementResourceAssociationsCommand
264
+ */
265
+ export declare const de_ListEngagementResourceAssociationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementResourceAssociationsCommandOutput>;
266
+ /**
267
+ * deserializeAws_json1_0ListEngagementsCommand
268
+ */
269
+ export declare const de_ListEngagementsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListEngagementsCommandOutput>;
105
270
  /**
106
271
  * deserializeAws_json1_0ListOpportunitiesCommand
107
272
  */
108
273
  export declare const de_ListOpportunitiesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOpportunitiesCommandOutput>;
274
+ /**
275
+ * deserializeAws_json1_0ListResourceSnapshotJobsCommand
276
+ */
277
+ export declare const de_ListResourceSnapshotJobsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceSnapshotJobsCommandOutput>;
278
+ /**
279
+ * deserializeAws_json1_0ListResourceSnapshotsCommand
280
+ */
281
+ export declare const de_ListResourceSnapshotsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListResourceSnapshotsCommandOutput>;
109
282
  /**
110
283
  * deserializeAws_json1_0ListSolutionsCommand
111
284
  */
112
285
  export declare const de_ListSolutionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListSolutionsCommandOutput>;
286
+ /**
287
+ * deserializeAws_json1_0PutSellingSystemSettingsCommand
288
+ */
289
+ export declare const de_PutSellingSystemSettingsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<PutSellingSystemSettingsCommandOutput>;
113
290
  /**
114
291
  * deserializeAws_json1_0RejectEngagementInvitationCommand
115
292
  */
@@ -122,6 +299,18 @@ export declare const de_StartEngagementByAcceptingInvitationTaskCommand: (output
122
299
  * deserializeAws_json1_0StartEngagementFromOpportunityTaskCommand
123
300
  */
124
301
  export declare const de_StartEngagementFromOpportunityTaskCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartEngagementFromOpportunityTaskCommandOutput>;
302
+ /**
303
+ * deserializeAws_json1_0StartResourceSnapshotJobCommand
304
+ */
305
+ export declare const de_StartResourceSnapshotJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StartResourceSnapshotJobCommandOutput>;
306
+ /**
307
+ * deserializeAws_json1_0StopResourceSnapshotJobCommand
308
+ */
309
+ export declare const de_StopResourceSnapshotJobCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<StopResourceSnapshotJobCommandOutput>;
310
+ /**
311
+ * deserializeAws_json1_0SubmitOpportunityCommand
312
+ */
313
+ export declare const de_SubmitOpportunityCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<SubmitOpportunityCommandOutput>;
125
314
  /**
126
315
  * deserializeAws_json1_0UpdateOpportunityCommand
127
316
  */