@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,544 @@
|
|
|
1
|
+
import {
|
|
2
|
+
AccessType,
|
|
3
|
+
BusinessValidationCode,
|
|
4
|
+
ConnectionType,
|
|
5
|
+
ConnectionTypeStatus,
|
|
6
|
+
FieldValidationCode,
|
|
7
|
+
IndustrySegment,
|
|
8
|
+
InvitationStatus,
|
|
9
|
+
ParticipantType,
|
|
10
|
+
PrimarySolutionType,
|
|
11
|
+
ProfileTaskStatus,
|
|
12
|
+
ProfileValidationErrorReason,
|
|
13
|
+
ProfileVisibility,
|
|
14
|
+
} from "./enums";
|
|
15
|
+
export interface AcceptConnectionInvitationRequest {
|
|
16
|
+
Catalog: string | undefined;
|
|
17
|
+
Identifier: string | undefined;
|
|
18
|
+
ClientToken?: string | undefined;
|
|
19
|
+
}
|
|
20
|
+
export interface AccountSummary {
|
|
21
|
+
Name: string | undefined;
|
|
22
|
+
}
|
|
23
|
+
export interface PartnerProfileSummary {
|
|
24
|
+
Id: string | undefined;
|
|
25
|
+
Name: string | undefined;
|
|
26
|
+
}
|
|
27
|
+
export interface SellerProfileSummary {
|
|
28
|
+
Id: string | undefined;
|
|
29
|
+
Name: string | undefined;
|
|
30
|
+
}
|
|
31
|
+
export type Participant =
|
|
32
|
+
| Participant.AccountMember
|
|
33
|
+
| Participant.PartnerProfileMember
|
|
34
|
+
| Participant.SellerProfileMember
|
|
35
|
+
| Participant.$UnknownMember;
|
|
36
|
+
export declare namespace Participant {
|
|
37
|
+
interface PartnerProfileMember {
|
|
38
|
+
PartnerProfile: PartnerProfileSummary;
|
|
39
|
+
SellerProfile?: never;
|
|
40
|
+
Account?: never;
|
|
41
|
+
$unknown?: never;
|
|
42
|
+
}
|
|
43
|
+
interface SellerProfileMember {
|
|
44
|
+
PartnerProfile?: never;
|
|
45
|
+
SellerProfile: SellerProfileSummary;
|
|
46
|
+
Account?: never;
|
|
47
|
+
$unknown?: never;
|
|
48
|
+
}
|
|
49
|
+
interface AccountMember {
|
|
50
|
+
PartnerProfile?: never;
|
|
51
|
+
SellerProfile?: never;
|
|
52
|
+
Account: AccountSummary;
|
|
53
|
+
$unknown?: never;
|
|
54
|
+
}
|
|
55
|
+
interface $UnknownMember {
|
|
56
|
+
PartnerProfile?: never;
|
|
57
|
+
SellerProfile?: never;
|
|
58
|
+
Account?: never;
|
|
59
|
+
$unknown: [string, any];
|
|
60
|
+
}
|
|
61
|
+
interface Visitor<T> {
|
|
62
|
+
PartnerProfile: (value: PartnerProfileSummary) => T;
|
|
63
|
+
SellerProfile: (value: SellerProfileSummary) => T;
|
|
64
|
+
Account: (value: AccountSummary) => T;
|
|
65
|
+
_: (name: string, value: any) => T;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
export interface ConnectionTypeDetail {
|
|
69
|
+
CreatedAt: Date | undefined;
|
|
70
|
+
InviterEmail: string | undefined;
|
|
71
|
+
InviterName: string | undefined;
|
|
72
|
+
Status: ConnectionTypeStatus | undefined;
|
|
73
|
+
CanceledAt?: Date | undefined;
|
|
74
|
+
CanceledBy?: string | undefined;
|
|
75
|
+
OtherParticipant: Participant | undefined;
|
|
76
|
+
}
|
|
77
|
+
export interface Connection {
|
|
78
|
+
Catalog: string | undefined;
|
|
79
|
+
Id: string | undefined;
|
|
80
|
+
Arn: string | undefined;
|
|
81
|
+
OtherParticipantAccountId: string | undefined;
|
|
82
|
+
UpdatedAt: Date | undefined;
|
|
83
|
+
ConnectionTypes:
|
|
84
|
+
| Partial<Record<ConnectionType, ConnectionTypeDetail>>
|
|
85
|
+
| undefined;
|
|
86
|
+
}
|
|
87
|
+
export interface AcceptConnectionInvitationResponse {
|
|
88
|
+
Connection: Connection | undefined;
|
|
89
|
+
}
|
|
90
|
+
export interface BusinessValidationError {
|
|
91
|
+
Message: string | undefined;
|
|
92
|
+
Code: BusinessValidationCode | undefined;
|
|
93
|
+
}
|
|
94
|
+
export interface FieldValidationError {
|
|
95
|
+
Name: string | undefined;
|
|
96
|
+
Message: string | undefined;
|
|
97
|
+
Code: FieldValidationCode | undefined;
|
|
98
|
+
}
|
|
99
|
+
export type ValidationError =
|
|
100
|
+
| ValidationError.BusinessValidationErrorMember
|
|
101
|
+
| ValidationError.FieldValidationErrorMember
|
|
102
|
+
| ValidationError.$UnknownMember;
|
|
103
|
+
export declare namespace ValidationError {
|
|
104
|
+
interface FieldValidationErrorMember {
|
|
105
|
+
FieldValidationError: FieldValidationError;
|
|
106
|
+
BusinessValidationError?: never;
|
|
107
|
+
$unknown?: never;
|
|
108
|
+
}
|
|
109
|
+
interface BusinessValidationErrorMember {
|
|
110
|
+
FieldValidationError?: never;
|
|
111
|
+
BusinessValidationError: BusinessValidationError;
|
|
112
|
+
$unknown?: never;
|
|
113
|
+
}
|
|
114
|
+
interface $UnknownMember {
|
|
115
|
+
FieldValidationError?: never;
|
|
116
|
+
BusinessValidationError?: never;
|
|
117
|
+
$unknown: [string, any];
|
|
118
|
+
}
|
|
119
|
+
interface Visitor<T> {
|
|
120
|
+
FieldValidationError: (value: FieldValidationError) => T;
|
|
121
|
+
BusinessValidationError: (value: BusinessValidationError) => T;
|
|
122
|
+
_: (name: string, value: any) => T;
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
export interface AllianceLeadContact {
|
|
126
|
+
FirstName: string | undefined;
|
|
127
|
+
LastName: string | undefined;
|
|
128
|
+
Email: string | undefined;
|
|
129
|
+
BusinessTitle: string | undefined;
|
|
130
|
+
}
|
|
131
|
+
export interface AssociateAwsTrainingCertificationEmailDomainRequest {
|
|
132
|
+
Catalog: string | undefined;
|
|
133
|
+
Identifier: string | undefined;
|
|
134
|
+
ClientToken?: string | undefined;
|
|
135
|
+
Email: string | undefined;
|
|
136
|
+
EmailVerificationCode: string | undefined;
|
|
137
|
+
}
|
|
138
|
+
export interface AssociateAwsTrainingCertificationEmailDomainResponse {}
|
|
139
|
+
export interface CancelConnectionRequest {
|
|
140
|
+
Catalog: string | undefined;
|
|
141
|
+
Identifier: string | undefined;
|
|
142
|
+
ConnectionType: ConnectionType | undefined;
|
|
143
|
+
Reason: string | undefined;
|
|
144
|
+
ClientToken?: string | undefined;
|
|
145
|
+
}
|
|
146
|
+
export interface CancelConnectionResponse {
|
|
147
|
+
Catalog: string | undefined;
|
|
148
|
+
Id: string | undefined;
|
|
149
|
+
Arn: string | undefined;
|
|
150
|
+
OtherParticipantAccountId: string | undefined;
|
|
151
|
+
UpdatedAt: Date | undefined;
|
|
152
|
+
ConnectionTypes:
|
|
153
|
+
| Partial<Record<ConnectionType, ConnectionTypeDetail>>
|
|
154
|
+
| undefined;
|
|
155
|
+
}
|
|
156
|
+
export interface CancelConnectionInvitationRequest {
|
|
157
|
+
Catalog: string | undefined;
|
|
158
|
+
Identifier: string | undefined;
|
|
159
|
+
ClientToken?: string | undefined;
|
|
160
|
+
}
|
|
161
|
+
export interface CancelConnectionInvitationResponse {
|
|
162
|
+
Catalog: string | undefined;
|
|
163
|
+
Id: string | undefined;
|
|
164
|
+
Arn: string | undefined;
|
|
165
|
+
ConnectionId?: string | undefined;
|
|
166
|
+
ConnectionType: ConnectionType | undefined;
|
|
167
|
+
CreatedAt: Date | undefined;
|
|
168
|
+
UpdatedAt: Date | undefined;
|
|
169
|
+
ExpiresAt?: Date | undefined;
|
|
170
|
+
OtherParticipantIdentifier: string | undefined;
|
|
171
|
+
ParticipantType: ParticipantType | undefined;
|
|
172
|
+
Status: InvitationStatus | undefined;
|
|
173
|
+
InvitationMessage: string | undefined;
|
|
174
|
+
InviterEmail: string | undefined;
|
|
175
|
+
InviterName: string | undefined;
|
|
176
|
+
}
|
|
177
|
+
export interface CancelProfileUpdateTaskRequest {
|
|
178
|
+
Catalog: string | undefined;
|
|
179
|
+
Identifier: string | undefined;
|
|
180
|
+
ClientToken?: string | undefined;
|
|
181
|
+
TaskId: string | undefined;
|
|
182
|
+
}
|
|
183
|
+
export interface ErrorDetail {
|
|
184
|
+
Locale: string | undefined;
|
|
185
|
+
Message: string | undefined;
|
|
186
|
+
Reason: ProfileValidationErrorReason | undefined;
|
|
187
|
+
}
|
|
188
|
+
export interface LocalizedContent {
|
|
189
|
+
DisplayName: string | undefined;
|
|
190
|
+
Description: string | undefined;
|
|
191
|
+
WebsiteUrl: string | undefined;
|
|
192
|
+
LogoUrl: string | undefined;
|
|
193
|
+
Locale: string | undefined;
|
|
194
|
+
}
|
|
195
|
+
export interface TaskDetails {
|
|
196
|
+
DisplayName: string | undefined;
|
|
197
|
+
Description: string | undefined;
|
|
198
|
+
WebsiteUrl: string | undefined;
|
|
199
|
+
LogoUrl: string | undefined;
|
|
200
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
201
|
+
IndustrySegments: IndustrySegment[] | undefined;
|
|
202
|
+
TranslationSourceLocale: string | undefined;
|
|
203
|
+
LocalizedContents?: LocalizedContent[] | undefined;
|
|
204
|
+
}
|
|
205
|
+
export interface CancelProfileUpdateTaskResponse {
|
|
206
|
+
Catalog: string | undefined;
|
|
207
|
+
Arn: string | undefined;
|
|
208
|
+
Id: string | undefined;
|
|
209
|
+
TaskId: string | undefined;
|
|
210
|
+
TaskDetails: TaskDetails | undefined;
|
|
211
|
+
StartedAt: Date | undefined;
|
|
212
|
+
Status: ProfileTaskStatus | undefined;
|
|
213
|
+
EndedAt?: Date | undefined;
|
|
214
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
215
|
+
}
|
|
216
|
+
export interface CreateConnectionInvitationRequest {
|
|
217
|
+
Catalog: string | undefined;
|
|
218
|
+
ClientToken?: string | undefined;
|
|
219
|
+
ConnectionType: ConnectionType | undefined;
|
|
220
|
+
Email: string | undefined;
|
|
221
|
+
Message: string | undefined;
|
|
222
|
+
Name: string | undefined;
|
|
223
|
+
ReceiverIdentifier: string | undefined;
|
|
224
|
+
}
|
|
225
|
+
export interface CreateConnectionInvitationResponse {
|
|
226
|
+
Catalog: string | undefined;
|
|
227
|
+
Id: string | undefined;
|
|
228
|
+
Arn: string | undefined;
|
|
229
|
+
ConnectionId?: string | undefined;
|
|
230
|
+
ConnectionType: ConnectionType | undefined;
|
|
231
|
+
CreatedAt: Date | undefined;
|
|
232
|
+
UpdatedAt: Date | undefined;
|
|
233
|
+
ExpiresAt?: Date | undefined;
|
|
234
|
+
OtherParticipantIdentifier: string | undefined;
|
|
235
|
+
ParticipantType: ParticipantType | undefined;
|
|
236
|
+
Status: InvitationStatus | undefined;
|
|
237
|
+
InvitationMessage: string | undefined;
|
|
238
|
+
InviterEmail: string | undefined;
|
|
239
|
+
InviterName: string | undefined;
|
|
240
|
+
}
|
|
241
|
+
export interface GetConnectionInvitationRequest {
|
|
242
|
+
Catalog: string | undefined;
|
|
243
|
+
Identifier: string | undefined;
|
|
244
|
+
}
|
|
245
|
+
export interface GetConnectionInvitationResponse {
|
|
246
|
+
Catalog: string | undefined;
|
|
247
|
+
Id: string | undefined;
|
|
248
|
+
Arn: string | undefined;
|
|
249
|
+
ConnectionId?: string | undefined;
|
|
250
|
+
ConnectionType: ConnectionType | undefined;
|
|
251
|
+
CreatedAt: Date | undefined;
|
|
252
|
+
UpdatedAt: Date | undefined;
|
|
253
|
+
ExpiresAt?: Date | undefined;
|
|
254
|
+
OtherParticipantIdentifier: string | undefined;
|
|
255
|
+
ParticipantType: ParticipantType | undefined;
|
|
256
|
+
Status: InvitationStatus | undefined;
|
|
257
|
+
InvitationMessage: string | undefined;
|
|
258
|
+
InviterEmail: string | undefined;
|
|
259
|
+
InviterName: string | undefined;
|
|
260
|
+
}
|
|
261
|
+
export interface ListConnectionInvitationsRequest {
|
|
262
|
+
Catalog: string | undefined;
|
|
263
|
+
NextToken?: string | undefined;
|
|
264
|
+
ConnectionType?: ConnectionType | undefined;
|
|
265
|
+
MaxResults?: number | undefined;
|
|
266
|
+
OtherParticipantIdentifiers?: string[] | undefined;
|
|
267
|
+
ParticipantType?: ParticipantType | undefined;
|
|
268
|
+
Status?: InvitationStatus | undefined;
|
|
269
|
+
}
|
|
270
|
+
export interface ConnectionInvitationSummary {
|
|
271
|
+
Catalog: string | undefined;
|
|
272
|
+
Id: string | undefined;
|
|
273
|
+
Arn: string | undefined;
|
|
274
|
+
ConnectionId?: string | undefined;
|
|
275
|
+
ConnectionType: ConnectionType | undefined;
|
|
276
|
+
CreatedAt: Date | undefined;
|
|
277
|
+
UpdatedAt: Date | undefined;
|
|
278
|
+
ExpiresAt?: Date | undefined;
|
|
279
|
+
OtherParticipantIdentifier: string | undefined;
|
|
280
|
+
ParticipantType: ParticipantType | undefined;
|
|
281
|
+
Status: InvitationStatus | undefined;
|
|
282
|
+
}
|
|
283
|
+
export interface ListConnectionInvitationsResponse {
|
|
284
|
+
ConnectionInvitationSummaries: ConnectionInvitationSummary[] | undefined;
|
|
285
|
+
NextToken?: string | undefined;
|
|
286
|
+
}
|
|
287
|
+
export interface RejectConnectionInvitationRequest {
|
|
288
|
+
Catalog: string | undefined;
|
|
289
|
+
Identifier: string | undefined;
|
|
290
|
+
ClientToken?: string | undefined;
|
|
291
|
+
Reason?: string | undefined;
|
|
292
|
+
}
|
|
293
|
+
export interface RejectConnectionInvitationResponse {
|
|
294
|
+
Catalog: string | undefined;
|
|
295
|
+
Id: string | undefined;
|
|
296
|
+
Arn: string | undefined;
|
|
297
|
+
ConnectionId?: string | undefined;
|
|
298
|
+
ConnectionType: ConnectionType | undefined;
|
|
299
|
+
CreatedAt: Date | undefined;
|
|
300
|
+
UpdatedAt: Date | undefined;
|
|
301
|
+
ExpiresAt?: Date | undefined;
|
|
302
|
+
OtherParticipantIdentifier: string | undefined;
|
|
303
|
+
ParticipantType: ParticipantType | undefined;
|
|
304
|
+
Status: InvitationStatus | undefined;
|
|
305
|
+
InvitationMessage: string | undefined;
|
|
306
|
+
InviterEmail: string | undefined;
|
|
307
|
+
InviterName: string | undefined;
|
|
308
|
+
}
|
|
309
|
+
export interface GetConnectionPreferencesRequest {
|
|
310
|
+
Catalog: string | undefined;
|
|
311
|
+
}
|
|
312
|
+
export interface GetConnectionPreferencesResponse {
|
|
313
|
+
Catalog: string | undefined;
|
|
314
|
+
Arn: string | undefined;
|
|
315
|
+
AccessType: AccessType | undefined;
|
|
316
|
+
ExcludedParticipantIds?: string[] | undefined;
|
|
317
|
+
UpdatedAt: Date | undefined;
|
|
318
|
+
Revision: number | undefined;
|
|
319
|
+
}
|
|
320
|
+
export interface UpdateConnectionPreferencesRequest {
|
|
321
|
+
Catalog: string | undefined;
|
|
322
|
+
Revision: number | undefined;
|
|
323
|
+
AccessType: AccessType | undefined;
|
|
324
|
+
ExcludedParticipantIdentifiers?: string[] | undefined;
|
|
325
|
+
}
|
|
326
|
+
export interface UpdateConnectionPreferencesResponse {
|
|
327
|
+
Catalog: string | undefined;
|
|
328
|
+
Arn: string | undefined;
|
|
329
|
+
AccessType: AccessType | undefined;
|
|
330
|
+
ExcludedParticipantIds?: string[] | undefined;
|
|
331
|
+
UpdatedAt: Date | undefined;
|
|
332
|
+
Revision: number | undefined;
|
|
333
|
+
}
|
|
334
|
+
export interface GetConnectionRequest {
|
|
335
|
+
Catalog: string | undefined;
|
|
336
|
+
Identifier: string | undefined;
|
|
337
|
+
}
|
|
338
|
+
export interface GetConnectionResponse {
|
|
339
|
+
Catalog: string | undefined;
|
|
340
|
+
Id: string | undefined;
|
|
341
|
+
Arn: string | undefined;
|
|
342
|
+
OtherParticipantAccountId: string | undefined;
|
|
343
|
+
UpdatedAt: Date | undefined;
|
|
344
|
+
ConnectionTypes:
|
|
345
|
+
| Partial<Record<ConnectionType, ConnectionTypeDetail>>
|
|
346
|
+
| undefined;
|
|
347
|
+
}
|
|
348
|
+
export interface ListConnectionsRequest {
|
|
349
|
+
Catalog: string | undefined;
|
|
350
|
+
NextToken?: string | undefined;
|
|
351
|
+
ConnectionType?: string | undefined;
|
|
352
|
+
MaxResults?: number | undefined;
|
|
353
|
+
OtherParticipantIdentifiers?: string[] | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface ConnectionTypeSummary {
|
|
356
|
+
Status: ConnectionTypeStatus | undefined;
|
|
357
|
+
OtherParticipant: Participant | undefined;
|
|
358
|
+
}
|
|
359
|
+
export interface ConnectionSummary {
|
|
360
|
+
Catalog: string | undefined;
|
|
361
|
+
Id: string | undefined;
|
|
362
|
+
Arn: string | undefined;
|
|
363
|
+
OtherParticipantAccountId: string | undefined;
|
|
364
|
+
UpdatedAt: Date | undefined;
|
|
365
|
+
ConnectionTypes:
|
|
366
|
+
| Partial<Record<ConnectionType, ConnectionTypeSummary>>
|
|
367
|
+
| undefined;
|
|
368
|
+
}
|
|
369
|
+
export interface ListConnectionsResponse {
|
|
370
|
+
ConnectionSummaries: ConnectionSummary[] | undefined;
|
|
371
|
+
NextToken?: string | undefined;
|
|
372
|
+
}
|
|
373
|
+
export interface Tag {
|
|
374
|
+
Key: string | undefined;
|
|
375
|
+
Value: string | undefined;
|
|
376
|
+
}
|
|
377
|
+
export interface CreatePartnerRequest {
|
|
378
|
+
Catalog: string | undefined;
|
|
379
|
+
ClientToken?: string | undefined;
|
|
380
|
+
LegalName: string | undefined;
|
|
381
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
382
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
383
|
+
EmailVerificationCode: string | undefined;
|
|
384
|
+
Tags?: Tag[] | undefined;
|
|
385
|
+
}
|
|
386
|
+
export interface PartnerDomain {
|
|
387
|
+
DomainName: string | undefined;
|
|
388
|
+
RegisteredAt: Date | undefined;
|
|
389
|
+
}
|
|
390
|
+
export interface PartnerProfile {
|
|
391
|
+
DisplayName: string | undefined;
|
|
392
|
+
Description: string | undefined;
|
|
393
|
+
WebsiteUrl: string | undefined;
|
|
394
|
+
LogoUrl: string | undefined;
|
|
395
|
+
PrimarySolutionType: PrimarySolutionType | undefined;
|
|
396
|
+
IndustrySegments: IndustrySegment[] | undefined;
|
|
397
|
+
TranslationSourceLocale: string | undefined;
|
|
398
|
+
LocalizedContents?: LocalizedContent[] | undefined;
|
|
399
|
+
ProfileId?: string | undefined;
|
|
400
|
+
}
|
|
401
|
+
export interface CreatePartnerResponse {
|
|
402
|
+
Catalog: string | undefined;
|
|
403
|
+
Arn: string | undefined;
|
|
404
|
+
Id: string | undefined;
|
|
405
|
+
LegalName: string | undefined;
|
|
406
|
+
CreatedAt: Date | undefined;
|
|
407
|
+
Profile: PartnerProfile | undefined;
|
|
408
|
+
AwsTrainingCertificationEmailDomains?: PartnerDomain[] | undefined;
|
|
409
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
410
|
+
}
|
|
411
|
+
export interface DisassociateAwsTrainingCertificationEmailDomainRequest {
|
|
412
|
+
Catalog: string | undefined;
|
|
413
|
+
Identifier: string | undefined;
|
|
414
|
+
ClientToken?: string | undefined;
|
|
415
|
+
DomainName: string | undefined;
|
|
416
|
+
}
|
|
417
|
+
export interface DisassociateAwsTrainingCertificationEmailDomainResponse {}
|
|
418
|
+
export interface GetAllianceLeadContactRequest {
|
|
419
|
+
Catalog: string | undefined;
|
|
420
|
+
Identifier: string | undefined;
|
|
421
|
+
}
|
|
422
|
+
export interface GetAllianceLeadContactResponse {
|
|
423
|
+
Catalog: string | undefined;
|
|
424
|
+
Arn: string | undefined;
|
|
425
|
+
Id: string | undefined;
|
|
426
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
427
|
+
}
|
|
428
|
+
export interface GetPartnerRequest {
|
|
429
|
+
Catalog: string | undefined;
|
|
430
|
+
Identifier: string | undefined;
|
|
431
|
+
}
|
|
432
|
+
export interface GetPartnerResponse {
|
|
433
|
+
Catalog: string | undefined;
|
|
434
|
+
Arn: string | undefined;
|
|
435
|
+
Id: string | undefined;
|
|
436
|
+
LegalName: string | undefined;
|
|
437
|
+
CreatedAt: Date | undefined;
|
|
438
|
+
Profile: PartnerProfile | undefined;
|
|
439
|
+
AwsTrainingCertificationEmailDomains?: PartnerDomain[] | undefined;
|
|
440
|
+
}
|
|
441
|
+
export interface GetProfileUpdateTaskRequest {
|
|
442
|
+
Catalog: string | undefined;
|
|
443
|
+
Identifier: string | undefined;
|
|
444
|
+
}
|
|
445
|
+
export interface GetProfileUpdateTaskResponse {
|
|
446
|
+
Catalog: string | undefined;
|
|
447
|
+
Arn: string | undefined;
|
|
448
|
+
Id: string | undefined;
|
|
449
|
+
TaskId: string | undefined;
|
|
450
|
+
TaskDetails: TaskDetails | undefined;
|
|
451
|
+
StartedAt: Date | undefined;
|
|
452
|
+
Status: ProfileTaskStatus | undefined;
|
|
453
|
+
EndedAt?: Date | undefined;
|
|
454
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
455
|
+
}
|
|
456
|
+
export interface GetProfileVisibilityRequest {
|
|
457
|
+
Catalog: string | undefined;
|
|
458
|
+
Identifier: string | undefined;
|
|
459
|
+
}
|
|
460
|
+
export interface GetProfileVisibilityResponse {
|
|
461
|
+
Catalog: string | undefined;
|
|
462
|
+
Arn: string | undefined;
|
|
463
|
+
Id: string | undefined;
|
|
464
|
+
Visibility: ProfileVisibility | undefined;
|
|
465
|
+
ProfileId: string | undefined;
|
|
466
|
+
}
|
|
467
|
+
export interface ListPartnersRequest {
|
|
468
|
+
Catalog: string | undefined;
|
|
469
|
+
NextToken?: string | undefined;
|
|
470
|
+
}
|
|
471
|
+
export interface PartnerSummary {
|
|
472
|
+
Catalog: string | undefined;
|
|
473
|
+
Arn: string | undefined;
|
|
474
|
+
Id: string | undefined;
|
|
475
|
+
LegalName: string | undefined;
|
|
476
|
+
CreatedAt: Date | undefined;
|
|
477
|
+
}
|
|
478
|
+
export interface ListPartnersResponse {
|
|
479
|
+
PartnerSummaryList: PartnerSummary[] | undefined;
|
|
480
|
+
NextToken?: string | undefined;
|
|
481
|
+
}
|
|
482
|
+
export interface ListTagsForResourceRequest {
|
|
483
|
+
ResourceArn: string | undefined;
|
|
484
|
+
}
|
|
485
|
+
export interface ListTagsForResourceResponse {
|
|
486
|
+
ResourceArn: string | undefined;
|
|
487
|
+
Tags?: Tag[] | undefined;
|
|
488
|
+
}
|
|
489
|
+
export interface PutAllianceLeadContactRequest {
|
|
490
|
+
Catalog: string | undefined;
|
|
491
|
+
Identifier: string | undefined;
|
|
492
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
493
|
+
EmailVerificationCode?: string | undefined;
|
|
494
|
+
}
|
|
495
|
+
export interface PutAllianceLeadContactResponse {
|
|
496
|
+
Catalog: string | undefined;
|
|
497
|
+
Arn: string | undefined;
|
|
498
|
+
Id: string | undefined;
|
|
499
|
+
AllianceLeadContact: AllianceLeadContact | undefined;
|
|
500
|
+
}
|
|
501
|
+
export interface PutProfileVisibilityRequest {
|
|
502
|
+
Catalog: string | undefined;
|
|
503
|
+
Identifier: string | undefined;
|
|
504
|
+
Visibility: ProfileVisibility | undefined;
|
|
505
|
+
}
|
|
506
|
+
export interface PutProfileVisibilityResponse {
|
|
507
|
+
Catalog: string | undefined;
|
|
508
|
+
Arn: string | undefined;
|
|
509
|
+
Id: string | undefined;
|
|
510
|
+
Visibility: ProfileVisibility | undefined;
|
|
511
|
+
ProfileId: string | undefined;
|
|
512
|
+
}
|
|
513
|
+
export interface StartProfileUpdateTaskRequest {
|
|
514
|
+
Catalog: string | undefined;
|
|
515
|
+
Identifier: string | undefined;
|
|
516
|
+
ClientToken?: string | undefined;
|
|
517
|
+
TaskDetails: TaskDetails | undefined;
|
|
518
|
+
}
|
|
519
|
+
export interface StartProfileUpdateTaskResponse {
|
|
520
|
+
Catalog: string | undefined;
|
|
521
|
+
Arn: string | undefined;
|
|
522
|
+
Id: string | undefined;
|
|
523
|
+
TaskId: string | undefined;
|
|
524
|
+
TaskDetails: TaskDetails | undefined;
|
|
525
|
+
StartedAt: Date | undefined;
|
|
526
|
+
Status: ProfileTaskStatus | undefined;
|
|
527
|
+
EndedAt?: Date | undefined;
|
|
528
|
+
ErrorDetailList?: ErrorDetail[] | undefined;
|
|
529
|
+
}
|
|
530
|
+
export interface SendEmailVerificationCodeRequest {
|
|
531
|
+
Catalog: string | undefined;
|
|
532
|
+
Email: string | undefined;
|
|
533
|
+
}
|
|
534
|
+
export interface SendEmailVerificationCodeResponse {}
|
|
535
|
+
export interface TagResourceRequest {
|
|
536
|
+
ResourceArn: string | undefined;
|
|
537
|
+
Tags: Tag[] | undefined;
|
|
538
|
+
}
|
|
539
|
+
export interface TagResourceResponse {}
|
|
540
|
+
export interface UntagResourceRequest {
|
|
541
|
+
ResourceArn: string | undefined;
|
|
542
|
+
TagKeys: string[] | undefined;
|
|
543
|
+
}
|
|
544
|
+
export interface UntagResourceResponse {}
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
import { PaginationConfiguration } from "@smithy/types";
|
|
2
|
+
import { PartnerCentralAccountClient } from "../PartnerCentralAccountClient";
|
|
3
|
+
export interface PartnerCentralAccountPaginationConfiguration
|
|
4
|
+
extends PaginationConfiguration {
|
|
5
|
+
client: PartnerCentralAccountClient;
|
|
6
|
+
}
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectionInvitationsCommandInput,
|
|
4
|
+
ListConnectionInvitationsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectionInvitationsCommand";
|
|
6
|
+
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConnectionInvitations: (
|
|
8
|
+
config: PartnerCentralAccountPaginationConfiguration,
|
|
9
|
+
input: ListConnectionInvitationsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectionInvitationsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectionsCommandInput,
|
|
4
|
+
ListConnectionsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectionsCommand";
|
|
6
|
+
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConnections: (
|
|
8
|
+
config: PartnerCentralAccountPaginationConfiguration,
|
|
9
|
+
input: ListConnectionsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectionsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListPartnersCommandInput,
|
|
4
|
+
ListPartnersCommandOutput,
|
|
5
|
+
} from "../commands/ListPartnersCommand";
|
|
6
|
+
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListPartners: (
|
|
8
|
+
config: PartnerCentralAccountPaginationConfiguration,
|
|
9
|
+
input: ListPartnersCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListPartnersCommandOutput>;
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
+
import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
|
|
3
|
+
export declare const getRuntimeConfig: (
|
|
4
|
+
config: PartnerCentralAccountClientConfig
|
|
5
|
+
) => {
|
|
6
|
+
runtime: string;
|
|
7
|
+
defaultsMode: import("@smithy/types").Provider<
|
|
8
|
+
import("@smithy/smithy-client").ResolvedDefaultsMode
|
|
9
|
+
>;
|
|
10
|
+
bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
|
|
11
|
+
credentialDefaultProvider:
|
|
12
|
+
| ((input: any) => import("@smithy/types").AwsCredentialIdentityProvider)
|
|
13
|
+
| ((
|
|
14
|
+
_: unknown
|
|
15
|
+
) => () => Promise<import("@smithy/types").AwsCredentialIdentity>);
|
|
16
|
+
defaultUserAgentProvider: (
|
|
17
|
+
config?: import("@aws-sdk/util-user-agent-browser").PreviouslyResolved
|
|
18
|
+
) => Promise<import("@smithy/types").UserAgent>;
|
|
19
|
+
maxAttempts: number | import("@smithy/types").Provider<number>;
|
|
20
|
+
region: string | import("@smithy/types").Provider<any>;
|
|
21
|
+
requestHandler:
|
|
22
|
+
| import("@smithy/protocol-http").HttpHandler<any>
|
|
23
|
+
| RequestHandler;
|
|
24
|
+
retryMode: string | import("@smithy/types").Provider<string>;
|
|
25
|
+
sha256: import("@smithy/types").HashConstructor;
|
|
26
|
+
streamCollector: import("@smithy/types").StreamCollector;
|
|
27
|
+
useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
28
|
+
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) &
|
|
29
|
+
(boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
30
|
+
apiVersion: string;
|
|
31
|
+
cacheMiddleware?: boolean | undefined;
|
|
32
|
+
urlParser: import("@smithy/types").UrlParser;
|
|
33
|
+
base64Decoder: import("@smithy/types").Decoder;
|
|
34
|
+
base64Encoder: (_input: Uint8Array | string) => string;
|
|
35
|
+
utf8Decoder: import("@smithy/types").Decoder;
|
|
36
|
+
utf8Encoder: (input: Uint8Array | string) => string;
|
|
37
|
+
disableHostPrefix: boolean;
|
|
38
|
+
serviceId: string;
|
|
39
|
+
profile?: string;
|
|
40
|
+
logger: import("@smithy/types").Logger;
|
|
41
|
+
extensions: import("./runtimeExtensions").RuntimeExtension[];
|
|
42
|
+
protocol: import("@smithy/types").ClientProtocol<
|
|
43
|
+
import("@smithy/types").HttpRequest,
|
|
44
|
+
import("@smithy/types").HttpResponse
|
|
45
|
+
>;
|
|
46
|
+
customUserAgent?: string | import("@smithy/types").UserAgent;
|
|
47
|
+
userAgentAppId?:
|
|
48
|
+
| string
|
|
49
|
+
| undefined
|
|
50
|
+
| import("@smithy/types").Provider<string | undefined>;
|
|
51
|
+
retryStrategy?:
|
|
52
|
+
| import("@smithy/types").RetryStrategy
|
|
53
|
+
| import("@smithy/types").RetryStrategyV2;
|
|
54
|
+
endpoint?:
|
|
55
|
+
| ((
|
|
56
|
+
| string
|
|
57
|
+
| import("@smithy/types").Endpoint
|
|
58
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
59
|
+
| import("@smithy/types").EndpointV2
|
|
60
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
61
|
+
) &
|
|
62
|
+
(
|
|
63
|
+
| string
|
|
64
|
+
| import("@smithy/types").Provider<string>
|
|
65
|
+
| import("@smithy/types").Endpoint
|
|
66
|
+
| import("@smithy/types").Provider<import("@smithy/types").Endpoint>
|
|
67
|
+
| import("@smithy/types").EndpointV2
|
|
68
|
+
| import("@smithy/types").Provider<import("@smithy/types").EndpointV2>
|
|
69
|
+
))
|
|
70
|
+
| undefined;
|
|
71
|
+
endpointProvider: (
|
|
72
|
+
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
|
73
|
+
context?: {
|
|
74
|
+
logger?: import("@smithy/types").Logger;
|
|
75
|
+
}
|
|
76
|
+
) => import("@smithy/types").EndpointV2;
|
|
77
|
+
tls?: boolean;
|
|
78
|
+
serviceConfiguredEndpoint?: never;
|
|
79
|
+
authSchemePreference?: string[] | import("@smithy/types").Provider<string[]>;
|
|
80
|
+
httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
|
|
81
|
+
httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PartnerCentralAccountHttpAuthSchemeProvider;
|
|
82
|
+
credentials?:
|
|
83
|
+
| import("@smithy/types").AwsCredentialIdentity
|
|
84
|
+
| import("@smithy/types").AwsCredentialIdentityProvider;
|
|
85
|
+
signer?:
|
|
86
|
+
| import("@smithy/types").RequestSigner
|
|
87
|
+
| ((
|
|
88
|
+
authScheme?: import("@smithy/types").AuthScheme
|
|
89
|
+
) => Promise<import("@smithy/types").RequestSigner>);
|
|
90
|
+
signingEscapePath?: boolean;
|
|
91
|
+
systemClockOffset?: number;
|
|
92
|
+
signingRegion?: string;
|
|
93
|
+
signerConstructor?: new (
|
|
94
|
+
options: import("@smithy/signature-v4").SignatureV4Init &
|
|
95
|
+
import("@smithy/signature-v4").SignatureV4CryptoInit
|
|
96
|
+
) => import("@smithy/types").RequestSigner;
|
|
97
|
+
};
|