@aws-sdk/client-partnercentral-selling 3.692.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 (155) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +357 -0
  3. package/dist-cjs/PartnerCentralSelling.js +39 -0
  4. package/dist-cjs/PartnerCentralSellingClient.js +50 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/AssignOpportunityCommand.js +27 -0
  8. package/dist-cjs/commands/AssociateOpportunityCommand.js +26 -0
  9. package/dist-cjs/commands/CreateOpportunityCommand.js +27 -0
  10. package/dist-cjs/commands/DisassociateOpportunityCommand.js +26 -0
  11. package/dist-cjs/commands/GetAwsOpportunitySummaryCommand.js +27 -0
  12. package/dist-cjs/commands/GetEngagementInvitationCommand.js +27 -0
  13. package/dist-cjs/commands/GetOpportunityCommand.js +27 -0
  14. package/dist-cjs/commands/ListEngagementInvitationsCommand.js +27 -0
  15. package/dist-cjs/commands/ListOpportunitiesCommand.js +27 -0
  16. package/dist-cjs/commands/ListSolutionsCommand.js +26 -0
  17. package/dist-cjs/commands/RejectEngagementInvitationCommand.js +26 -0
  18. package/dist-cjs/commands/StartEngagementByAcceptingInvitationTaskCommand.js +26 -0
  19. package/dist-cjs/commands/StartEngagementFromOpportunityTaskCommand.js +26 -0
  20. package/dist-cjs/commands/UpdateOpportunityCommand.js +27 -0
  21. package/dist-cjs/commands/index.js +17 -0
  22. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  23. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  24. package/dist-cjs/endpoint/ruleset.js +7 -0
  25. package/dist-cjs/extensionConfiguration.js +2 -0
  26. package/dist-cjs/index.js +11 -0
  27. package/dist-cjs/models/PartnerCentralSellingServiceException.js +12 -0
  28. package/dist-cjs/models/index.js +4 -0
  29. package/dist-cjs/models/models_0.js +1097 -0
  30. package/dist-cjs/pagination/Interfaces.js +2 -0
  31. package/dist-cjs/pagination/ListEngagementInvitationsPaginator.js +7 -0
  32. package/dist-cjs/pagination/ListOpportunitiesPaginator.js +7 -0
  33. package/dist-cjs/pagination/ListSolutionsPaginator.js +7 -0
  34. package/dist-cjs/pagination/index.js +7 -0
  35. package/dist-cjs/protocols/Aws_json1_0.js +732 -0
  36. package/dist-cjs/runtimeConfig.browser.js +39 -0
  37. package/dist-cjs/runtimeConfig.js +50 -0
  38. package/dist-cjs/runtimeConfig.native.js +15 -0
  39. package/dist-cjs/runtimeConfig.shared.js +34 -0
  40. package/dist-cjs/runtimeExtensions.js +25 -0
  41. package/dist-es/PartnerCentralSelling.js +35 -0
  42. package/dist-es/PartnerCentralSellingClient.js +46 -0
  43. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  44. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  45. package/dist-es/commands/AssignOpportunityCommand.js +23 -0
  46. package/dist-es/commands/AssociateOpportunityCommand.js +22 -0
  47. package/dist-es/commands/CreateOpportunityCommand.js +23 -0
  48. package/dist-es/commands/DisassociateOpportunityCommand.js +22 -0
  49. package/dist-es/commands/GetAwsOpportunitySummaryCommand.js +23 -0
  50. package/dist-es/commands/GetEngagementInvitationCommand.js +23 -0
  51. package/dist-es/commands/GetOpportunityCommand.js +23 -0
  52. package/dist-es/commands/ListEngagementInvitationsCommand.js +23 -0
  53. package/dist-es/commands/ListOpportunitiesCommand.js +23 -0
  54. package/dist-es/commands/ListSolutionsCommand.js +22 -0
  55. package/dist-es/commands/RejectEngagementInvitationCommand.js +22 -0
  56. package/dist-es/commands/StartEngagementByAcceptingInvitationTaskCommand.js +22 -0
  57. package/dist-es/commands/StartEngagementFromOpportunityTaskCommand.js +22 -0
  58. package/dist-es/commands/UpdateOpportunityCommand.js +23 -0
  59. package/dist-es/commands/index.js +14 -0
  60. package/dist-es/endpoint/EndpointParameters.js +14 -0
  61. package/dist-es/endpoint/endpointResolver.js +14 -0
  62. package/dist-es/endpoint/ruleset.js +4 -0
  63. package/dist-es/extensionConfiguration.js +1 -0
  64. package/dist-es/index.js +6 -0
  65. package/dist-es/models/PartnerCentralSellingServiceException.js +8 -0
  66. package/dist-es/models/index.js +1 -0
  67. package/dist-es/models/models_0.js +1055 -0
  68. package/dist-es/pagination/Interfaces.js +1 -0
  69. package/dist-es/pagination/ListEngagementInvitationsPaginator.js +4 -0
  70. package/dist-es/pagination/ListOpportunitiesPaginator.js +4 -0
  71. package/dist-es/pagination/ListSolutionsPaginator.js +4 -0
  72. package/dist-es/pagination/index.js +4 -0
  73. package/dist-es/protocols/Aws_json1_0.js +701 -0
  74. package/dist-es/runtimeConfig.browser.js +34 -0
  75. package/dist-es/runtimeConfig.js +45 -0
  76. package/dist-es/runtimeConfig.native.js +11 -0
  77. package/dist-es/runtimeConfig.shared.js +30 -0
  78. package/dist-es/runtimeExtensions.js +21 -0
  79. package/dist-types/PartnerCentralSelling.d.ts +147 -0
  80. package/dist-types/PartnerCentralSellingClient.d.ts +222 -0
  81. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  82. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  83. package/dist-types/commands/AssignOpportunityCommand.d.ts +117 -0
  84. package/dist-types/commands/AssociateOpportunityCommand.d.ts +145 -0
  85. package/dist-types/commands/CreateOpportunityCommand.d.ts +244 -0
  86. package/dist-types/commands/DisassociateOpportunityCommand.d.ts +115 -0
  87. package/dist-types/commands/GetAwsOpportunitySummaryCommand.d.ts +167 -0
  88. package/dist-types/commands/GetEngagementInvitationCommand.d.ts +156 -0
  89. package/dist-types/commands/GetOpportunityCommand.d.ts +227 -0
  90. package/dist-types/commands/ListEngagementInvitationsCommand.d.ts +134 -0
  91. package/dist-types/commands/ListOpportunitiesCommand.d.ts +197 -0
  92. package/dist-types/commands/ListSolutionsCommand.d.ts +123 -0
  93. package/dist-types/commands/RejectEngagementInvitationCommand.d.ts +104 -0
  94. package/dist-types/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +127 -0
  95. package/dist-types/commands/StartEngagementFromOpportunityTaskCommand.d.ts +130 -0
  96. package/dist-types/commands/UpdateOpportunityCommand.d.ts +214 -0
  97. package/dist-types/commands/index.d.ts +14 -0
  98. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  99. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  100. package/dist-types/endpoint/ruleset.d.ts +2 -0
  101. package/dist-types/extensionConfiguration.d.ts +9 -0
  102. package/dist-types/index.d.ts +53 -0
  103. package/dist-types/models/PartnerCentralSellingServiceException.d.ts +14 -0
  104. package/dist-types/models/index.d.ts +1 -0
  105. package/dist-types/models/models_0.d.ts +4383 -0
  106. package/dist-types/pagination/Interfaces.d.ts +8 -0
  107. package/dist-types/pagination/ListEngagementInvitationsPaginator.d.ts +7 -0
  108. package/dist-types/pagination/ListOpportunitiesPaginator.d.ts +7 -0
  109. package/dist-types/pagination/ListSolutionsPaginator.d.ts +7 -0
  110. package/dist-types/pagination/index.d.ts +4 -0
  111. package/dist-types/protocols/Aws_json1_0.d.ts +128 -0
  112. package/dist-types/runtimeConfig.browser.d.ts +48 -0
  113. package/dist-types/runtimeConfig.d.ts +48 -0
  114. package/dist-types/runtimeConfig.native.d.ts +47 -0
  115. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  116. package/dist-types/runtimeExtensions.d.ts +17 -0
  117. package/dist-types/ts3.4/PartnerCentralSelling.d.ts +257 -0
  118. package/dist-types/ts3.4/PartnerCentralSellingClient.d.ts +205 -0
  119. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  120. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  121. package/dist-types/ts3.4/commands/AssignOpportunityCommand.d.ts +46 -0
  122. package/dist-types/ts3.4/commands/AssociateOpportunityCommand.d.ts +46 -0
  123. package/dist-types/ts3.4/commands/CreateOpportunityCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/DisassociateOpportunityCommand.d.ts +47 -0
  125. package/dist-types/ts3.4/commands/GetAwsOpportunitySummaryCommand.d.ts +51 -0
  126. package/dist-types/ts3.4/commands/GetEngagementInvitationCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetOpportunityCommand.d.ts +50 -0
  128. package/dist-types/ts3.4/commands/ListEngagementInvitationsCommand.d.ts +51 -0
  129. package/dist-types/ts3.4/commands/ListOpportunitiesCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/ListSolutionsCommand.d.ts +50 -0
  131. package/dist-types/ts3.4/commands/RejectEngagementInvitationCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/StartEngagementByAcceptingInvitationTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/StartEngagementFromOpportunityTaskCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/UpdateOpportunityCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/index.d.ts +14 -0
  136. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  137. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  138. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  139. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  140. package/dist-types/ts3.4/index.d.ts +9 -0
  141. package/dist-types/ts3.4/models/PartnerCentralSellingServiceException.d.ts +9 -0
  142. package/dist-types/ts3.4/models/index.d.ts +1 -0
  143. package/dist-types/ts3.4/models/models_0.d.ts +1419 -0
  144. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  145. package/dist-types/ts3.4/pagination/ListEngagementInvitationsPaginator.d.ts +11 -0
  146. package/dist-types/ts3.4/pagination/ListOpportunitiesPaginator.d.ts +11 -0
  147. package/dist-types/ts3.4/pagination/ListSolutionsPaginator.d.ts +11 -0
  148. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  149. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +173 -0
  150. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +95 -0
  151. package/dist-types/ts3.4/runtimeConfig.d.ts +96 -0
  152. package/dist-types/ts3.4/runtimeConfig.native.d.ts +89 -0
  153. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  154. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  155. package/package.json +103 -0
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListOpportunitiesRequest,
5
+ ListOpportunitiesResponse,
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 ListOpportunitiesCommandInput
15
+ extends ListOpportunitiesRequest {}
16
+ export interface ListOpportunitiesCommandOutput
17
+ extends ListOpportunitiesResponse,
18
+ __MetadataBearer {}
19
+ declare const ListOpportunitiesCommand_base: {
20
+ new (
21
+ input: ListOpportunitiesCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListOpportunitiesCommandInput,
24
+ ListOpportunitiesCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListOpportunitiesCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListOpportunitiesCommandInput,
33
+ ListOpportunitiesCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListOpportunitiesCommand extends ListOpportunitiesCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListOpportunitiesRequest;
44
+ output: ListOpportunitiesResponse;
45
+ };
46
+ sdk: {
47
+ input: ListOpportunitiesCommandInput;
48
+ output: ListOpportunitiesCommandOutput;
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
+ ListSolutionsRequest,
5
+ ListSolutionsResponse,
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 ListSolutionsCommandInput extends ListSolutionsRequest {}
15
+ export interface ListSolutionsCommandOutput
16
+ extends ListSolutionsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListSolutionsCommand_base: {
19
+ new (
20
+ input: ListSolutionsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListSolutionsCommandInput,
23
+ ListSolutionsCommandOutput,
24
+ PartnerCentralSellingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: ListSolutionsCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListSolutionsCommandInput,
32
+ ListSolutionsCommandOutput,
33
+ PartnerCentralSellingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListSolutionsCommand extends ListSolutionsCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: ListSolutionsRequest;
43
+ output: ListSolutionsResponse;
44
+ };
45
+ sdk: {
46
+ input: ListSolutionsCommandInput;
47
+ output: ListSolutionsCommandOutput;
48
+ };
49
+ };
50
+ }
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { RejectEngagementInvitationRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface RejectEngagementInvitationCommandInput
12
+ extends RejectEngagementInvitationRequest {}
13
+ export interface RejectEngagementInvitationCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const RejectEngagementInvitationCommand_base: {
16
+ new (
17
+ input: RejectEngagementInvitationCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ RejectEngagementInvitationCommandInput,
20
+ RejectEngagementInvitationCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: RejectEngagementInvitationCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ RejectEngagementInvitationCommandInput,
29
+ RejectEngagementInvitationCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class RejectEngagementInvitationCommand extends RejectEngagementInvitationCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: RejectEngagementInvitationRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: RejectEngagementInvitationCommandInput;
44
+ output: RejectEngagementInvitationCommandOutput;
45
+ };
46
+ };
47
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ StartEngagementByAcceptingInvitationTaskRequest,
5
+ StartEngagementByAcceptingInvitationTaskResponse,
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 StartEngagementByAcceptingInvitationTaskCommandInput
15
+ extends StartEngagementByAcceptingInvitationTaskRequest {}
16
+ export interface StartEngagementByAcceptingInvitationTaskCommandOutput
17
+ extends StartEngagementByAcceptingInvitationTaskResponse,
18
+ __MetadataBearer {}
19
+ declare const StartEngagementByAcceptingInvitationTaskCommand_base: {
20
+ new (
21
+ input: StartEngagementByAcceptingInvitationTaskCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartEngagementByAcceptingInvitationTaskCommandInput,
24
+ StartEngagementByAcceptingInvitationTaskCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: StartEngagementByAcceptingInvitationTaskCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartEngagementByAcceptingInvitationTaskCommandInput,
33
+ StartEngagementByAcceptingInvitationTaskCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartEngagementByAcceptingInvitationTaskCommand extends StartEngagementByAcceptingInvitationTaskCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartEngagementByAcceptingInvitationTaskRequest;
44
+ output: StartEngagementByAcceptingInvitationTaskResponse;
45
+ };
46
+ sdk: {
47
+ input: StartEngagementByAcceptingInvitationTaskCommandInput;
48
+ output: StartEngagementByAcceptingInvitationTaskCommandOutput;
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
+ StartEngagementFromOpportunityTaskRequest,
5
+ StartEngagementFromOpportunityTaskResponse,
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 StartEngagementFromOpportunityTaskCommandInput
15
+ extends StartEngagementFromOpportunityTaskRequest {}
16
+ export interface StartEngagementFromOpportunityTaskCommandOutput
17
+ extends StartEngagementFromOpportunityTaskResponse,
18
+ __MetadataBearer {}
19
+ declare const StartEngagementFromOpportunityTaskCommand_base: {
20
+ new (
21
+ input: StartEngagementFromOpportunityTaskCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ StartEngagementFromOpportunityTaskCommandInput,
24
+ StartEngagementFromOpportunityTaskCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: StartEngagementFromOpportunityTaskCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ StartEngagementFromOpportunityTaskCommandInput,
33
+ StartEngagementFromOpportunityTaskCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class StartEngagementFromOpportunityTaskCommand extends StartEngagementFromOpportunityTaskCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: StartEngagementFromOpportunityTaskRequest;
44
+ output: StartEngagementFromOpportunityTaskResponse;
45
+ };
46
+ sdk: {
47
+ input: StartEngagementFromOpportunityTaskCommandInput;
48
+ output: StartEngagementFromOpportunityTaskCommandOutput;
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
+ UpdateOpportunityRequest,
5
+ UpdateOpportunityResponse,
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 UpdateOpportunityCommandInput
15
+ extends UpdateOpportunityRequest {}
16
+ export interface UpdateOpportunityCommandOutput
17
+ extends UpdateOpportunityResponse,
18
+ __MetadataBearer {}
19
+ declare const UpdateOpportunityCommand_base: {
20
+ new (
21
+ input: UpdateOpportunityCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ UpdateOpportunityCommandInput,
24
+ UpdateOpportunityCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: UpdateOpportunityCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ UpdateOpportunityCommandInput,
33
+ UpdateOpportunityCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class UpdateOpportunityCommand extends UpdateOpportunityCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: UpdateOpportunityRequest;
44
+ output: UpdateOpportunityResponse;
45
+ };
46
+ sdk: {
47
+ input: UpdateOpportunityCommandInput;
48
+ output: UpdateOpportunityCommandOutput;
49
+ };
50
+ };
51
+ }
@@ -0,0 +1,14 @@
1
+ export * from "./AssignOpportunityCommand";
2
+ export * from "./AssociateOpportunityCommand";
3
+ export * from "./CreateOpportunityCommand";
4
+ export * from "./DisassociateOpportunityCommand";
5
+ export * from "./GetAwsOpportunitySummaryCommand";
6
+ export * from "./GetEngagementInvitationCommand";
7
+ export * from "./GetOpportunityCommand";
8
+ export * from "./ListEngagementInvitationsCommand";
9
+ export * from "./ListOpportunitiesCommand";
10
+ export * from "./ListSolutionsCommand";
11
+ export * from "./RejectEngagementInvitationCommand";
12
+ export * from "./StartEngagementByAcceptingInvitationTaskCommand";
13
+ export * from "./StartEngagementFromOpportunityTaskCommand";
14
+ export * from "./UpdateOpportunityCommand";
@@ -0,0 +1,51 @@
1
+ import {
2
+ Endpoint,
3
+ EndpointParameters as __EndpointParameters,
4
+ EndpointV2,
5
+ Provider,
6
+ } from "@smithy/types";
7
+ export interface ClientInputEndpointParameters {
8
+ region?: string | Provider<string>;
9
+ useDualstackEndpoint?: boolean | Provider<boolean>;
10
+ useFipsEndpoint?: boolean | Provider<boolean>;
11
+ endpoint?:
12
+ | string
13
+ | Provider<string>
14
+ | Endpoint
15
+ | Provider<Endpoint>
16
+ | EndpointV2
17
+ | Provider<EndpointV2>;
18
+ }
19
+ export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
20
+ defaultSigningName: string;
21
+ };
22
+ export declare const resolveClientEndpointParameters: <T>(
23
+ options: T & ClientInputEndpointParameters
24
+ ) => T &
25
+ ClientInputEndpointParameters & {
26
+ defaultSigningName: string;
27
+ };
28
+ export declare const commonParams: {
29
+ readonly UseFIPS: {
30
+ readonly type: "builtInParams";
31
+ readonly name: "useFipsEndpoint";
32
+ };
33
+ readonly Endpoint: {
34
+ readonly type: "builtInParams";
35
+ readonly name: "endpoint";
36
+ };
37
+ readonly Region: {
38
+ readonly type: "builtInParams";
39
+ readonly name: "region";
40
+ };
41
+ readonly UseDualStack: {
42
+ readonly type: "builtInParams";
43
+ readonly name: "useDualstackEndpoint";
44
+ };
45
+ };
46
+ export interface EndpointParameters extends __EndpointParameters {
47
+ Region?: string;
48
+ UseDualStack?: boolean;
49
+ UseFIPS?: boolean;
50
+ Endpoint?: string;
51
+ }
@@ -0,0 +1,8 @@
1
+ import { EndpointV2, Logger } from "@smithy/types";
2
+ import { EndpointParameters } from "./EndpointParameters";
3
+ export declare const defaultEndpointResolver: (
4
+ endpointParams: EndpointParameters,
5
+ context?: {
6
+ logger?: Logger;
7
+ }
8
+ ) => EndpointV2;
@@ -0,0 +1,2 @@
1
+ import { RuleSetObject } from "@smithy/types";
2
+ export declare const ruleSet: RuleSetObject;
@@ -0,0 +1,9 @@
1
+ import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
2
+ import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
3
+ import { DefaultExtensionConfiguration } from "@smithy/types";
4
+ import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
5
+ export interface PartnerCentralSellingExtensionConfiguration
6
+ extends HttpHandlerExtensionConfiguration,
7
+ DefaultExtensionConfiguration,
8
+ AwsRegionExtensionConfiguration,
9
+ HttpAuthExtensionConfiguration {}
@@ -0,0 +1,9 @@
1
+ export * from "./PartnerCentralSellingClient";
2
+ export * from "./PartnerCentralSelling";
3
+ export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
4
+ export { RuntimeExtension } from "./runtimeExtensions";
5
+ export { PartnerCentralSellingExtensionConfiguration } from "./extensionConfiguration";
6
+ export * from "./commands";
7
+ export * from "./pagination";
8
+ export * from "./models";
9
+ export { PartnerCentralSellingServiceException } from "./models/PartnerCentralSellingServiceException";
@@ -0,0 +1,9 @@
1
+ import {
2
+ ServiceException as __ServiceException,
3
+ ServiceExceptionOptions as __ServiceExceptionOptions,
4
+ } from "@smithy/smithy-client";
5
+ export { __ServiceExceptionOptions };
6
+ export { __ServiceException };
7
+ export declare class PartnerCentralSellingServiceException extends __ServiceException {
8
+ constructor(options: __ServiceExceptionOptions);
9
+ }
@@ -0,0 +1 @@
1
+ export * from "./models_0";