@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,205 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ AssignOpportunityCommandInput,
50
+ AssignOpportunityCommandOutput,
51
+ } from "./commands/AssignOpportunityCommand";
52
+ import {
53
+ AssociateOpportunityCommandInput,
54
+ AssociateOpportunityCommandOutput,
55
+ } from "./commands/AssociateOpportunityCommand";
56
+ import {
57
+ CreateOpportunityCommandInput,
58
+ CreateOpportunityCommandOutput,
59
+ } from "./commands/CreateOpportunityCommand";
60
+ import {
61
+ DisassociateOpportunityCommandInput,
62
+ DisassociateOpportunityCommandOutput,
63
+ } from "./commands/DisassociateOpportunityCommand";
64
+ import {
65
+ GetAwsOpportunitySummaryCommandInput,
66
+ GetAwsOpportunitySummaryCommandOutput,
67
+ } from "./commands/GetAwsOpportunitySummaryCommand";
68
+ import {
69
+ GetEngagementInvitationCommandInput,
70
+ GetEngagementInvitationCommandOutput,
71
+ } from "./commands/GetEngagementInvitationCommand";
72
+ import {
73
+ GetOpportunityCommandInput,
74
+ GetOpportunityCommandOutput,
75
+ } from "./commands/GetOpportunityCommand";
76
+ import {
77
+ ListEngagementInvitationsCommandInput,
78
+ ListEngagementInvitationsCommandOutput,
79
+ } from "./commands/ListEngagementInvitationsCommand";
80
+ import {
81
+ ListOpportunitiesCommandInput,
82
+ ListOpportunitiesCommandOutput,
83
+ } from "./commands/ListOpportunitiesCommand";
84
+ import {
85
+ ListSolutionsCommandInput,
86
+ ListSolutionsCommandOutput,
87
+ } from "./commands/ListSolutionsCommand";
88
+ import {
89
+ RejectEngagementInvitationCommandInput,
90
+ RejectEngagementInvitationCommandOutput,
91
+ } from "./commands/RejectEngagementInvitationCommand";
92
+ import {
93
+ StartEngagementByAcceptingInvitationTaskCommandInput,
94
+ StartEngagementByAcceptingInvitationTaskCommandOutput,
95
+ } from "./commands/StartEngagementByAcceptingInvitationTaskCommand";
96
+ import {
97
+ StartEngagementFromOpportunityTaskCommandInput,
98
+ StartEngagementFromOpportunityTaskCommandOutput,
99
+ } from "./commands/StartEngagementFromOpportunityTaskCommand";
100
+ import {
101
+ UpdateOpportunityCommandInput,
102
+ UpdateOpportunityCommandOutput,
103
+ } from "./commands/UpdateOpportunityCommand";
104
+ import {
105
+ ClientInputEndpointParameters,
106
+ ClientResolvedEndpointParameters,
107
+ EndpointParameters,
108
+ } from "./endpoint/EndpointParameters";
109
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
110
+ export { __Client };
111
+ export type ServiceInputTypes =
112
+ | AssignOpportunityCommandInput
113
+ | AssociateOpportunityCommandInput
114
+ | CreateOpportunityCommandInput
115
+ | DisassociateOpportunityCommandInput
116
+ | GetAwsOpportunitySummaryCommandInput
117
+ | GetEngagementInvitationCommandInput
118
+ | GetOpportunityCommandInput
119
+ | ListEngagementInvitationsCommandInput
120
+ | ListOpportunitiesCommandInput
121
+ | ListSolutionsCommandInput
122
+ | RejectEngagementInvitationCommandInput
123
+ | StartEngagementByAcceptingInvitationTaskCommandInput
124
+ | StartEngagementFromOpportunityTaskCommandInput
125
+ | UpdateOpportunityCommandInput;
126
+ export type ServiceOutputTypes =
127
+ | AssignOpportunityCommandOutput
128
+ | AssociateOpportunityCommandOutput
129
+ | CreateOpportunityCommandOutput
130
+ | DisassociateOpportunityCommandOutput
131
+ | GetAwsOpportunitySummaryCommandOutput
132
+ | GetEngagementInvitationCommandOutput
133
+ | GetOpportunityCommandOutput
134
+ | ListEngagementInvitationsCommandOutput
135
+ | ListOpportunitiesCommandOutput
136
+ | ListSolutionsCommandOutput
137
+ | RejectEngagementInvitationCommandOutput
138
+ | StartEngagementByAcceptingInvitationTaskCommandOutput
139
+ | StartEngagementFromOpportunityTaskCommandOutput
140
+ | UpdateOpportunityCommandOutput;
141
+ export interface ClientDefaults
142
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
143
+ requestHandler?: __HttpHandlerUserInput;
144
+ sha256?: __ChecksumConstructor | __HashConstructor;
145
+ urlParser?: __UrlParser;
146
+ bodyLengthChecker?: __BodyLengthCalculator;
147
+ streamCollector?: __StreamCollector;
148
+ base64Decoder?: __Decoder;
149
+ base64Encoder?: __Encoder;
150
+ utf8Decoder?: __Decoder;
151
+ utf8Encoder?: __Encoder;
152
+ runtime?: string;
153
+ disableHostPrefix?: boolean;
154
+ serviceId?: string;
155
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
156
+ useFipsEndpoint?: boolean | __Provider<boolean>;
157
+ region?: string | __Provider<string>;
158
+ defaultUserAgentProvider?: Provider<__UserAgent>;
159
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
160
+ maxAttempts?: number | __Provider<number>;
161
+ retryMode?: string | __Provider<string>;
162
+ logger?: __Logger;
163
+ extensions?: RuntimeExtension[];
164
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
165
+ }
166
+ export type PartnerCentralSellingClientConfigType = Partial<
167
+ __SmithyConfiguration<__HttpHandlerOptions>
168
+ > &
169
+ ClientDefaults &
170
+ UserAgentInputConfig &
171
+ RetryInputConfig &
172
+ RegionInputConfig &
173
+ HostHeaderInputConfig &
174
+ EndpointInputConfig<EndpointParameters> &
175
+ HttpAuthSchemeInputConfig &
176
+ ClientInputEndpointParameters;
177
+ export interface PartnerCentralSellingClientConfig
178
+ extends PartnerCentralSellingClientConfigType {}
179
+ export type PartnerCentralSellingClientResolvedConfigType =
180
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
181
+ Required<ClientDefaults> &
182
+ RuntimeExtensionsConfig &
183
+ UserAgentResolvedConfig &
184
+ RetryResolvedConfig &
185
+ RegionResolvedConfig &
186
+ HostHeaderResolvedConfig &
187
+ EndpointResolvedConfig<EndpointParameters> &
188
+ HttpAuthSchemeResolvedConfig &
189
+ ClientResolvedEndpointParameters;
190
+ export interface PartnerCentralSellingClientResolvedConfig
191
+ extends PartnerCentralSellingClientResolvedConfigType {}
192
+ export declare class PartnerCentralSellingClient extends __Client<
193
+ __HttpHandlerOptions,
194
+ ServiceInputTypes,
195
+ ServiceOutputTypes,
196
+ PartnerCentralSellingClientResolvedConfig
197
+ > {
198
+ readonly config: PartnerCentralSellingClientResolvedConfig;
199
+ constructor(
200
+ ...[
201
+ configuration,
202
+ ]: __CheckOptionalClientConfig<PartnerCentralSellingClientConfig>
203
+ );
204
+ destroy(): void;
205
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { PartnerCentralSellingHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: PartnerCentralSellingHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): PartnerCentralSellingHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: PartnerCentralSellingHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { PartnerCentralSellingClientResolvedConfig } from "../PartnerCentralSellingClient";
14
+ export interface PartnerCentralSellingHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface PartnerCentralSellingHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ PartnerCentralSellingClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ PartnerCentralSellingHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultPartnerCentralSellingHttpAuthSchemeParametersProvider: (
26
+ config: PartnerCentralSellingClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<PartnerCentralSellingHttpAuthSchemeParameters>;
30
+ export interface PartnerCentralSellingHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<PartnerCentralSellingHttpAuthSchemeParameters> {}
32
+ export declare const defaultPartnerCentralSellingHttpAuthSchemeProvider: PartnerCentralSellingHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: PartnerCentralSellingHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: PartnerCentralSellingHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AssignOpportunityRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface AssignOpportunityCommandInput
12
+ extends AssignOpportunityRequest {}
13
+ export interface AssignOpportunityCommandOutput extends __MetadataBearer {}
14
+ declare const AssignOpportunityCommand_base: {
15
+ new (
16
+ input: AssignOpportunityCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ AssignOpportunityCommandInput,
19
+ AssignOpportunityCommandOutput,
20
+ PartnerCentralSellingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: AssignOpportunityCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ AssignOpportunityCommandInput,
28
+ AssignOpportunityCommandOutput,
29
+ PartnerCentralSellingClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class AssignOpportunityCommand extends AssignOpportunityCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: AssignOpportunityRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: AssignOpportunityCommandInput;
43
+ output: AssignOpportunityCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,46 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { AssociateOpportunityRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface AssociateOpportunityCommandInput
12
+ extends AssociateOpportunityRequest {}
13
+ export interface AssociateOpportunityCommandOutput extends __MetadataBearer {}
14
+ declare const AssociateOpportunityCommand_base: {
15
+ new (
16
+ input: AssociateOpportunityCommandInput
17
+ ): import("@smithy/smithy-client").CommandImpl<
18
+ AssociateOpportunityCommandInput,
19
+ AssociateOpportunityCommandOutput,
20
+ PartnerCentralSellingClientResolvedConfig,
21
+ ServiceInputTypes,
22
+ ServiceOutputTypes
23
+ >;
24
+ new (
25
+ __0_0: AssociateOpportunityCommandInput
26
+ ): import("@smithy/smithy-client").CommandImpl<
27
+ AssociateOpportunityCommandInput,
28
+ AssociateOpportunityCommandOutput,
29
+ PartnerCentralSellingClientResolvedConfig,
30
+ ServiceInputTypes,
31
+ ServiceOutputTypes
32
+ >;
33
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
34
+ };
35
+ export declare class AssociateOpportunityCommand extends AssociateOpportunityCommand_base {
36
+ protected static __types: {
37
+ api: {
38
+ input: AssociateOpportunityRequest;
39
+ output: {};
40
+ };
41
+ sdk: {
42
+ input: AssociateOpportunityCommandInput;
43
+ output: AssociateOpportunityCommandOutput;
44
+ };
45
+ };
46
+ }
@@ -0,0 +1,51 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateOpportunityRequest,
5
+ CreateOpportunityResponse,
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 CreateOpportunityCommandInput
15
+ extends CreateOpportunityRequest {}
16
+ export interface CreateOpportunityCommandOutput
17
+ extends CreateOpportunityResponse,
18
+ __MetadataBearer {}
19
+ declare const CreateOpportunityCommand_base: {
20
+ new (
21
+ input: CreateOpportunityCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ CreateOpportunityCommandInput,
24
+ CreateOpportunityCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: CreateOpportunityCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ CreateOpportunityCommandInput,
33
+ CreateOpportunityCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class CreateOpportunityCommand extends CreateOpportunityCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: CreateOpportunityRequest;
44
+ output: CreateOpportunityResponse;
45
+ };
46
+ sdk: {
47
+ input: CreateOpportunityCommandInput;
48
+ output: CreateOpportunityCommandOutput;
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 { DisassociateOpportunityRequest } from "../models/models_0";
4
+ import {
5
+ PartnerCentralSellingClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PartnerCentralSellingClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DisassociateOpportunityCommandInput
12
+ extends DisassociateOpportunityRequest {}
13
+ export interface DisassociateOpportunityCommandOutput
14
+ extends __MetadataBearer {}
15
+ declare const DisassociateOpportunityCommand_base: {
16
+ new (
17
+ input: DisassociateOpportunityCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ DisassociateOpportunityCommandInput,
20
+ DisassociateOpportunityCommandOutput,
21
+ PartnerCentralSellingClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: DisassociateOpportunityCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ DisassociateOpportunityCommandInput,
29
+ DisassociateOpportunityCommandOutput,
30
+ PartnerCentralSellingClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class DisassociateOpportunityCommand extends DisassociateOpportunityCommand_base {
37
+ protected static __types: {
38
+ api: {
39
+ input: DisassociateOpportunityRequest;
40
+ output: {};
41
+ };
42
+ sdk: {
43
+ input: DisassociateOpportunityCommandInput;
44
+ output: DisassociateOpportunityCommandOutput;
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
+ GetAwsOpportunitySummaryRequest,
5
+ GetAwsOpportunitySummaryResponse,
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 GetAwsOpportunitySummaryCommandInput
15
+ extends GetAwsOpportunitySummaryRequest {}
16
+ export interface GetAwsOpportunitySummaryCommandOutput
17
+ extends GetAwsOpportunitySummaryResponse,
18
+ __MetadataBearer {}
19
+ declare const GetAwsOpportunitySummaryCommand_base: {
20
+ new (
21
+ input: GetAwsOpportunitySummaryCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetAwsOpportunitySummaryCommandInput,
24
+ GetAwsOpportunitySummaryCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetAwsOpportunitySummaryCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetAwsOpportunitySummaryCommandInput,
33
+ GetAwsOpportunitySummaryCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetAwsOpportunitySummaryCommand extends GetAwsOpportunitySummaryCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetAwsOpportunitySummaryRequest;
44
+ output: GetAwsOpportunitySummaryResponse;
45
+ };
46
+ sdk: {
47
+ input: GetAwsOpportunitySummaryCommandInput;
48
+ output: GetAwsOpportunitySummaryCommandOutput;
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
+ GetEngagementInvitationRequest,
5
+ GetEngagementInvitationResponse,
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 GetEngagementInvitationCommandInput
15
+ extends GetEngagementInvitationRequest {}
16
+ export interface GetEngagementInvitationCommandOutput
17
+ extends GetEngagementInvitationResponse,
18
+ __MetadataBearer {}
19
+ declare const GetEngagementInvitationCommand_base: {
20
+ new (
21
+ input: GetEngagementInvitationCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetEngagementInvitationCommandInput,
24
+ GetEngagementInvitationCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetEngagementInvitationCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetEngagementInvitationCommandInput,
33
+ GetEngagementInvitationCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetEngagementInvitationCommand extends GetEngagementInvitationCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: GetEngagementInvitationRequest;
44
+ output: GetEngagementInvitationResponse;
45
+ };
46
+ sdk: {
47
+ input: GetEngagementInvitationCommandInput;
48
+ output: GetEngagementInvitationCommandOutput;
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
+ GetOpportunityRequest,
5
+ GetOpportunityResponse,
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 GetOpportunityCommandInput extends GetOpportunityRequest {}
15
+ export interface GetOpportunityCommandOutput
16
+ extends GetOpportunityResponse,
17
+ __MetadataBearer {}
18
+ declare const GetOpportunityCommand_base: {
19
+ new (
20
+ input: GetOpportunityCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ GetOpportunityCommandInput,
23
+ GetOpportunityCommandOutput,
24
+ PartnerCentralSellingClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: GetOpportunityCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ GetOpportunityCommandInput,
32
+ GetOpportunityCommandOutput,
33
+ PartnerCentralSellingClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class GetOpportunityCommand extends GetOpportunityCommand_base {
40
+ protected static __types: {
41
+ api: {
42
+ input: GetOpportunityRequest;
43
+ output: GetOpportunityResponse;
44
+ };
45
+ sdk: {
46
+ input: GetOpportunityCommandInput;
47
+ output: GetOpportunityCommandOutput;
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
+ ListEngagementInvitationsRequest,
5
+ ListEngagementInvitationsResponse,
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 ListEngagementInvitationsCommandInput
15
+ extends ListEngagementInvitationsRequest {}
16
+ export interface ListEngagementInvitationsCommandOutput
17
+ extends ListEngagementInvitationsResponse,
18
+ __MetadataBearer {}
19
+ declare const ListEngagementInvitationsCommand_base: {
20
+ new (
21
+ input: ListEngagementInvitationsCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListEngagementInvitationsCommandInput,
24
+ ListEngagementInvitationsCommandOutput,
25
+ PartnerCentralSellingClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListEngagementInvitationsCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListEngagementInvitationsCommandInput,
33
+ ListEngagementInvitationsCommandOutput,
34
+ PartnerCentralSellingClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListEngagementInvitationsCommand extends ListEngagementInvitationsCommand_base {
41
+ protected static __types: {
42
+ api: {
43
+ input: ListEngagementInvitationsRequest;
44
+ output: ListEngagementInvitationsResponse;
45
+ };
46
+ sdk: {
47
+ input: ListEngagementInvitationsCommandInput;
48
+ output: ListEngagementInvitationsCommandOutput;
49
+ };
50
+ };
51
+ }