@aws-sdk/client-partnercentral-account 3.942.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 (167) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +421 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1701 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/PartnerCentralAccount.js +61 -0
  12. package/dist-es/PartnerCentralAccountClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AcceptConnectionInvitationCommand.js +16 -0
  16. package/dist-es/commands/AssociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  17. package/dist-es/commands/CancelConnectionCommand.js +16 -0
  18. package/dist-es/commands/CancelConnectionInvitationCommand.js +16 -0
  19. package/dist-es/commands/CancelProfileUpdateTaskCommand.js +16 -0
  20. package/dist-es/commands/CreateConnectionInvitationCommand.js +16 -0
  21. package/dist-es/commands/CreatePartnerCommand.js +16 -0
  22. package/dist-es/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  23. package/dist-es/commands/GetAllianceLeadContactCommand.js +16 -0
  24. package/dist-es/commands/GetConnectionCommand.js +16 -0
  25. package/dist-es/commands/GetConnectionInvitationCommand.js +16 -0
  26. package/dist-es/commands/GetConnectionPreferencesCommand.js +16 -0
  27. package/dist-es/commands/GetPartnerCommand.js +16 -0
  28. package/dist-es/commands/GetProfileUpdateTaskCommand.js +16 -0
  29. package/dist-es/commands/GetProfileVisibilityCommand.js +16 -0
  30. package/dist-es/commands/ListConnectionInvitationsCommand.js +16 -0
  31. package/dist-es/commands/ListConnectionsCommand.js +16 -0
  32. package/dist-es/commands/ListPartnersCommand.js +16 -0
  33. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  34. package/dist-es/commands/PutAllianceLeadContactCommand.js +16 -0
  35. package/dist-es/commands/PutProfileVisibilityCommand.js +16 -0
  36. package/dist-es/commands/RejectConnectionInvitationCommand.js +16 -0
  37. package/dist-es/commands/SendEmailVerificationCodeCommand.js +16 -0
  38. package/dist-es/commands/StartProfileUpdateTaskCommand.js +16 -0
  39. package/dist-es/commands/TagResourceCommand.js +16 -0
  40. package/dist-es/commands/UntagResourceCommand.js +16 -0
  41. package/dist-es/commands/UpdateConnectionPreferencesCommand.js +16 -0
  42. package/dist-es/commands/index.js +27 -0
  43. package/dist-es/endpoint/EndpointParameters.js +11 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +7 -0
  48. package/dist-es/models/PartnerCentralAccountServiceException.js +8 -0
  49. package/dist-es/models/enums.js +144 -0
  50. package/dist-es/models/errors.js +117 -0
  51. package/dist-es/models/models_0.js +1 -0
  52. package/dist-es/pagination/Interfaces.js +1 -0
  53. package/dist-es/pagination/ListConnectionInvitationsPaginator.js +4 -0
  54. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  55. package/dist-es/pagination/ListPartnersPaginator.js +4 -0
  56. package/dist-es/pagination/index.js +4 -0
  57. package/dist-es/runtimeConfig.browser.js +34 -0
  58. package/dist-es/runtimeConfig.js +51 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +37 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/schemas/schemas_0.js +900 -0
  63. package/dist-types/PartnerCentralAccount.d.ts +199 -0
  64. package/dist-types/PartnerCentralAccountClient.d.ts +223 -0
  65. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  66. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  67. package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +123 -0
  68. package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +94 -0
  69. package/dist-types/commands/CancelConnectionCommand.d.ts +123 -0
  70. package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +107 -0
  71. package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +128 -0
  72. package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +111 -0
  73. package/dist-types/commands/CreatePartnerCommand.d.ts +142 -0
  74. package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +90 -0
  75. package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +98 -0
  76. package/dist-types/commands/GetConnectionCommand.d.ts +117 -0
  77. package/dist-types/commands/GetConnectionInvitationCommand.d.ts +103 -0
  78. package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +93 -0
  79. package/dist-types/commands/GetPartnerCommand.d.ts +121 -0
  80. package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +123 -0
  81. package/dist-types/commands/GetProfileVisibilityCommand.d.ts +94 -0
  82. package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +109 -0
  83. package/dist-types/commands/ListConnectionsCommand.d.ts +119 -0
  84. package/dist-types/commands/ListPartnersCommand.d.ts +96 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
  86. package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +105 -0
  87. package/dist-types/commands/PutProfileVisibilityCommand.d.ts +95 -0
  88. package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +108 -0
  89. package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +88 -0
  90. package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +147 -0
  91. package/dist-types/commands/TagResourceCommand.d.ts +96 -0
  92. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  93. package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +101 -0
  94. package/dist-types/commands/index.d.ts +27 -0
  95. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  96. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  97. package/dist-types/endpoint/ruleset.d.ts +2 -0
  98. package/dist-types/extensionConfiguration.d.ts +9 -0
  99. package/dist-types/index.d.ts +16 -0
  100. package/dist-types/models/PartnerCentralAccountServiceException.d.ts +14 -0
  101. package/dist-types/models/enums.d.ts +280 -0
  102. package/dist-types/models/errors.d.ts +137 -0
  103. package/dist-types/models/models_0.d.ts +2083 -0
  104. package/dist-types/pagination/Interfaces.d.ts +8 -0
  105. package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListPartnersPaginator.d.ts +7 -0
  108. package/dist-types/pagination/index.d.ts +4 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  110. package/dist-types/runtimeConfig.d.ts +51 -0
  111. package/dist-types/runtimeConfig.native.d.ts +50 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/schemas/schemas_0.d.ts +126 -0
  115. package/dist-types/ts3.4/PartnerCentralAccount.d.ts +478 -0
  116. package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +288 -0
  117. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  118. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/AcceptConnectionInvitationCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/CancelConnectionCommand.d.ts +50 -0
  122. package/dist-types/ts3.4/commands/CancelConnectionInvitationCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/CancelProfileUpdateTaskCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateConnectionInvitationCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreatePartnerCommand.d.ts +50 -0
  126. package/dist-types/ts3.4/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAllianceLeadContactCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
  129. package/dist-types/ts3.4/commands/GetConnectionInvitationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetConnectionPreferencesCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/GetPartnerCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/GetProfileUpdateTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/GetProfileVisibilityCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListConnectionInvitationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListPartnersCommand.d.ts +47 -0
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutAllianceLeadContactCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/PutProfileVisibilityCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RejectConnectionInvitationCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/SendEmailVerificationCodeCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/StartProfileUpdateTaskCommand.d.ts +51 -0
  143. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  145. package/dist-types/ts3.4/commands/UpdateConnectionPreferencesCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +177 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +74 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +544 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListConnectionInvitationsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListPartnersPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  161. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  162. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  163. package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
  164. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  165. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  166. package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
  167. package/package.json +99 -0
@@ -0,0 +1,478 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ AcceptConnectionInvitationCommandInput,
4
+ AcceptConnectionInvitationCommandOutput,
5
+ } from "./commands/AcceptConnectionInvitationCommand";
6
+ import {
7
+ AssociateAwsTrainingCertificationEmailDomainCommandInput,
8
+ AssociateAwsTrainingCertificationEmailDomainCommandOutput,
9
+ } from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
10
+ import {
11
+ CancelConnectionCommandInput,
12
+ CancelConnectionCommandOutput,
13
+ } from "./commands/CancelConnectionCommand";
14
+ import {
15
+ CancelConnectionInvitationCommandInput,
16
+ CancelConnectionInvitationCommandOutput,
17
+ } from "./commands/CancelConnectionInvitationCommand";
18
+ import {
19
+ CancelProfileUpdateTaskCommandInput,
20
+ CancelProfileUpdateTaskCommandOutput,
21
+ } from "./commands/CancelProfileUpdateTaskCommand";
22
+ import {
23
+ CreateConnectionInvitationCommandInput,
24
+ CreateConnectionInvitationCommandOutput,
25
+ } from "./commands/CreateConnectionInvitationCommand";
26
+ import {
27
+ CreatePartnerCommandInput,
28
+ CreatePartnerCommandOutput,
29
+ } from "./commands/CreatePartnerCommand";
30
+ import {
31
+ DisassociateAwsTrainingCertificationEmailDomainCommandInput,
32
+ DisassociateAwsTrainingCertificationEmailDomainCommandOutput,
33
+ } from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
34
+ import {
35
+ GetAllianceLeadContactCommandInput,
36
+ GetAllianceLeadContactCommandOutput,
37
+ } from "./commands/GetAllianceLeadContactCommand";
38
+ import {
39
+ GetConnectionCommandInput,
40
+ GetConnectionCommandOutput,
41
+ } from "./commands/GetConnectionCommand";
42
+ import {
43
+ GetConnectionInvitationCommandInput,
44
+ GetConnectionInvitationCommandOutput,
45
+ } from "./commands/GetConnectionInvitationCommand";
46
+ import {
47
+ GetConnectionPreferencesCommandInput,
48
+ GetConnectionPreferencesCommandOutput,
49
+ } from "./commands/GetConnectionPreferencesCommand";
50
+ import {
51
+ GetPartnerCommandInput,
52
+ GetPartnerCommandOutput,
53
+ } from "./commands/GetPartnerCommand";
54
+ import {
55
+ GetProfileUpdateTaskCommandInput,
56
+ GetProfileUpdateTaskCommandOutput,
57
+ } from "./commands/GetProfileUpdateTaskCommand";
58
+ import {
59
+ GetProfileVisibilityCommandInput,
60
+ GetProfileVisibilityCommandOutput,
61
+ } from "./commands/GetProfileVisibilityCommand";
62
+ import {
63
+ ListConnectionInvitationsCommandInput,
64
+ ListConnectionInvitationsCommandOutput,
65
+ } from "./commands/ListConnectionInvitationsCommand";
66
+ import {
67
+ ListConnectionsCommandInput,
68
+ ListConnectionsCommandOutput,
69
+ } from "./commands/ListConnectionsCommand";
70
+ import {
71
+ ListPartnersCommandInput,
72
+ ListPartnersCommandOutput,
73
+ } from "./commands/ListPartnersCommand";
74
+ import {
75
+ ListTagsForResourceCommandInput,
76
+ ListTagsForResourceCommandOutput,
77
+ } from "./commands/ListTagsForResourceCommand";
78
+ import {
79
+ PutAllianceLeadContactCommandInput,
80
+ PutAllianceLeadContactCommandOutput,
81
+ } from "./commands/PutAllianceLeadContactCommand";
82
+ import {
83
+ PutProfileVisibilityCommandInput,
84
+ PutProfileVisibilityCommandOutput,
85
+ } from "./commands/PutProfileVisibilityCommand";
86
+ import {
87
+ RejectConnectionInvitationCommandInput,
88
+ RejectConnectionInvitationCommandOutput,
89
+ } from "./commands/RejectConnectionInvitationCommand";
90
+ import {
91
+ SendEmailVerificationCodeCommandInput,
92
+ SendEmailVerificationCodeCommandOutput,
93
+ } from "./commands/SendEmailVerificationCodeCommand";
94
+ import {
95
+ StartProfileUpdateTaskCommandInput,
96
+ StartProfileUpdateTaskCommandOutput,
97
+ } from "./commands/StartProfileUpdateTaskCommand";
98
+ import {
99
+ TagResourceCommandInput,
100
+ TagResourceCommandOutput,
101
+ } from "./commands/TagResourceCommand";
102
+ import {
103
+ UntagResourceCommandInput,
104
+ UntagResourceCommandOutput,
105
+ } from "./commands/UntagResourceCommand";
106
+ import {
107
+ UpdateConnectionPreferencesCommandInput,
108
+ UpdateConnectionPreferencesCommandOutput,
109
+ } from "./commands/UpdateConnectionPreferencesCommand";
110
+ import { PartnerCentralAccountClient } from "./PartnerCentralAccountClient";
111
+ export interface PartnerCentralAccount {
112
+ acceptConnectionInvitation(
113
+ args: AcceptConnectionInvitationCommandInput,
114
+ options?: __HttpHandlerOptions
115
+ ): Promise<AcceptConnectionInvitationCommandOutput>;
116
+ acceptConnectionInvitation(
117
+ args: AcceptConnectionInvitationCommandInput,
118
+ cb: (err: any, data?: AcceptConnectionInvitationCommandOutput) => void
119
+ ): void;
120
+ acceptConnectionInvitation(
121
+ args: AcceptConnectionInvitationCommandInput,
122
+ options: __HttpHandlerOptions,
123
+ cb: (err: any, data?: AcceptConnectionInvitationCommandOutput) => void
124
+ ): void;
125
+ associateAwsTrainingCertificationEmailDomain(
126
+ args: AssociateAwsTrainingCertificationEmailDomainCommandInput,
127
+ options?: __HttpHandlerOptions
128
+ ): Promise<AssociateAwsTrainingCertificationEmailDomainCommandOutput>;
129
+ associateAwsTrainingCertificationEmailDomain(
130
+ args: AssociateAwsTrainingCertificationEmailDomainCommandInput,
131
+ cb: (
132
+ err: any,
133
+ data?: AssociateAwsTrainingCertificationEmailDomainCommandOutput
134
+ ) => void
135
+ ): void;
136
+ associateAwsTrainingCertificationEmailDomain(
137
+ args: AssociateAwsTrainingCertificationEmailDomainCommandInput,
138
+ options: __HttpHandlerOptions,
139
+ cb: (
140
+ err: any,
141
+ data?: AssociateAwsTrainingCertificationEmailDomainCommandOutput
142
+ ) => void
143
+ ): void;
144
+ cancelConnection(
145
+ args: CancelConnectionCommandInput,
146
+ options?: __HttpHandlerOptions
147
+ ): Promise<CancelConnectionCommandOutput>;
148
+ cancelConnection(
149
+ args: CancelConnectionCommandInput,
150
+ cb: (err: any, data?: CancelConnectionCommandOutput) => void
151
+ ): void;
152
+ cancelConnection(
153
+ args: CancelConnectionCommandInput,
154
+ options: __HttpHandlerOptions,
155
+ cb: (err: any, data?: CancelConnectionCommandOutput) => void
156
+ ): void;
157
+ cancelConnectionInvitation(
158
+ args: CancelConnectionInvitationCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<CancelConnectionInvitationCommandOutput>;
161
+ cancelConnectionInvitation(
162
+ args: CancelConnectionInvitationCommandInput,
163
+ cb: (err: any, data?: CancelConnectionInvitationCommandOutput) => void
164
+ ): void;
165
+ cancelConnectionInvitation(
166
+ args: CancelConnectionInvitationCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: CancelConnectionInvitationCommandOutput) => void
169
+ ): void;
170
+ cancelProfileUpdateTask(
171
+ args: CancelProfileUpdateTaskCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<CancelProfileUpdateTaskCommandOutput>;
174
+ cancelProfileUpdateTask(
175
+ args: CancelProfileUpdateTaskCommandInput,
176
+ cb: (err: any, data?: CancelProfileUpdateTaskCommandOutput) => void
177
+ ): void;
178
+ cancelProfileUpdateTask(
179
+ args: CancelProfileUpdateTaskCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: CancelProfileUpdateTaskCommandOutput) => void
182
+ ): void;
183
+ createConnectionInvitation(
184
+ args: CreateConnectionInvitationCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<CreateConnectionInvitationCommandOutput>;
187
+ createConnectionInvitation(
188
+ args: CreateConnectionInvitationCommandInput,
189
+ cb: (err: any, data?: CreateConnectionInvitationCommandOutput) => void
190
+ ): void;
191
+ createConnectionInvitation(
192
+ args: CreateConnectionInvitationCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: CreateConnectionInvitationCommandOutput) => void
195
+ ): void;
196
+ createPartner(
197
+ args: CreatePartnerCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<CreatePartnerCommandOutput>;
200
+ createPartner(
201
+ args: CreatePartnerCommandInput,
202
+ cb: (err: any, data?: CreatePartnerCommandOutput) => void
203
+ ): void;
204
+ createPartner(
205
+ args: CreatePartnerCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: CreatePartnerCommandOutput) => void
208
+ ): void;
209
+ disassociateAwsTrainingCertificationEmailDomain(
210
+ args: DisassociateAwsTrainingCertificationEmailDomainCommandInput,
211
+ options?: __HttpHandlerOptions
212
+ ): Promise<DisassociateAwsTrainingCertificationEmailDomainCommandOutput>;
213
+ disassociateAwsTrainingCertificationEmailDomain(
214
+ args: DisassociateAwsTrainingCertificationEmailDomainCommandInput,
215
+ cb: (
216
+ err: any,
217
+ data?: DisassociateAwsTrainingCertificationEmailDomainCommandOutput
218
+ ) => void
219
+ ): void;
220
+ disassociateAwsTrainingCertificationEmailDomain(
221
+ args: DisassociateAwsTrainingCertificationEmailDomainCommandInput,
222
+ options: __HttpHandlerOptions,
223
+ cb: (
224
+ err: any,
225
+ data?: DisassociateAwsTrainingCertificationEmailDomainCommandOutput
226
+ ) => void
227
+ ): void;
228
+ getAllianceLeadContact(
229
+ args: GetAllianceLeadContactCommandInput,
230
+ options?: __HttpHandlerOptions
231
+ ): Promise<GetAllianceLeadContactCommandOutput>;
232
+ getAllianceLeadContact(
233
+ args: GetAllianceLeadContactCommandInput,
234
+ cb: (err: any, data?: GetAllianceLeadContactCommandOutput) => void
235
+ ): void;
236
+ getAllianceLeadContact(
237
+ args: GetAllianceLeadContactCommandInput,
238
+ options: __HttpHandlerOptions,
239
+ cb: (err: any, data?: GetAllianceLeadContactCommandOutput) => void
240
+ ): void;
241
+ getConnection(
242
+ args: GetConnectionCommandInput,
243
+ options?: __HttpHandlerOptions
244
+ ): Promise<GetConnectionCommandOutput>;
245
+ getConnection(
246
+ args: GetConnectionCommandInput,
247
+ cb: (err: any, data?: GetConnectionCommandOutput) => void
248
+ ): void;
249
+ getConnection(
250
+ args: GetConnectionCommandInput,
251
+ options: __HttpHandlerOptions,
252
+ cb: (err: any, data?: GetConnectionCommandOutput) => void
253
+ ): void;
254
+ getConnectionInvitation(
255
+ args: GetConnectionInvitationCommandInput,
256
+ options?: __HttpHandlerOptions
257
+ ): Promise<GetConnectionInvitationCommandOutput>;
258
+ getConnectionInvitation(
259
+ args: GetConnectionInvitationCommandInput,
260
+ cb: (err: any, data?: GetConnectionInvitationCommandOutput) => void
261
+ ): void;
262
+ getConnectionInvitation(
263
+ args: GetConnectionInvitationCommandInput,
264
+ options: __HttpHandlerOptions,
265
+ cb: (err: any, data?: GetConnectionInvitationCommandOutput) => void
266
+ ): void;
267
+ getConnectionPreferences(
268
+ args: GetConnectionPreferencesCommandInput,
269
+ options?: __HttpHandlerOptions
270
+ ): Promise<GetConnectionPreferencesCommandOutput>;
271
+ getConnectionPreferences(
272
+ args: GetConnectionPreferencesCommandInput,
273
+ cb: (err: any, data?: GetConnectionPreferencesCommandOutput) => void
274
+ ): void;
275
+ getConnectionPreferences(
276
+ args: GetConnectionPreferencesCommandInput,
277
+ options: __HttpHandlerOptions,
278
+ cb: (err: any, data?: GetConnectionPreferencesCommandOutput) => void
279
+ ): void;
280
+ getPartner(
281
+ args: GetPartnerCommandInput,
282
+ options?: __HttpHandlerOptions
283
+ ): Promise<GetPartnerCommandOutput>;
284
+ getPartner(
285
+ args: GetPartnerCommandInput,
286
+ cb: (err: any, data?: GetPartnerCommandOutput) => void
287
+ ): void;
288
+ getPartner(
289
+ args: GetPartnerCommandInput,
290
+ options: __HttpHandlerOptions,
291
+ cb: (err: any, data?: GetPartnerCommandOutput) => void
292
+ ): void;
293
+ getProfileUpdateTask(
294
+ args: GetProfileUpdateTaskCommandInput,
295
+ options?: __HttpHandlerOptions
296
+ ): Promise<GetProfileUpdateTaskCommandOutput>;
297
+ getProfileUpdateTask(
298
+ args: GetProfileUpdateTaskCommandInput,
299
+ cb: (err: any, data?: GetProfileUpdateTaskCommandOutput) => void
300
+ ): void;
301
+ getProfileUpdateTask(
302
+ args: GetProfileUpdateTaskCommandInput,
303
+ options: __HttpHandlerOptions,
304
+ cb: (err: any, data?: GetProfileUpdateTaskCommandOutput) => void
305
+ ): void;
306
+ getProfileVisibility(
307
+ args: GetProfileVisibilityCommandInput,
308
+ options?: __HttpHandlerOptions
309
+ ): Promise<GetProfileVisibilityCommandOutput>;
310
+ getProfileVisibility(
311
+ args: GetProfileVisibilityCommandInput,
312
+ cb: (err: any, data?: GetProfileVisibilityCommandOutput) => void
313
+ ): void;
314
+ getProfileVisibility(
315
+ args: GetProfileVisibilityCommandInput,
316
+ options: __HttpHandlerOptions,
317
+ cb: (err: any, data?: GetProfileVisibilityCommandOutput) => void
318
+ ): void;
319
+ listConnectionInvitations(
320
+ args: ListConnectionInvitationsCommandInput,
321
+ options?: __HttpHandlerOptions
322
+ ): Promise<ListConnectionInvitationsCommandOutput>;
323
+ listConnectionInvitations(
324
+ args: ListConnectionInvitationsCommandInput,
325
+ cb: (err: any, data?: ListConnectionInvitationsCommandOutput) => void
326
+ ): void;
327
+ listConnectionInvitations(
328
+ args: ListConnectionInvitationsCommandInput,
329
+ options: __HttpHandlerOptions,
330
+ cb: (err: any, data?: ListConnectionInvitationsCommandOutput) => void
331
+ ): void;
332
+ listConnections(
333
+ args: ListConnectionsCommandInput,
334
+ options?: __HttpHandlerOptions
335
+ ): Promise<ListConnectionsCommandOutput>;
336
+ listConnections(
337
+ args: ListConnectionsCommandInput,
338
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void
339
+ ): void;
340
+ listConnections(
341
+ args: ListConnectionsCommandInput,
342
+ options: __HttpHandlerOptions,
343
+ cb: (err: any, data?: ListConnectionsCommandOutput) => void
344
+ ): void;
345
+ listPartners(
346
+ args: ListPartnersCommandInput,
347
+ options?: __HttpHandlerOptions
348
+ ): Promise<ListPartnersCommandOutput>;
349
+ listPartners(
350
+ args: ListPartnersCommandInput,
351
+ cb: (err: any, data?: ListPartnersCommandOutput) => void
352
+ ): void;
353
+ listPartners(
354
+ args: ListPartnersCommandInput,
355
+ options: __HttpHandlerOptions,
356
+ cb: (err: any, data?: ListPartnersCommandOutput) => void
357
+ ): void;
358
+ listTagsForResource(
359
+ args: ListTagsForResourceCommandInput,
360
+ options?: __HttpHandlerOptions
361
+ ): Promise<ListTagsForResourceCommandOutput>;
362
+ listTagsForResource(
363
+ args: ListTagsForResourceCommandInput,
364
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
365
+ ): void;
366
+ listTagsForResource(
367
+ args: ListTagsForResourceCommandInput,
368
+ options: __HttpHandlerOptions,
369
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
370
+ ): void;
371
+ putAllianceLeadContact(
372
+ args: PutAllianceLeadContactCommandInput,
373
+ options?: __HttpHandlerOptions
374
+ ): Promise<PutAllianceLeadContactCommandOutput>;
375
+ putAllianceLeadContact(
376
+ args: PutAllianceLeadContactCommandInput,
377
+ cb: (err: any, data?: PutAllianceLeadContactCommandOutput) => void
378
+ ): void;
379
+ putAllianceLeadContact(
380
+ args: PutAllianceLeadContactCommandInput,
381
+ options: __HttpHandlerOptions,
382
+ cb: (err: any, data?: PutAllianceLeadContactCommandOutput) => void
383
+ ): void;
384
+ putProfileVisibility(
385
+ args: PutProfileVisibilityCommandInput,
386
+ options?: __HttpHandlerOptions
387
+ ): Promise<PutProfileVisibilityCommandOutput>;
388
+ putProfileVisibility(
389
+ args: PutProfileVisibilityCommandInput,
390
+ cb: (err: any, data?: PutProfileVisibilityCommandOutput) => void
391
+ ): void;
392
+ putProfileVisibility(
393
+ args: PutProfileVisibilityCommandInput,
394
+ options: __HttpHandlerOptions,
395
+ cb: (err: any, data?: PutProfileVisibilityCommandOutput) => void
396
+ ): void;
397
+ rejectConnectionInvitation(
398
+ args: RejectConnectionInvitationCommandInput,
399
+ options?: __HttpHandlerOptions
400
+ ): Promise<RejectConnectionInvitationCommandOutput>;
401
+ rejectConnectionInvitation(
402
+ args: RejectConnectionInvitationCommandInput,
403
+ cb: (err: any, data?: RejectConnectionInvitationCommandOutput) => void
404
+ ): void;
405
+ rejectConnectionInvitation(
406
+ args: RejectConnectionInvitationCommandInput,
407
+ options: __HttpHandlerOptions,
408
+ cb: (err: any, data?: RejectConnectionInvitationCommandOutput) => void
409
+ ): void;
410
+ sendEmailVerificationCode(
411
+ args: SendEmailVerificationCodeCommandInput,
412
+ options?: __HttpHandlerOptions
413
+ ): Promise<SendEmailVerificationCodeCommandOutput>;
414
+ sendEmailVerificationCode(
415
+ args: SendEmailVerificationCodeCommandInput,
416
+ cb: (err: any, data?: SendEmailVerificationCodeCommandOutput) => void
417
+ ): void;
418
+ sendEmailVerificationCode(
419
+ args: SendEmailVerificationCodeCommandInput,
420
+ options: __HttpHandlerOptions,
421
+ cb: (err: any, data?: SendEmailVerificationCodeCommandOutput) => void
422
+ ): void;
423
+ startProfileUpdateTask(
424
+ args: StartProfileUpdateTaskCommandInput,
425
+ options?: __HttpHandlerOptions
426
+ ): Promise<StartProfileUpdateTaskCommandOutput>;
427
+ startProfileUpdateTask(
428
+ args: StartProfileUpdateTaskCommandInput,
429
+ cb: (err: any, data?: StartProfileUpdateTaskCommandOutput) => void
430
+ ): void;
431
+ startProfileUpdateTask(
432
+ args: StartProfileUpdateTaskCommandInput,
433
+ options: __HttpHandlerOptions,
434
+ cb: (err: any, data?: StartProfileUpdateTaskCommandOutput) => void
435
+ ): void;
436
+ tagResource(
437
+ args: TagResourceCommandInput,
438
+ options?: __HttpHandlerOptions
439
+ ): Promise<TagResourceCommandOutput>;
440
+ tagResource(
441
+ args: TagResourceCommandInput,
442
+ cb: (err: any, data?: TagResourceCommandOutput) => void
443
+ ): void;
444
+ tagResource(
445
+ args: TagResourceCommandInput,
446
+ options: __HttpHandlerOptions,
447
+ cb: (err: any, data?: TagResourceCommandOutput) => void
448
+ ): void;
449
+ untagResource(
450
+ args: UntagResourceCommandInput,
451
+ options?: __HttpHandlerOptions
452
+ ): Promise<UntagResourceCommandOutput>;
453
+ untagResource(
454
+ args: UntagResourceCommandInput,
455
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
456
+ ): void;
457
+ untagResource(
458
+ args: UntagResourceCommandInput,
459
+ options: __HttpHandlerOptions,
460
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
461
+ ): void;
462
+ updateConnectionPreferences(
463
+ args: UpdateConnectionPreferencesCommandInput,
464
+ options?: __HttpHandlerOptions
465
+ ): Promise<UpdateConnectionPreferencesCommandOutput>;
466
+ updateConnectionPreferences(
467
+ args: UpdateConnectionPreferencesCommandInput,
468
+ cb: (err: any, data?: UpdateConnectionPreferencesCommandOutput) => void
469
+ ): void;
470
+ updateConnectionPreferences(
471
+ args: UpdateConnectionPreferencesCommandInput,
472
+ options: __HttpHandlerOptions,
473
+ cb: (err: any, data?: UpdateConnectionPreferencesCommandOutput) => void
474
+ ): void;
475
+ }
476
+ export declare class PartnerCentralAccount
477
+ extends PartnerCentralAccountClient
478
+ implements PartnerCentralAccount {}