@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,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AcceptEngagementInvitationRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface AcceptEngagementInvitationCommandInput
12
+ extends AcceptEngagementInvitationRequest {}
13
+ export interface AcceptEngagementInvitationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const AcceptEngagementInvitationCommand_base: {
16
+ new (
17
+ input: AcceptEngagementInvitationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ AcceptEngagementInvitationCommandInput,
20
+ AcceptEngagementInvitationCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: AcceptEngagementInvitationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ AcceptEngagementInvitationCommandInput,
29
+ AcceptEngagementInvitationCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class AcceptEngagementInvitationCommand extends AcceptEngagementInvitationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: AcceptEngagementInvitationRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: AcceptEngagementInvitationCommandInput;
44
+ output: AcceptEngagementInvitationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateEngagementRequest,
5
+ CreateEngagementResponse,
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 CreateEngagementCommandInput extends CreateEngagementRequest {}
15
+ export interface CreateEngagementCommandOutput
16
+ extends CreateEngagementResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateEngagementCommand_base: {
19
+ new (
20
+ input: CreateEngagementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateEngagementCommandInput,
23
+ CreateEngagementCommandOutput,
24
+ PartnerCentralSellingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateEngagementCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateEngagementCommandInput,
32
+ CreateEngagementCommandOutput,
33
+ PartnerCentralSellingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateEngagementCommand extends CreateEngagementCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: CreateEngagementRequest;
43
+ output: CreateEngagementResponse;
44
+ };
45
+ sdk: {
46
+ input: CreateEngagementCommandInput;
47
+ output: CreateEngagementCommandOutput;
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
+ CreateEngagementInvitationRequest,
5
+ CreateEngagementInvitationResponse,
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 CreateEngagementInvitationCommandInput
15
+ extends CreateEngagementInvitationRequest {}
16
+ export interface CreateEngagementInvitationCommandOutput
17
+ extends CreateEngagementInvitationResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateEngagementInvitationCommand_base: {
20
+ new (
21
+ input: CreateEngagementInvitationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateEngagementInvitationCommandInput,
24
+ CreateEngagementInvitationCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateEngagementInvitationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateEngagementInvitationCommandInput,
33
+ CreateEngagementInvitationCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateEngagementInvitationCommand extends CreateEngagementInvitationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateEngagementInvitationRequest;
44
+ output: CreateEngagementInvitationResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateEngagementInvitationCommandInput;
48
+ output: CreateEngagementInvitationCommandOutput;
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
+ CreateResourceSnapshotRequest,
5
+ CreateResourceSnapshotResponse,
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 CreateResourceSnapshotCommandInput
15
+ extends CreateResourceSnapshotRequest {}
16
+ export interface CreateResourceSnapshotCommandOutput
17
+ extends CreateResourceSnapshotResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateResourceSnapshotCommand_base: {
20
+ new (
21
+ input: CreateResourceSnapshotCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateResourceSnapshotCommandInput,
24
+ CreateResourceSnapshotCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateResourceSnapshotCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateResourceSnapshotCommandInput,
33
+ CreateResourceSnapshotCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateResourceSnapshotCommand extends CreateResourceSnapshotCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateResourceSnapshotRequest;
44
+ output: CreateResourceSnapshotResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateResourceSnapshotCommandInput;
48
+ output: CreateResourceSnapshotCommandOutput;
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
+ CreateResourceSnapshotJobRequest,
5
+ CreateResourceSnapshotJobResponse,
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 CreateResourceSnapshotJobCommandInput
15
+ extends CreateResourceSnapshotJobRequest {}
16
+ export interface CreateResourceSnapshotJobCommandOutput
17
+ extends CreateResourceSnapshotJobResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateResourceSnapshotJobCommand_base: {
20
+ new (
21
+ input: CreateResourceSnapshotJobCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateResourceSnapshotJobCommandInput,
24
+ CreateResourceSnapshotJobCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateResourceSnapshotJobCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateResourceSnapshotJobCommandInput,
33
+ CreateResourceSnapshotJobCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateResourceSnapshotJobCommand extends CreateResourceSnapshotJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateResourceSnapshotJobRequest;
44
+ output: CreateResourceSnapshotJobResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateResourceSnapshotJobCommandInput;
48
+ output: CreateResourceSnapshotJobCommandOutput;
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 { DeleteResourceSnapshotJobRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteResourceSnapshotJobCommandInput
12
+ extends DeleteResourceSnapshotJobRequest {}
13
+ export interface DeleteResourceSnapshotJobCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DeleteResourceSnapshotJobCommand_base: {
16
+ new (
17
+ input: DeleteResourceSnapshotJobCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DeleteResourceSnapshotJobCommandInput,
20
+ DeleteResourceSnapshotJobCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DeleteResourceSnapshotJobCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DeleteResourceSnapshotJobCommandInput,
29
+ DeleteResourceSnapshotJobCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DeleteResourceSnapshotJobCommand extends DeleteResourceSnapshotJobCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DeleteResourceSnapshotJobRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DeleteResourceSnapshotJobCommandInput;
44
+ output: DeleteResourceSnapshotJobCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,50 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetEngagementRequest,
5
+ GetEngagementResponse,
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 GetEngagementCommandInput extends GetEngagementRequest {}
15
+ export interface GetEngagementCommandOutput
16
+ extends GetEngagementResponse,
17
+ __MetadataBearer {}
18
+ declare const GetEngagementCommand_base: {
19
+ new (
20
+ input: GetEngagementCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetEngagementCommandInput,
23
+ GetEngagementCommandOutput,
24
+ PartnerCentralSellingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetEngagementCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetEngagementCommandInput,
32
+ GetEngagementCommandOutput,
33
+ PartnerCentralSellingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetEngagementCommand extends GetEngagementCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetEngagementRequest;
43
+ output: GetEngagementResponse;
44
+ };
45
+ sdk: {
46
+ input: GetEngagementCommandInput;
47
+ output: GetEngagementCommandOutput;
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
+ GetResourceSnapshotRequest,
5
+ GetResourceSnapshotResponse,
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 GetResourceSnapshotCommandInput
15
+ extends GetResourceSnapshotRequest {}
16
+ export interface GetResourceSnapshotCommandOutput
17
+ extends GetResourceSnapshotResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourceSnapshotCommand_base: {
20
+ new (
21
+ input: GetResourceSnapshotCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourceSnapshotCommandInput,
24
+ GetResourceSnapshotCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetResourceSnapshotCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourceSnapshotCommandInput,
33
+ GetResourceSnapshotCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourceSnapshotCommand extends GetResourceSnapshotCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourceSnapshotRequest;
44
+ output: GetResourceSnapshotResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourceSnapshotCommandInput;
48
+ output: GetResourceSnapshotCommandOutput;
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
+ GetResourceSnapshotJobRequest,
5
+ GetResourceSnapshotJobResponse,
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 GetResourceSnapshotJobCommandInput
15
+ extends GetResourceSnapshotJobRequest {}
16
+ export interface GetResourceSnapshotJobCommandOutput
17
+ extends GetResourceSnapshotJobResponse,
18
+ __MetadataBearer {}
19
+ declare const GetResourceSnapshotJobCommand_base: {
20
+ new (
21
+ input: GetResourceSnapshotJobCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetResourceSnapshotJobCommandInput,
24
+ GetResourceSnapshotJobCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetResourceSnapshotJobCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetResourceSnapshotJobCommandInput,
33
+ GetResourceSnapshotJobCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetResourceSnapshotJobCommand extends GetResourceSnapshotJobCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetResourceSnapshotJobRequest;
44
+ output: GetResourceSnapshotJobResponse;
45
+ };
46
+ sdk: {
47
+ input: GetResourceSnapshotJobCommandInput;
48
+ output: GetResourceSnapshotJobCommandOutput;
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
+ GetSellingSystemSettingsRequest,
5
+ GetSellingSystemSettingsResponse,
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 GetSellingSystemSettingsCommandInput
15
+ extends GetSellingSystemSettingsRequest {}
16
+ export interface GetSellingSystemSettingsCommandOutput
17
+ extends GetSellingSystemSettingsResponse,
18
+ __MetadataBearer {}
19
+ declare const GetSellingSystemSettingsCommand_base: {
20
+ new (
21
+ input: GetSellingSystemSettingsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetSellingSystemSettingsCommandInput,
24
+ GetSellingSystemSettingsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetSellingSystemSettingsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetSellingSystemSettingsCommandInput,
33
+ GetSellingSystemSettingsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetSellingSystemSettingsCommand extends GetSellingSystemSettingsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetSellingSystemSettingsRequest;
44
+ output: GetSellingSystemSettingsResponse;
45
+ };
46
+ sdk: {
47
+ input: GetSellingSystemSettingsCommandInput;
48
+ output: GetSellingSystemSettingsCommandOutput;
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
+ ListEngagementByAcceptingInvitationTasksRequest,
5
+ ListEngagementByAcceptingInvitationTasksResponse,
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 ListEngagementByAcceptingInvitationTasksCommandInput
15
+ extends ListEngagementByAcceptingInvitationTasksRequest {}
16
+ export interface ListEngagementByAcceptingInvitationTasksCommandOutput
17
+ extends ListEngagementByAcceptingInvitationTasksResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEngagementByAcceptingInvitationTasksCommand_base: {
20
+ new (
21
+ input: ListEngagementByAcceptingInvitationTasksCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEngagementByAcceptingInvitationTasksCommandInput,
24
+ ListEngagementByAcceptingInvitationTasksCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListEngagementByAcceptingInvitationTasksCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEngagementByAcceptingInvitationTasksCommandInput,
33
+ ListEngagementByAcceptingInvitationTasksCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEngagementByAcceptingInvitationTasksCommand extends ListEngagementByAcceptingInvitationTasksCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEngagementByAcceptingInvitationTasksRequest;
44
+ output: ListEngagementByAcceptingInvitationTasksResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEngagementByAcceptingInvitationTasksCommandInput;
48
+ output: ListEngagementByAcceptingInvitationTasksCommandOutput;
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
+ ListEngagementFromOpportunityTasksRequest,
5
+ ListEngagementFromOpportunityTasksResponse,
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 ListEngagementFromOpportunityTasksCommandInput
15
+ extends ListEngagementFromOpportunityTasksRequest {}
16
+ export interface ListEngagementFromOpportunityTasksCommandOutput
17
+ extends ListEngagementFromOpportunityTasksResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEngagementFromOpportunityTasksCommand_base: {
20
+ new (
21
+ input: ListEngagementFromOpportunityTasksCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEngagementFromOpportunityTasksCommandInput,
24
+ ListEngagementFromOpportunityTasksCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListEngagementFromOpportunityTasksCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEngagementFromOpportunityTasksCommandInput,
33
+ ListEngagementFromOpportunityTasksCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEngagementFromOpportunityTasksCommand extends ListEngagementFromOpportunityTasksCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEngagementFromOpportunityTasksRequest;
44
+ output: ListEngagementFromOpportunityTasksResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEngagementFromOpportunityTasksCommandInput;
48
+ output: ListEngagementFromOpportunityTasksCommandOutput;
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
+ ListEngagementMembersRequest,
5
+ ListEngagementMembersResponse,
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 ListEngagementMembersCommandInput
15
+ extends ListEngagementMembersRequest {}
16
+ export interface ListEngagementMembersCommandOutput
17
+ extends ListEngagementMembersResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEngagementMembersCommand_base: {
20
+ new (
21
+ input: ListEngagementMembersCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEngagementMembersCommandInput,
24
+ ListEngagementMembersCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListEngagementMembersCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEngagementMembersCommandInput,
33
+ ListEngagementMembersCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEngagementMembersCommand extends ListEngagementMembersCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEngagementMembersRequest;
44
+ output: ListEngagementMembersResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEngagementMembersCommandInput;
48
+ output: ListEngagementMembersCommandOutput;
49
+ };
50
+ };
51
+ }