@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,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListEngagementResourceAssociationsRequest,
5
+ ListEngagementResourceAssociationsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralSellingClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralSellingClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEngagementResourceAssociationsCommandInput
15
+ extends ListEngagementResourceAssociationsRequest {}
16
+ export interface ListEngagementResourceAssociationsCommandOutput
17
+ extends ListEngagementResourceAssociationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEngagementResourceAssociationsCommand_base: {
20
+ new (
21
+ input: ListEngagementResourceAssociationsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEngagementResourceAssociationsCommandInput,
24
+ ListEngagementResourceAssociationsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListEngagementResourceAssociationsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEngagementResourceAssociationsCommandInput,
33
+ ListEngagementResourceAssociationsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEngagementResourceAssociationsCommand extends ListEngagementResourceAssociationsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEngagementResourceAssociationsRequest;
44
+ output: ListEngagementResourceAssociationsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEngagementResourceAssociationsCommandInput;
48
+ output: ListEngagementResourceAssociationsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListEngagementsRequest,
5
+ ListEngagementsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralSellingClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralSellingClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListEngagementsCommandInput extends ListEngagementsRequest {}
15
+ export interface ListEngagementsCommandOutput
16
+ extends ListEngagementsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListEngagementsCommand_base: {
19
+ new (
20
+ input: ListEngagementsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListEngagementsCommandInput,
23
+ ListEngagementsCommandOutput,
24
+ PartnerCentralSellingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListEngagementsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListEngagementsCommandInput,
32
+ ListEngagementsCommandOutput,
33
+ PartnerCentralSellingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListEngagementsCommand extends ListEngagementsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListEngagementsRequest;
43
+ output: ListEngagementsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListEngagementsCommandInput;
47
+ output: ListEngagementsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListResourceSnapshotJobsRequest,
5
+ ListResourceSnapshotJobsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralSellingClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralSellingClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListResourceSnapshotJobsCommandInput
15
+ extends ListResourceSnapshotJobsRequest {}
16
+ export interface ListResourceSnapshotJobsCommandOutput
17
+ extends ListResourceSnapshotJobsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListResourceSnapshotJobsCommand_base: {
20
+ new (
21
+ input: ListResourceSnapshotJobsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListResourceSnapshotJobsCommandInput,
24
+ ListResourceSnapshotJobsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListResourceSnapshotJobsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListResourceSnapshotJobsCommandInput,
33
+ ListResourceSnapshotJobsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListResourceSnapshotJobsCommand extends ListResourceSnapshotJobsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListResourceSnapshotJobsRequest;
44
+ output: ListResourceSnapshotJobsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListResourceSnapshotJobsCommandInput;
48
+ output: ListResourceSnapshotJobsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListResourceSnapshotsRequest,
5
+ ListResourceSnapshotsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralSellingClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralSellingClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListResourceSnapshotsCommandInput
15
+ extends ListResourceSnapshotsRequest {}
16
+ export interface ListResourceSnapshotsCommandOutput
17
+ extends ListResourceSnapshotsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListResourceSnapshotsCommand_base: {
20
+ new (
21
+ input: ListResourceSnapshotsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListResourceSnapshotsCommandInput,
24
+ ListResourceSnapshotsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListResourceSnapshotsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListResourceSnapshotsCommandInput,
33
+ ListResourceSnapshotsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListResourceSnapshotsCommand extends ListResourceSnapshotsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListResourceSnapshotsRequest;
44
+ output: ListResourceSnapshotsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListResourceSnapshotsCommandInput;
48
+ output: ListResourceSnapshotsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ PutSellingSystemSettingsRequest,
5
+ PutSellingSystemSettingsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PartnerCentralSellingClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PartnerCentralSellingClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface PutSellingSystemSettingsCommandInput
15
+ extends PutSellingSystemSettingsRequest {}
16
+ export interface PutSellingSystemSettingsCommandOutput
17
+ extends PutSellingSystemSettingsResponse,
18
+ __MetadataBearer {}
19
+ declare const PutSellingSystemSettingsCommand_base: {
20
+ new (
21
+ input: PutSellingSystemSettingsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ PutSellingSystemSettingsCommandInput,
24
+ PutSellingSystemSettingsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: PutSellingSystemSettingsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ PutSellingSystemSettingsCommandInput,
33
+ PutSellingSystemSettingsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class PutSellingSystemSettingsCommand extends PutSellingSystemSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: PutSellingSystemSettingsRequest;
44
+ output: PutSellingSystemSettingsResponse;
45
+ };
46
+ sdk: {
47
+ input: PutSellingSystemSettingsCommandInput;
48
+ output: PutSellingSystemSettingsCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { StartResourceSnapshotJobRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface StartResourceSnapshotJobCommandInput
12
+ extends StartResourceSnapshotJobRequest {}
13
+ export interface StartResourceSnapshotJobCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const StartResourceSnapshotJobCommand_base: {
16
+ new (
17
+ input: StartResourceSnapshotJobCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ StartResourceSnapshotJobCommandInput,
20
+ StartResourceSnapshotJobCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: StartResourceSnapshotJobCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ StartResourceSnapshotJobCommandInput,
29
+ StartResourceSnapshotJobCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class StartResourceSnapshotJobCommand extends StartResourceSnapshotJobCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: StartResourceSnapshotJobRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: StartResourceSnapshotJobCommandInput;
44
+ output: StartResourceSnapshotJobCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { StopResourceSnapshotJobRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface StopResourceSnapshotJobCommandInput
12
+ extends StopResourceSnapshotJobRequest {}
13
+ export interface StopResourceSnapshotJobCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const StopResourceSnapshotJobCommand_base: {
16
+ new (
17
+ input: StopResourceSnapshotJobCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ StopResourceSnapshotJobCommandInput,
20
+ StopResourceSnapshotJobCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: StopResourceSnapshotJobCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ StopResourceSnapshotJobCommandInput,
29
+ StopResourceSnapshotJobCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class StopResourceSnapshotJobCommand extends StopResourceSnapshotJobCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: StopResourceSnapshotJobRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: StopResourceSnapshotJobCommandInput;
44
+ output: StopResourceSnapshotJobCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { SubmitOpportunityRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface SubmitOpportunityCommandInput
12
+ extends SubmitOpportunityRequest {}
13
+ export interface SubmitOpportunityCommandOutput extends __MetadataBearer {}
14
+ declare const SubmitOpportunityCommand_base: {
15
+ new (
16
+ input: SubmitOpportunityCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ SubmitOpportunityCommandInput,
19
+ SubmitOpportunityCommandOutput,
20
+ PartnerCentralSellingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: SubmitOpportunityCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ SubmitOpportunityCommandInput,
28
+ SubmitOpportunityCommandOutput,
29
+ PartnerCentralSellingClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class SubmitOpportunityCommand extends SubmitOpportunityCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: SubmitOpportunityRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: SubmitOpportunityCommandInput;
43
+ output: SubmitOpportunityCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -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";