@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.
- package/LICENSE +201 -0
- package/README.md +421 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/endpoint/endpointResolver.js +18 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/index.js +1701 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +56 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +41 -0
- package/dist-es/PartnerCentralAccount.js +61 -0
- package/dist-es/PartnerCentralAccountClient.js +50 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/AcceptConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/AssociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
- package/dist-es/commands/CancelConnectionCommand.js +16 -0
- package/dist-es/commands/CancelConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/CancelProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/CreateConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/CreatePartnerCommand.js +16 -0
- package/dist-es/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
- package/dist-es/commands/GetAllianceLeadContactCommand.js +16 -0
- package/dist-es/commands/GetConnectionCommand.js +16 -0
- package/dist-es/commands/GetConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/GetConnectionPreferencesCommand.js +16 -0
- package/dist-es/commands/GetPartnerCommand.js +16 -0
- package/dist-es/commands/GetProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/GetProfileVisibilityCommand.js +16 -0
- package/dist-es/commands/ListConnectionInvitationsCommand.js +16 -0
- package/dist-es/commands/ListConnectionsCommand.js +16 -0
- package/dist-es/commands/ListPartnersCommand.js +16 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
- package/dist-es/commands/PutAllianceLeadContactCommand.js +16 -0
- package/dist-es/commands/PutProfileVisibilityCommand.js +16 -0
- package/dist-es/commands/RejectConnectionInvitationCommand.js +16 -0
- package/dist-es/commands/SendEmailVerificationCodeCommand.js +16 -0
- package/dist-es/commands/StartProfileUpdateTaskCommand.js +16 -0
- package/dist-es/commands/TagResourceCommand.js +16 -0
- package/dist-es/commands/UntagResourceCommand.js +16 -0
- package/dist-es/commands/UpdateConnectionPreferencesCommand.js +16 -0
- package/dist-es/commands/index.js +27 -0
- package/dist-es/endpoint/EndpointParameters.js +11 -0
- package/dist-es/endpoint/endpointResolver.js +14 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +7 -0
- package/dist-es/models/PartnerCentralAccountServiceException.js +8 -0
- package/dist-es/models/enums.js +144 -0
- package/dist-es/models/errors.js +117 -0
- package/dist-es/models/models_0.js +1 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListConnectionInvitationsPaginator.js +4 -0
- package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
- package/dist-es/pagination/ListPartnersPaginator.js +4 -0
- package/dist-es/pagination/index.js +4 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +51 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +37 -0
- package/dist-es/runtimeExtensions.js +9 -0
- package/dist-es/schemas/schemas_0.js +900 -0
- package/dist-types/PartnerCentralAccount.d.ts +199 -0
- package/dist-types/PartnerCentralAccountClient.d.ts +223 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
- package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +123 -0
- package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +94 -0
- package/dist-types/commands/CancelConnectionCommand.d.ts +123 -0
- package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +107 -0
- package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +128 -0
- package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +111 -0
- package/dist-types/commands/CreatePartnerCommand.d.ts +142 -0
- package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +90 -0
- package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +98 -0
- package/dist-types/commands/GetConnectionCommand.d.ts +117 -0
- package/dist-types/commands/GetConnectionInvitationCommand.d.ts +103 -0
- package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +93 -0
- package/dist-types/commands/GetPartnerCommand.d.ts +121 -0
- package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +123 -0
- package/dist-types/commands/GetProfileVisibilityCommand.d.ts +94 -0
- package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +109 -0
- package/dist-types/commands/ListConnectionsCommand.d.ts +119 -0
- package/dist-types/commands/ListPartnersCommand.d.ts +96 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
- package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +105 -0
- package/dist-types/commands/PutProfileVisibilityCommand.d.ts +95 -0
- package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +108 -0
- package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +88 -0
- package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +147 -0
- package/dist-types/commands/TagResourceCommand.d.ts +96 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
- package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +101 -0
- package/dist-types/commands/index.d.ts +27 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +16 -0
- package/dist-types/models/PartnerCentralAccountServiceException.d.ts +14 -0
- package/dist-types/models/enums.d.ts +280 -0
- package/dist-types/models/errors.d.ts +137 -0
- package/dist-types/models/models_0.d.ts +2083 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
- package/dist-types/pagination/ListPartnersPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +4 -0
- package/dist-types/runtimeConfig.browser.d.ts +51 -0
- package/dist-types/runtimeConfig.d.ts +51 -0
- package/dist-types/runtimeConfig.native.d.ts +50 -0
- package/dist-types/runtimeConfig.shared.d.ts +22 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/schemas/schemas_0.d.ts +126 -0
- package/dist-types/ts3.4/PartnerCentralAccount.d.ts +478 -0
- package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +288 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
- package/dist-types/ts3.4/commands/AcceptConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelConnectionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/CancelConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CancelProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreateConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/CreatePartnerCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetAllianceLeadContactCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/GetConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetConnectionPreferencesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetPartnerCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/GetProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetProfileVisibilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectionInvitationsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/ListPartnersCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutAllianceLeadContactCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/PutProfileVisibilityCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RejectConnectionInvitationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/SendEmailVerificationCodeCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/StartProfileUpdateTaskCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/UpdateConnectionPreferencesCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +27 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +11 -0
- package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/enums.d.ts +177 -0
- package/dist-types/ts3.4/models/errors.d.ts +74 -0
- package/dist-types/ts3.4/models/models_0.d.ts +544 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListConnectionInvitationsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListPartnersPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +4 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
- package/package.json +99 -0
|
@@ -0,0 +1,288 @@
|
|
|
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
|
+
ClientProtocol,
|
|
34
|
+
Decoder as __Decoder,
|
|
35
|
+
Encoder as __Encoder,
|
|
36
|
+
HashConstructor as __HashConstructor,
|
|
37
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
38
|
+
HttpRequest,
|
|
39
|
+
HttpResponse,
|
|
40
|
+
Logger as __Logger,
|
|
41
|
+
Provider as __Provider,
|
|
42
|
+
Provider,
|
|
43
|
+
StreamCollector as __StreamCollector,
|
|
44
|
+
UrlParser as __UrlParser,
|
|
45
|
+
UserAgent as __UserAgent,
|
|
46
|
+
} from "@smithy/types";
|
|
47
|
+
import {
|
|
48
|
+
HttpAuthSchemeInputConfig,
|
|
49
|
+
HttpAuthSchemeResolvedConfig,
|
|
50
|
+
} from "./auth/httpAuthSchemeProvider";
|
|
51
|
+
import {
|
|
52
|
+
AcceptConnectionInvitationCommandInput,
|
|
53
|
+
AcceptConnectionInvitationCommandOutput,
|
|
54
|
+
} from "./commands/AcceptConnectionInvitationCommand";
|
|
55
|
+
import {
|
|
56
|
+
AssociateAwsTrainingCertificationEmailDomainCommandInput,
|
|
57
|
+
AssociateAwsTrainingCertificationEmailDomainCommandOutput,
|
|
58
|
+
} from "./commands/AssociateAwsTrainingCertificationEmailDomainCommand";
|
|
59
|
+
import {
|
|
60
|
+
CancelConnectionCommandInput,
|
|
61
|
+
CancelConnectionCommandOutput,
|
|
62
|
+
} from "./commands/CancelConnectionCommand";
|
|
63
|
+
import {
|
|
64
|
+
CancelConnectionInvitationCommandInput,
|
|
65
|
+
CancelConnectionInvitationCommandOutput,
|
|
66
|
+
} from "./commands/CancelConnectionInvitationCommand";
|
|
67
|
+
import {
|
|
68
|
+
CancelProfileUpdateTaskCommandInput,
|
|
69
|
+
CancelProfileUpdateTaskCommandOutput,
|
|
70
|
+
} from "./commands/CancelProfileUpdateTaskCommand";
|
|
71
|
+
import {
|
|
72
|
+
CreateConnectionInvitationCommandInput,
|
|
73
|
+
CreateConnectionInvitationCommandOutput,
|
|
74
|
+
} from "./commands/CreateConnectionInvitationCommand";
|
|
75
|
+
import {
|
|
76
|
+
CreatePartnerCommandInput,
|
|
77
|
+
CreatePartnerCommandOutput,
|
|
78
|
+
} from "./commands/CreatePartnerCommand";
|
|
79
|
+
import {
|
|
80
|
+
DisassociateAwsTrainingCertificationEmailDomainCommandInput,
|
|
81
|
+
DisassociateAwsTrainingCertificationEmailDomainCommandOutput,
|
|
82
|
+
} from "./commands/DisassociateAwsTrainingCertificationEmailDomainCommand";
|
|
83
|
+
import {
|
|
84
|
+
GetAllianceLeadContactCommandInput,
|
|
85
|
+
GetAllianceLeadContactCommandOutput,
|
|
86
|
+
} from "./commands/GetAllianceLeadContactCommand";
|
|
87
|
+
import {
|
|
88
|
+
GetConnectionCommandInput,
|
|
89
|
+
GetConnectionCommandOutput,
|
|
90
|
+
} from "./commands/GetConnectionCommand";
|
|
91
|
+
import {
|
|
92
|
+
GetConnectionInvitationCommandInput,
|
|
93
|
+
GetConnectionInvitationCommandOutput,
|
|
94
|
+
} from "./commands/GetConnectionInvitationCommand";
|
|
95
|
+
import {
|
|
96
|
+
GetConnectionPreferencesCommandInput,
|
|
97
|
+
GetConnectionPreferencesCommandOutput,
|
|
98
|
+
} from "./commands/GetConnectionPreferencesCommand";
|
|
99
|
+
import {
|
|
100
|
+
GetPartnerCommandInput,
|
|
101
|
+
GetPartnerCommandOutput,
|
|
102
|
+
} from "./commands/GetPartnerCommand";
|
|
103
|
+
import {
|
|
104
|
+
GetProfileUpdateTaskCommandInput,
|
|
105
|
+
GetProfileUpdateTaskCommandOutput,
|
|
106
|
+
} from "./commands/GetProfileUpdateTaskCommand";
|
|
107
|
+
import {
|
|
108
|
+
GetProfileVisibilityCommandInput,
|
|
109
|
+
GetProfileVisibilityCommandOutput,
|
|
110
|
+
} from "./commands/GetProfileVisibilityCommand";
|
|
111
|
+
import {
|
|
112
|
+
ListConnectionInvitationsCommandInput,
|
|
113
|
+
ListConnectionInvitationsCommandOutput,
|
|
114
|
+
} from "./commands/ListConnectionInvitationsCommand";
|
|
115
|
+
import {
|
|
116
|
+
ListConnectionsCommandInput,
|
|
117
|
+
ListConnectionsCommandOutput,
|
|
118
|
+
} from "./commands/ListConnectionsCommand";
|
|
119
|
+
import {
|
|
120
|
+
ListPartnersCommandInput,
|
|
121
|
+
ListPartnersCommandOutput,
|
|
122
|
+
} from "./commands/ListPartnersCommand";
|
|
123
|
+
import {
|
|
124
|
+
ListTagsForResourceCommandInput,
|
|
125
|
+
ListTagsForResourceCommandOutput,
|
|
126
|
+
} from "./commands/ListTagsForResourceCommand";
|
|
127
|
+
import {
|
|
128
|
+
PutAllianceLeadContactCommandInput,
|
|
129
|
+
PutAllianceLeadContactCommandOutput,
|
|
130
|
+
} from "./commands/PutAllianceLeadContactCommand";
|
|
131
|
+
import {
|
|
132
|
+
PutProfileVisibilityCommandInput,
|
|
133
|
+
PutProfileVisibilityCommandOutput,
|
|
134
|
+
} from "./commands/PutProfileVisibilityCommand";
|
|
135
|
+
import {
|
|
136
|
+
RejectConnectionInvitationCommandInput,
|
|
137
|
+
RejectConnectionInvitationCommandOutput,
|
|
138
|
+
} from "./commands/RejectConnectionInvitationCommand";
|
|
139
|
+
import {
|
|
140
|
+
SendEmailVerificationCodeCommandInput,
|
|
141
|
+
SendEmailVerificationCodeCommandOutput,
|
|
142
|
+
} from "./commands/SendEmailVerificationCodeCommand";
|
|
143
|
+
import {
|
|
144
|
+
StartProfileUpdateTaskCommandInput,
|
|
145
|
+
StartProfileUpdateTaskCommandOutput,
|
|
146
|
+
} from "./commands/StartProfileUpdateTaskCommand";
|
|
147
|
+
import {
|
|
148
|
+
TagResourceCommandInput,
|
|
149
|
+
TagResourceCommandOutput,
|
|
150
|
+
} from "./commands/TagResourceCommand";
|
|
151
|
+
import {
|
|
152
|
+
UntagResourceCommandInput,
|
|
153
|
+
UntagResourceCommandOutput,
|
|
154
|
+
} from "./commands/UntagResourceCommand";
|
|
155
|
+
import {
|
|
156
|
+
UpdateConnectionPreferencesCommandInput,
|
|
157
|
+
UpdateConnectionPreferencesCommandOutput,
|
|
158
|
+
} from "./commands/UpdateConnectionPreferencesCommand";
|
|
159
|
+
import {
|
|
160
|
+
ClientInputEndpointParameters,
|
|
161
|
+
ClientResolvedEndpointParameters,
|
|
162
|
+
EndpointParameters,
|
|
163
|
+
} from "./endpoint/EndpointParameters";
|
|
164
|
+
import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
165
|
+
export { __Client };
|
|
166
|
+
export type ServiceInputTypes =
|
|
167
|
+
| AcceptConnectionInvitationCommandInput
|
|
168
|
+
| AssociateAwsTrainingCertificationEmailDomainCommandInput
|
|
169
|
+
| CancelConnectionCommandInput
|
|
170
|
+
| CancelConnectionInvitationCommandInput
|
|
171
|
+
| CancelProfileUpdateTaskCommandInput
|
|
172
|
+
| CreateConnectionInvitationCommandInput
|
|
173
|
+
| CreatePartnerCommandInput
|
|
174
|
+
| DisassociateAwsTrainingCertificationEmailDomainCommandInput
|
|
175
|
+
| GetAllianceLeadContactCommandInput
|
|
176
|
+
| GetConnectionCommandInput
|
|
177
|
+
| GetConnectionInvitationCommandInput
|
|
178
|
+
| GetConnectionPreferencesCommandInput
|
|
179
|
+
| GetPartnerCommandInput
|
|
180
|
+
| GetProfileUpdateTaskCommandInput
|
|
181
|
+
| GetProfileVisibilityCommandInput
|
|
182
|
+
| ListConnectionInvitationsCommandInput
|
|
183
|
+
| ListConnectionsCommandInput
|
|
184
|
+
| ListPartnersCommandInput
|
|
185
|
+
| ListTagsForResourceCommandInput
|
|
186
|
+
| PutAllianceLeadContactCommandInput
|
|
187
|
+
| PutProfileVisibilityCommandInput
|
|
188
|
+
| RejectConnectionInvitationCommandInput
|
|
189
|
+
| SendEmailVerificationCodeCommandInput
|
|
190
|
+
| StartProfileUpdateTaskCommandInput
|
|
191
|
+
| TagResourceCommandInput
|
|
192
|
+
| UntagResourceCommandInput
|
|
193
|
+
| UpdateConnectionPreferencesCommandInput;
|
|
194
|
+
export type ServiceOutputTypes =
|
|
195
|
+
| AcceptConnectionInvitationCommandOutput
|
|
196
|
+
| AssociateAwsTrainingCertificationEmailDomainCommandOutput
|
|
197
|
+
| CancelConnectionCommandOutput
|
|
198
|
+
| CancelConnectionInvitationCommandOutput
|
|
199
|
+
| CancelProfileUpdateTaskCommandOutput
|
|
200
|
+
| CreateConnectionInvitationCommandOutput
|
|
201
|
+
| CreatePartnerCommandOutput
|
|
202
|
+
| DisassociateAwsTrainingCertificationEmailDomainCommandOutput
|
|
203
|
+
| GetAllianceLeadContactCommandOutput
|
|
204
|
+
| GetConnectionCommandOutput
|
|
205
|
+
| GetConnectionInvitationCommandOutput
|
|
206
|
+
| GetConnectionPreferencesCommandOutput
|
|
207
|
+
| GetPartnerCommandOutput
|
|
208
|
+
| GetProfileUpdateTaskCommandOutput
|
|
209
|
+
| GetProfileVisibilityCommandOutput
|
|
210
|
+
| ListConnectionInvitationsCommandOutput
|
|
211
|
+
| ListConnectionsCommandOutput
|
|
212
|
+
| ListPartnersCommandOutput
|
|
213
|
+
| ListTagsForResourceCommandOutput
|
|
214
|
+
| PutAllianceLeadContactCommandOutput
|
|
215
|
+
| PutProfileVisibilityCommandOutput
|
|
216
|
+
| RejectConnectionInvitationCommandOutput
|
|
217
|
+
| SendEmailVerificationCodeCommandOutput
|
|
218
|
+
| StartProfileUpdateTaskCommandOutput
|
|
219
|
+
| TagResourceCommandOutput
|
|
220
|
+
| UntagResourceCommandOutput
|
|
221
|
+
| UpdateConnectionPreferencesCommandOutput;
|
|
222
|
+
export interface ClientDefaults
|
|
223
|
+
extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
|
|
224
|
+
requestHandler?: __HttpHandlerUserInput;
|
|
225
|
+
sha256?: __ChecksumConstructor | __HashConstructor;
|
|
226
|
+
urlParser?: __UrlParser;
|
|
227
|
+
bodyLengthChecker?: __BodyLengthCalculator;
|
|
228
|
+
streamCollector?: __StreamCollector;
|
|
229
|
+
base64Decoder?: __Decoder;
|
|
230
|
+
base64Encoder?: __Encoder;
|
|
231
|
+
utf8Decoder?: __Decoder;
|
|
232
|
+
utf8Encoder?: __Encoder;
|
|
233
|
+
runtime?: string;
|
|
234
|
+
disableHostPrefix?: boolean;
|
|
235
|
+
serviceId?: string;
|
|
236
|
+
useDualstackEndpoint?: boolean | __Provider<boolean>;
|
|
237
|
+
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
238
|
+
region?: string | __Provider<string>;
|
|
239
|
+
profile?: string;
|
|
240
|
+
defaultUserAgentProvider?: Provider<__UserAgent>;
|
|
241
|
+
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
242
|
+
maxAttempts?: number | __Provider<number>;
|
|
243
|
+
retryMode?: string | __Provider<string>;
|
|
244
|
+
logger?: __Logger;
|
|
245
|
+
extensions?: RuntimeExtension[];
|
|
246
|
+
protocol?: ClientProtocol<HttpRequest, HttpResponse>;
|
|
247
|
+
defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
|
|
248
|
+
}
|
|
249
|
+
export type PartnerCentralAccountClientConfigType = Partial<
|
|
250
|
+
__SmithyConfiguration<__HttpHandlerOptions>
|
|
251
|
+
> &
|
|
252
|
+
ClientDefaults &
|
|
253
|
+
UserAgentInputConfig &
|
|
254
|
+
RetryInputConfig &
|
|
255
|
+
RegionInputConfig &
|
|
256
|
+
HostHeaderInputConfig &
|
|
257
|
+
EndpointInputConfig<EndpointParameters> &
|
|
258
|
+
HttpAuthSchemeInputConfig &
|
|
259
|
+
ClientInputEndpointParameters;
|
|
260
|
+
export interface PartnerCentralAccountClientConfig
|
|
261
|
+
extends PartnerCentralAccountClientConfigType {}
|
|
262
|
+
export type PartnerCentralAccountClientResolvedConfigType =
|
|
263
|
+
__SmithyResolvedConfiguration<__HttpHandlerOptions> &
|
|
264
|
+
Required<ClientDefaults> &
|
|
265
|
+
RuntimeExtensionsConfig &
|
|
266
|
+
UserAgentResolvedConfig &
|
|
267
|
+
RetryResolvedConfig &
|
|
268
|
+
RegionResolvedConfig &
|
|
269
|
+
HostHeaderResolvedConfig &
|
|
270
|
+
EndpointResolvedConfig<EndpointParameters> &
|
|
271
|
+
HttpAuthSchemeResolvedConfig &
|
|
272
|
+
ClientResolvedEndpointParameters;
|
|
273
|
+
export interface PartnerCentralAccountClientResolvedConfig
|
|
274
|
+
extends PartnerCentralAccountClientResolvedConfigType {}
|
|
275
|
+
export declare class PartnerCentralAccountClient extends __Client<
|
|
276
|
+
__HttpHandlerOptions,
|
|
277
|
+
ServiceInputTypes,
|
|
278
|
+
ServiceOutputTypes,
|
|
279
|
+
PartnerCentralAccountClientResolvedConfig
|
|
280
|
+
> {
|
|
281
|
+
readonly config: PartnerCentralAccountClientResolvedConfig;
|
|
282
|
+
constructor(
|
|
283
|
+
...[
|
|
284
|
+
configuration,
|
|
285
|
+
]: __CheckOptionalClientConfig<PartnerCentralAccountClientConfig>
|
|
286
|
+
);
|
|
287
|
+
destroy(): void;
|
|
288
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AwsCredentialIdentity,
|
|
3
|
+
AwsCredentialIdentityProvider,
|
|
4
|
+
HttpAuthScheme,
|
|
5
|
+
} from "@smithy/types";
|
|
6
|
+
import { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
|
+
export interface HttpAuthExtensionConfiguration {
|
|
8
|
+
setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
|
|
9
|
+
httpAuthSchemes(): HttpAuthScheme[];
|
|
10
|
+
setHttpAuthSchemeProvider(
|
|
11
|
+
httpAuthSchemeProvider: PartnerCentralAccountHttpAuthSchemeProvider
|
|
12
|
+
): void;
|
|
13
|
+
httpAuthSchemeProvider(): PartnerCentralAccountHttpAuthSchemeProvider;
|
|
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: PartnerCentralAccountHttpAuthSchemeProvider;
|
|
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,47 @@
|
|
|
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
|
+
Provider,
|
|
13
|
+
} from "@smithy/types";
|
|
14
|
+
import { PartnerCentralAccountClientResolvedConfig } from "../PartnerCentralAccountClient";
|
|
15
|
+
export interface PartnerCentralAccountHttpAuthSchemeParameters
|
|
16
|
+
extends HttpAuthSchemeParameters {
|
|
17
|
+
region?: string;
|
|
18
|
+
}
|
|
19
|
+
export interface PartnerCentralAccountHttpAuthSchemeParametersProvider
|
|
20
|
+
extends HttpAuthSchemeParametersProvider<
|
|
21
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
22
|
+
HandlerExecutionContext,
|
|
23
|
+
PartnerCentralAccountHttpAuthSchemeParameters,
|
|
24
|
+
object
|
|
25
|
+
> {}
|
|
26
|
+
export declare const defaultPartnerCentralAccountHttpAuthSchemeParametersProvider: (
|
|
27
|
+
config: PartnerCentralAccountClientResolvedConfig,
|
|
28
|
+
context: HandlerExecutionContext,
|
|
29
|
+
input: object
|
|
30
|
+
) => Promise<PartnerCentralAccountHttpAuthSchemeParameters>;
|
|
31
|
+
export interface PartnerCentralAccountHttpAuthSchemeProvider
|
|
32
|
+
extends HttpAuthSchemeProvider<PartnerCentralAccountHttpAuthSchemeParameters> {}
|
|
33
|
+
export declare const defaultPartnerCentralAccountHttpAuthSchemeProvider: PartnerCentralAccountHttpAuthSchemeProvider;
|
|
34
|
+
export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
|
|
35
|
+
authSchemePreference?: string[] | Provider<string[]>;
|
|
36
|
+
httpAuthSchemes?: HttpAuthScheme[];
|
|
37
|
+
httpAuthSchemeProvider?: PartnerCentralAccountHttpAuthSchemeProvider;
|
|
38
|
+
}
|
|
39
|
+
export interface HttpAuthSchemeResolvedConfig
|
|
40
|
+
extends AwsSdkSigV4AuthResolvedConfig {
|
|
41
|
+
readonly authSchemePreference: Provider<string[]>;
|
|
42
|
+
readonly httpAuthSchemes: HttpAuthScheme[];
|
|
43
|
+
readonly httpAuthSchemeProvider: PartnerCentralAccountHttpAuthSchemeProvider;
|
|
44
|
+
}
|
|
45
|
+
export declare const resolveHttpAuthSchemeConfig: <T>(
|
|
46
|
+
config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
|
|
47
|
+
) => T & HttpAuthSchemeResolvedConfig;
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
AcceptConnectionInvitationRequest,
|
|
5
|
+
AcceptConnectionInvitationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AcceptConnectionInvitationCommandInput
|
|
15
|
+
extends AcceptConnectionInvitationRequest {}
|
|
16
|
+
export interface AcceptConnectionInvitationCommandOutput
|
|
17
|
+
extends AcceptConnectionInvitationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AcceptConnectionInvitationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AcceptConnectionInvitationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AcceptConnectionInvitationCommandInput,
|
|
24
|
+
AcceptConnectionInvitationCommandOutput,
|
|
25
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AcceptConnectionInvitationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AcceptConnectionInvitationCommandInput,
|
|
33
|
+
AcceptConnectionInvitationCommandOutput,
|
|
34
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AcceptConnectionInvitationCommand extends AcceptConnectionInvitationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AcceptConnectionInvitationRequest;
|
|
44
|
+
output: AcceptConnectionInvitationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AcceptConnectionInvitationCommandInput;
|
|
48
|
+
output: AcceptConnectionInvitationCommandOutput;
|
|
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
|
+
AssociateAwsTrainingCertificationEmailDomainRequest,
|
|
5
|
+
AssociateAwsTrainingCertificationEmailDomainResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface AssociateAwsTrainingCertificationEmailDomainCommandInput
|
|
15
|
+
extends AssociateAwsTrainingCertificationEmailDomainRequest {}
|
|
16
|
+
export interface AssociateAwsTrainingCertificationEmailDomainCommandOutput
|
|
17
|
+
extends AssociateAwsTrainingCertificationEmailDomainResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const AssociateAwsTrainingCertificationEmailDomainCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: AssociateAwsTrainingCertificationEmailDomainCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
AssociateAwsTrainingCertificationEmailDomainCommandInput,
|
|
24
|
+
AssociateAwsTrainingCertificationEmailDomainCommandOutput,
|
|
25
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: AssociateAwsTrainingCertificationEmailDomainCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
AssociateAwsTrainingCertificationEmailDomainCommandInput,
|
|
33
|
+
AssociateAwsTrainingCertificationEmailDomainCommandOutput,
|
|
34
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class AssociateAwsTrainingCertificationEmailDomainCommand extends AssociateAwsTrainingCertificationEmailDomainCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: AssociateAwsTrainingCertificationEmailDomainRequest;
|
|
44
|
+
output: {};
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: AssociateAwsTrainingCertificationEmailDomainCommandInput;
|
|
48
|
+
output: AssociateAwsTrainingCertificationEmailDomainCommandOutput;
|
|
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
|
+
CancelConnectionRequest,
|
|
5
|
+
CancelConnectionResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelConnectionCommandInput extends CancelConnectionRequest {}
|
|
15
|
+
export interface CancelConnectionCommandOutput
|
|
16
|
+
extends CancelConnectionResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const CancelConnectionCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: CancelConnectionCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
CancelConnectionCommandInput,
|
|
23
|
+
CancelConnectionCommandOutput,
|
|
24
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: CancelConnectionCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
CancelConnectionCommandInput,
|
|
32
|
+
CancelConnectionCommandOutput,
|
|
33
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class CancelConnectionCommand extends CancelConnectionCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: CancelConnectionRequest;
|
|
43
|
+
output: CancelConnectionResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: CancelConnectionCommandInput;
|
|
47
|
+
output: CancelConnectionCommandOutput;
|
|
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
|
+
CancelConnectionInvitationRequest,
|
|
5
|
+
CancelConnectionInvitationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelConnectionInvitationCommandInput
|
|
15
|
+
extends CancelConnectionInvitationRequest {}
|
|
16
|
+
export interface CancelConnectionInvitationCommandOutput
|
|
17
|
+
extends CancelConnectionInvitationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CancelConnectionInvitationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CancelConnectionInvitationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CancelConnectionInvitationCommandInput,
|
|
24
|
+
CancelConnectionInvitationCommandOutput,
|
|
25
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CancelConnectionInvitationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CancelConnectionInvitationCommandInput,
|
|
33
|
+
CancelConnectionInvitationCommandOutput,
|
|
34
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CancelConnectionInvitationCommand extends CancelConnectionInvitationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CancelConnectionInvitationRequest;
|
|
44
|
+
output: CancelConnectionInvitationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CancelConnectionInvitationCommandInput;
|
|
48
|
+
output: CancelConnectionInvitationCommandOutput;
|
|
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
|
+
CancelProfileUpdateTaskRequest,
|
|
5
|
+
CancelProfileUpdateTaskResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CancelProfileUpdateTaskCommandInput
|
|
15
|
+
extends CancelProfileUpdateTaskRequest {}
|
|
16
|
+
export interface CancelProfileUpdateTaskCommandOutput
|
|
17
|
+
extends CancelProfileUpdateTaskResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CancelProfileUpdateTaskCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CancelProfileUpdateTaskCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CancelProfileUpdateTaskCommandInput,
|
|
24
|
+
CancelProfileUpdateTaskCommandOutput,
|
|
25
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CancelProfileUpdateTaskCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CancelProfileUpdateTaskCommandInput,
|
|
33
|
+
CancelProfileUpdateTaskCommandOutput,
|
|
34
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CancelProfileUpdateTaskCommand extends CancelProfileUpdateTaskCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CancelProfileUpdateTaskRequest;
|
|
44
|
+
output: CancelProfileUpdateTaskResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CancelProfileUpdateTaskCommandInput;
|
|
48
|
+
output: CancelProfileUpdateTaskCommandOutput;
|
|
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
|
+
CreateConnectionInvitationRequest,
|
|
5
|
+
CreateConnectionInvitationResponse,
|
|
6
|
+
} from "../models/models_0";
|
|
7
|
+
import {
|
|
8
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
9
|
+
ServiceInputTypes,
|
|
10
|
+
ServiceOutputTypes,
|
|
11
|
+
} from "../PartnerCentralAccountClient";
|
|
12
|
+
export { __MetadataBearer };
|
|
13
|
+
export { $Command };
|
|
14
|
+
export interface CreateConnectionInvitationCommandInput
|
|
15
|
+
extends CreateConnectionInvitationRequest {}
|
|
16
|
+
export interface CreateConnectionInvitationCommandOutput
|
|
17
|
+
extends CreateConnectionInvitationResponse,
|
|
18
|
+
__MetadataBearer {}
|
|
19
|
+
declare const CreateConnectionInvitationCommand_base: {
|
|
20
|
+
new (
|
|
21
|
+
input: CreateConnectionInvitationCommandInput
|
|
22
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
23
|
+
CreateConnectionInvitationCommandInput,
|
|
24
|
+
CreateConnectionInvitationCommandOutput,
|
|
25
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
26
|
+
ServiceInputTypes,
|
|
27
|
+
ServiceOutputTypes
|
|
28
|
+
>;
|
|
29
|
+
new (
|
|
30
|
+
input: CreateConnectionInvitationCommandInput
|
|
31
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
32
|
+
CreateConnectionInvitationCommandInput,
|
|
33
|
+
CreateConnectionInvitationCommandOutput,
|
|
34
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
35
|
+
ServiceInputTypes,
|
|
36
|
+
ServiceOutputTypes
|
|
37
|
+
>;
|
|
38
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
39
|
+
};
|
|
40
|
+
export declare class CreateConnectionInvitationCommand extends CreateConnectionInvitationCommand_base {
|
|
41
|
+
protected static __types: {
|
|
42
|
+
api: {
|
|
43
|
+
input: CreateConnectionInvitationRequest;
|
|
44
|
+
output: CreateConnectionInvitationResponse;
|
|
45
|
+
};
|
|
46
|
+
sdk: {
|
|
47
|
+
input: CreateConnectionInvitationCommandInput;
|
|
48
|
+
output: CreateConnectionInvitationCommandOutput;
|
|
49
|
+
};
|
|
50
|
+
};
|
|
51
|
+
}
|