@aws-sdk/client-partnercentral-account 3.943.0 → 3.947.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/README.md +16 -0
- package/dist-cjs/index.js +161 -72
- package/dist-cjs/runtimeConfig.browser.js +2 -2
- package/dist-cjs/runtimeConfig.js +3 -4
- package/dist-es/PartnerCentralAccount.js +4 -0
- package/dist-es/PartnerCentralAccountClient.js +2 -2
- package/dist-es/commands/GetVerificationCommand.js +16 -0
- package/dist-es/commands/StartVerificationCommand.js +16 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/enums.js +14 -0
- package/dist-es/runtimeConfig.browser.js +2 -2
- package/dist-es/runtimeConfig.js +2 -3
- package/dist-es/schemas/schemas_0.js +117 -73
- package/dist-types/PartnerCentralAccount.d.ts +16 -1
- package/dist-types/PartnerCentralAccountClient.d.ts +14 -12
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +2 -2
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +2 -2
- package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +3 -3
- package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +3 -3
- package/dist-types/commands/CancelConnectionCommand.d.ts +3 -3
- package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +3 -3
- package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +3 -3
- package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +3 -3
- package/dist-types/commands/CreatePartnerCommand.d.ts +3 -3
- package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +3 -3
- package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +3 -3
- package/dist-types/commands/GetConnectionCommand.d.ts +3 -3
- package/dist-types/commands/GetConnectionInvitationCommand.d.ts +3 -3
- package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +3 -3
- package/dist-types/commands/GetPartnerCommand.d.ts +3 -3
- package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +3 -3
- package/dist-types/commands/GetProfileVisibilityCommand.d.ts +3 -3
- package/dist-types/commands/GetVerificationCommand.d.ts +107 -0
- package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +3 -3
- package/dist-types/commands/ListConnectionsCommand.d.ts +3 -3
- package/dist-types/commands/ListPartnersCommand.d.ts +3 -3
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -3
- package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +3 -3
- package/dist-types/commands/PutProfileVisibilityCommand.d.ts +3 -3
- package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +3 -3
- package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +3 -3
- package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +3 -3
- package/dist-types/commands/StartVerificationCommand.d.ts +119 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UntagResourceCommand.d.ts +3 -3
- package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +3 -3
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +13 -1
- package/dist-types/endpoint/endpointResolver.d.ts +5 -2
- package/dist-types/extensionConfiguration.d.ts +4 -4
- package/dist-types/models/PartnerCentralAccountServiceException.d.ts +1 -1
- package/dist-types/models/enums.d.ts +30 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +245 -1
- package/dist-types/pagination/Interfaces.d.ts +1 -1
- package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListConnectionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListPartnersPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/runtimeConfig.shared.d.ts +1 -1
- package/dist-types/runtimeExtensions.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +15 -2
- package/dist-types/ts3.4/PartnerCentralAccount.d.ts +35 -0
- package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +15 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/commands/GetVerificationCommand.d.ts +50 -0
- package/dist-types/ts3.4/commands/StartVerificationCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +1 -1
- package/dist-types/ts3.4/models/enums.d.ts +18 -0
- package/dist-types/ts3.4/models/models_0.d.ts +93 -0
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +14 -1
- package/package.json +13 -12
|
@@ -39,6 +39,7 @@ export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[k
|
|
|
39
39
|
* @enum
|
|
40
40
|
*/
|
|
41
41
|
export declare const ConflictExceptionReason: {
|
|
42
|
+
readonly ACCOUNT_ALREADY_VERIFIED: "ACCOUNT_ALREADY_VERIFIED";
|
|
42
43
|
readonly CONFLICT_CLIENT_TOKEN: "CONFLICT_CLIENT_TOKEN";
|
|
43
44
|
readonly DUPLICATE_CONNECTION: "DUPLICATE_CONNECTION";
|
|
44
45
|
readonly DUPLICATE_CONNECTION_INVITATION: "DUPLICATE_CONNECTION_INVITATION";
|
|
@@ -49,6 +50,7 @@ export declare const ConflictExceptionReason: {
|
|
|
49
50
|
readonly INCOMPATIBLE_CONNECTION_STATE: "INCOMPATIBLE_CONNECTION_STATE";
|
|
50
51
|
readonly INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE: "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE";
|
|
51
52
|
readonly INCOMPATIBLE_PROFILE_STATE: "INCOMPATIBLE_PROFILE_STATE";
|
|
53
|
+
readonly VERIFICATION_ALREADY_IN_PROGRESS: "VERIFICATION_ALREADY_IN_PROGRESS";
|
|
52
54
|
};
|
|
53
55
|
/**
|
|
54
56
|
* @public
|
|
@@ -67,6 +69,7 @@ export declare const ResourceNotFoundExceptionReason: {
|
|
|
67
69
|
readonly PARTNER_PROFILE_TASK_NOT_FOUND: "PARTNER_PROFILE_TASK_NOT_FOUND";
|
|
68
70
|
readonly RECEIVER_PROFILE_NOT_FOUND: "RECEIVER_PROFILE_NOT_FOUND";
|
|
69
71
|
readonly SENDER_PROFILE_NOT_FOUND: "SENDER_PROFILE_NOT_FOUND";
|
|
72
|
+
readonly VERIFICATION_NOT_FOUND: "VERIFICATION_NOT_FOUND";
|
|
70
73
|
};
|
|
71
74
|
/**
|
|
72
75
|
* @public
|
|
@@ -278,3 +281,30 @@ export declare const ProfileVisibility: {
|
|
|
278
281
|
* @public
|
|
279
282
|
*/
|
|
280
283
|
export type ProfileVisibility = (typeof ProfileVisibility)[keyof typeof ProfileVisibility];
|
|
284
|
+
/**
|
|
285
|
+
* @public
|
|
286
|
+
* @enum
|
|
287
|
+
*/
|
|
288
|
+
export declare const VerificationType: {
|
|
289
|
+
readonly BUSINESS_VERIFICATION: "BUSINESS_VERIFICATION";
|
|
290
|
+
readonly REGISTRANT_VERIFICATION: "REGISTRANT_VERIFICATION";
|
|
291
|
+
};
|
|
292
|
+
/**
|
|
293
|
+
* @public
|
|
294
|
+
*/
|
|
295
|
+
export type VerificationType = (typeof VerificationType)[keyof typeof VerificationType];
|
|
296
|
+
/**
|
|
297
|
+
* @public
|
|
298
|
+
* @enum
|
|
299
|
+
*/
|
|
300
|
+
export declare const VerificationStatus: {
|
|
301
|
+
readonly FAILED: "FAILED";
|
|
302
|
+
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
303
|
+
readonly PENDING_CUSTOMER_ACTION: "PENDING_CUSTOMER_ACTION";
|
|
304
|
+
readonly REJECTED: "REJECTED";
|
|
305
|
+
readonly SUCCEEDED: "SUCCEEDED";
|
|
306
|
+
};
|
|
307
|
+
/**
|
|
308
|
+
* @public
|
|
309
|
+
*/
|
|
310
|
+
export type VerificationStatus = (typeof VerificationStatus)[keyof typeof VerificationStatus];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
1
|
+
import type { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
2
|
import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceNotFoundExceptionReason, ServiceQuotaExceededExceptionReason, ValidationExceptionReason } from "./enums";
|
|
3
3
|
import { ValidationError } from "./models_0";
|
|
4
4
|
import { PartnerCentralAccountServiceException as __BaseException } from "./PartnerCentralAccountServiceException";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AccessType, BusinessValidationCode, ConnectionType, ConnectionTypeStatus, FieldValidationCode, IndustrySegment, InvitationStatus, ParticipantType, PrimarySolutionType, ProfileTaskStatus, ProfileValidationErrorReason, ProfileVisibility } from "./enums";
|
|
1
|
+
import { AccessType, BusinessValidationCode, ConnectionType, ConnectionTypeStatus, FieldValidationCode, IndustrySegment, InvitationStatus, ParticipantType, PrimarySolutionType, ProfileTaskStatus, ProfileValidationErrorReason, ProfileVisibility, VerificationStatus, VerificationType } from "./enums";
|
|
2
2
|
/**
|
|
3
3
|
* @public
|
|
4
4
|
*/
|
|
@@ -351,6 +351,43 @@ export interface AssociateAwsTrainingCertificationEmailDomainRequest {
|
|
|
351
351
|
*/
|
|
352
352
|
export interface AssociateAwsTrainingCertificationEmailDomainResponse {
|
|
353
353
|
}
|
|
354
|
+
/**
|
|
355
|
+
* <p>Contains the business information required for verifying a company's legal status and registration details within AWS Partner Central.</p>
|
|
356
|
+
* @public
|
|
357
|
+
*/
|
|
358
|
+
export interface BusinessVerificationDetails {
|
|
359
|
+
/**
|
|
360
|
+
* <p>The official legal name of the business as registered with the appropriate government authorities.</p>
|
|
361
|
+
* @public
|
|
362
|
+
*/
|
|
363
|
+
LegalName: string | undefined;
|
|
364
|
+
/**
|
|
365
|
+
* <p>The unique business registration identifier assigned by the government or regulatory authority, such as a company registration number or tax identification number.</p>
|
|
366
|
+
* @public
|
|
367
|
+
*/
|
|
368
|
+
RegistrationId: string | undefined;
|
|
369
|
+
/**
|
|
370
|
+
* <p>The ISO 3166-1 alpha-2 country code where the business is legally registered and operates.</p>
|
|
371
|
+
* @public
|
|
372
|
+
*/
|
|
373
|
+
CountryCode: string | undefined;
|
|
374
|
+
/**
|
|
375
|
+
* <p>The specific legal jurisdiction or state where the business was incorporated or registered, providing additional location context beyond the country code.</p>
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
JurisdictionOfIncorporation?: string | undefined;
|
|
379
|
+
}
|
|
380
|
+
/**
|
|
381
|
+
* <p>Contains the response information and results from a business verification process, including any verification-specific data returned by the verification service.</p>
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
export interface BusinessVerificationResponse {
|
|
385
|
+
/**
|
|
386
|
+
* <p>The business verification details that were processed and verified, potentially including additional information discovered during the verification process.</p>
|
|
387
|
+
* @public
|
|
388
|
+
*/
|
|
389
|
+
BusinessVerificationDetails: BusinessVerificationDetails | undefined;
|
|
390
|
+
}
|
|
354
391
|
/**
|
|
355
392
|
* @public
|
|
356
393
|
*/
|
|
@@ -1760,6 +1797,112 @@ export interface GetProfileVisibilityResponse {
|
|
|
1760
1797
|
*/
|
|
1761
1798
|
ProfileId: string | undefined;
|
|
1762
1799
|
}
|
|
1800
|
+
/**
|
|
1801
|
+
* @public
|
|
1802
|
+
*/
|
|
1803
|
+
export interface GetVerificationRequest {
|
|
1804
|
+
/**
|
|
1805
|
+
* <p>The type of verification to retrieve information for. Valid values include business verification for company registration details and registrant verification for individual identity confirmation.</p>
|
|
1806
|
+
* @public
|
|
1807
|
+
*/
|
|
1808
|
+
VerificationType: VerificationType | undefined;
|
|
1809
|
+
}
|
|
1810
|
+
/**
|
|
1811
|
+
* <p>Contains the response information from a registrant verification process, including any verification-specific data and next steps for the individual verification workflow.</p>
|
|
1812
|
+
* @public
|
|
1813
|
+
*/
|
|
1814
|
+
export interface RegistrantVerificationResponse {
|
|
1815
|
+
/**
|
|
1816
|
+
* <p>A secure URL where the registrant can complete additional verification steps, such as document upload or identity confirmation through a third-party verification service.</p>
|
|
1817
|
+
* @public
|
|
1818
|
+
*/
|
|
1819
|
+
CompletionUrl: string | undefined;
|
|
1820
|
+
/**
|
|
1821
|
+
* <p>The timestamp when the completion URL expires and is no longer valid for accessing the verification workflow.</p>
|
|
1822
|
+
* @public
|
|
1823
|
+
*/
|
|
1824
|
+
CompletionUrlExpiresAt: Date | undefined;
|
|
1825
|
+
}
|
|
1826
|
+
/**
|
|
1827
|
+
* <p>A union structure containing the response details specific to different types of verification processes, providing type-specific information and results.</p>
|
|
1828
|
+
* @public
|
|
1829
|
+
*/
|
|
1830
|
+
export type VerificationResponseDetails = VerificationResponseDetails.BusinessVerificationResponseMember | VerificationResponseDetails.RegistrantVerificationResponseMember | VerificationResponseDetails.$UnknownMember;
|
|
1831
|
+
/**
|
|
1832
|
+
* @public
|
|
1833
|
+
*/
|
|
1834
|
+
export declare namespace VerificationResponseDetails {
|
|
1835
|
+
/**
|
|
1836
|
+
* <p>The response details from a business verification process, including verification results and any additional business information discovered.</p>
|
|
1837
|
+
* @public
|
|
1838
|
+
*/
|
|
1839
|
+
interface BusinessVerificationResponseMember {
|
|
1840
|
+
BusinessVerificationResponse: BusinessVerificationResponse;
|
|
1841
|
+
RegistrantVerificationResponse?: never;
|
|
1842
|
+
$unknown?: never;
|
|
1843
|
+
}
|
|
1844
|
+
/**
|
|
1845
|
+
* <p>The response details from a registrant verification process, including verification results and any additional steps required for identity confirmation.</p>
|
|
1846
|
+
* @public
|
|
1847
|
+
*/
|
|
1848
|
+
interface RegistrantVerificationResponseMember {
|
|
1849
|
+
BusinessVerificationResponse?: never;
|
|
1850
|
+
RegistrantVerificationResponse: RegistrantVerificationResponse;
|
|
1851
|
+
$unknown?: never;
|
|
1852
|
+
}
|
|
1853
|
+
/**
|
|
1854
|
+
* @public
|
|
1855
|
+
*/
|
|
1856
|
+
interface $UnknownMember {
|
|
1857
|
+
BusinessVerificationResponse?: never;
|
|
1858
|
+
RegistrantVerificationResponse?: never;
|
|
1859
|
+
$unknown: [string, any];
|
|
1860
|
+
}
|
|
1861
|
+
/**
|
|
1862
|
+
* @deprecated unused in schema-serde mode.
|
|
1863
|
+
*
|
|
1864
|
+
*/
|
|
1865
|
+
interface Visitor<T> {
|
|
1866
|
+
BusinessVerificationResponse: (value: BusinessVerificationResponse) => T;
|
|
1867
|
+
RegistrantVerificationResponse: (value: RegistrantVerificationResponse) => T;
|
|
1868
|
+
_: (name: string, value: any) => T;
|
|
1869
|
+
}
|
|
1870
|
+
}
|
|
1871
|
+
/**
|
|
1872
|
+
* @public
|
|
1873
|
+
*/
|
|
1874
|
+
export interface GetVerificationResponse {
|
|
1875
|
+
/**
|
|
1876
|
+
* <p>The type of verification that was requested and processed.</p>
|
|
1877
|
+
* @public
|
|
1878
|
+
*/
|
|
1879
|
+
VerificationType: VerificationType | undefined;
|
|
1880
|
+
/**
|
|
1881
|
+
* <p>The current status of the verification process. Possible values include pending, in-progress, completed, failed, or expired.</p>
|
|
1882
|
+
* @public
|
|
1883
|
+
*/
|
|
1884
|
+
VerificationStatus: VerificationStatus | undefined;
|
|
1885
|
+
/**
|
|
1886
|
+
* <p>Additional information explaining the current verification status, particularly useful when the status indicates a failure or requires additional action.</p>
|
|
1887
|
+
* @public
|
|
1888
|
+
*/
|
|
1889
|
+
VerificationStatusReason?: string | undefined;
|
|
1890
|
+
/**
|
|
1891
|
+
* <p>Detailed response information specific to the type of verification performed, including any verification-specific data or results.</p>
|
|
1892
|
+
* @public
|
|
1893
|
+
*/
|
|
1894
|
+
VerificationResponseDetails: VerificationResponseDetails | undefined;
|
|
1895
|
+
/**
|
|
1896
|
+
* <p>The timestamp when the verification process was initiated.</p>
|
|
1897
|
+
* @public
|
|
1898
|
+
*/
|
|
1899
|
+
StartedAt: Date | undefined;
|
|
1900
|
+
/**
|
|
1901
|
+
* <p>The timestamp when the verification process was completed. This field is null if the verification is still in progress.</p>
|
|
1902
|
+
* @public
|
|
1903
|
+
*/
|
|
1904
|
+
CompletedAt?: Date | undefined;
|
|
1905
|
+
}
|
|
1763
1906
|
/**
|
|
1764
1907
|
* @public
|
|
1765
1908
|
*/
|
|
@@ -2041,6 +2184,107 @@ export interface SendEmailVerificationCodeRequest {
|
|
|
2041
2184
|
*/
|
|
2042
2185
|
export interface SendEmailVerificationCodeResponse {
|
|
2043
2186
|
}
|
|
2187
|
+
/**
|
|
2188
|
+
* <p>Contains the personal information required for verifying an individual's identity as part of the partner registration process in AWS Partner Central.</p>
|
|
2189
|
+
* @public
|
|
2190
|
+
*/
|
|
2191
|
+
export interface RegistrantVerificationDetails {
|
|
2192
|
+
}
|
|
2193
|
+
/**
|
|
2194
|
+
* <p>A union structure containing the specific details required for different types of verification processes supported by AWS Partner Central.</p>
|
|
2195
|
+
* @public
|
|
2196
|
+
*/
|
|
2197
|
+
export type VerificationDetails = VerificationDetails.BusinessVerificationDetailsMember | VerificationDetails.RegistrantVerificationDetailsMember | VerificationDetails.$UnknownMember;
|
|
2198
|
+
/**
|
|
2199
|
+
* @public
|
|
2200
|
+
*/
|
|
2201
|
+
export declare namespace VerificationDetails {
|
|
2202
|
+
/**
|
|
2203
|
+
* <p>The business verification details to be used when starting a business verification process.</p>
|
|
2204
|
+
* @public
|
|
2205
|
+
*/
|
|
2206
|
+
interface BusinessVerificationDetailsMember {
|
|
2207
|
+
BusinessVerificationDetails: BusinessVerificationDetails;
|
|
2208
|
+
RegistrantVerificationDetails?: never;
|
|
2209
|
+
$unknown?: never;
|
|
2210
|
+
}
|
|
2211
|
+
/**
|
|
2212
|
+
* <p>The registrant verification details to be used when starting an individual identity verification process.</p>
|
|
2213
|
+
* @public
|
|
2214
|
+
*/
|
|
2215
|
+
interface RegistrantVerificationDetailsMember {
|
|
2216
|
+
BusinessVerificationDetails?: never;
|
|
2217
|
+
RegistrantVerificationDetails: RegistrantVerificationDetails;
|
|
2218
|
+
$unknown?: never;
|
|
2219
|
+
}
|
|
2220
|
+
/**
|
|
2221
|
+
* @public
|
|
2222
|
+
*/
|
|
2223
|
+
interface $UnknownMember {
|
|
2224
|
+
BusinessVerificationDetails?: never;
|
|
2225
|
+
RegistrantVerificationDetails?: never;
|
|
2226
|
+
$unknown: [string, any];
|
|
2227
|
+
}
|
|
2228
|
+
/**
|
|
2229
|
+
* @deprecated unused in schema-serde mode.
|
|
2230
|
+
*
|
|
2231
|
+
*/
|
|
2232
|
+
interface Visitor<T> {
|
|
2233
|
+
BusinessVerificationDetails: (value: BusinessVerificationDetails) => T;
|
|
2234
|
+
RegistrantVerificationDetails: (value: RegistrantVerificationDetails) => T;
|
|
2235
|
+
_: (name: string, value: any) => T;
|
|
2236
|
+
}
|
|
2237
|
+
}
|
|
2238
|
+
/**
|
|
2239
|
+
* @public
|
|
2240
|
+
*/
|
|
2241
|
+
export interface StartVerificationRequest {
|
|
2242
|
+
/**
|
|
2243
|
+
* <p>A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This prevents duplicate verification processes from being started accidentally.</p>
|
|
2244
|
+
* @public
|
|
2245
|
+
*/
|
|
2246
|
+
ClientToken?: string | undefined;
|
|
2247
|
+
/**
|
|
2248
|
+
* <p>The specific details required for the verification process, including business information for business verification or personal information for registrant verification.</p>
|
|
2249
|
+
* @public
|
|
2250
|
+
*/
|
|
2251
|
+
VerificationDetails?: VerificationDetails | undefined;
|
|
2252
|
+
}
|
|
2253
|
+
/**
|
|
2254
|
+
* @public
|
|
2255
|
+
*/
|
|
2256
|
+
export interface StartVerificationResponse {
|
|
2257
|
+
/**
|
|
2258
|
+
* <p>The type of verification that was started based on the provided verification details.</p>
|
|
2259
|
+
* @public
|
|
2260
|
+
*/
|
|
2261
|
+
VerificationType: VerificationType | undefined;
|
|
2262
|
+
/**
|
|
2263
|
+
* <p>The initial status of the verification process after it has been started. Typically this will be pending or in-progress.</p>
|
|
2264
|
+
* @public
|
|
2265
|
+
*/
|
|
2266
|
+
VerificationStatus: VerificationStatus | undefined;
|
|
2267
|
+
/**
|
|
2268
|
+
* <p>Additional information about the initial verification status, including any immediate feedback about the submitted verification details.</p>
|
|
2269
|
+
* @public
|
|
2270
|
+
*/
|
|
2271
|
+
VerificationStatusReason?: string | undefined;
|
|
2272
|
+
/**
|
|
2273
|
+
* <p>Initial response details specific to the type of verification started, which may include next steps or additional requirements.</p>
|
|
2274
|
+
* @public
|
|
2275
|
+
*/
|
|
2276
|
+
VerificationResponseDetails: VerificationResponseDetails | undefined;
|
|
2277
|
+
/**
|
|
2278
|
+
* <p>The timestamp when the verification process was successfully initiated.</p>
|
|
2279
|
+
* @public
|
|
2280
|
+
*/
|
|
2281
|
+
StartedAt: Date | undefined;
|
|
2282
|
+
/**
|
|
2283
|
+
* <p>The timestamp when the verification process was completed. This field is typically null for newly started verifications unless they complete immediately.</p>
|
|
2284
|
+
* @public
|
|
2285
|
+
*/
|
|
2286
|
+
CompletedAt?: Date | undefined;
|
|
2287
|
+
}
|
|
2044
2288
|
/**
|
|
2045
2289
|
* @public
|
|
2046
2290
|
*/
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListConnectionInvitationsCommandInput, ListConnectionInvitationsCommandOutput } from "../commands/ListConnectionInvitationsCommand";
|
|
3
3
|
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
3
3
|
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { Paginator } from "@smithy/types";
|
|
1
|
+
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListPartnersCommandInput, ListPartnersCommandOutput } from "../commands/ListPartnersCommand";
|
|
3
3
|
import { PartnerCentralAccountPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
|
|
2
|
-
import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
|
|
2
|
+
import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
|
|
2
|
-
import { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
|
|
2
|
+
import type { PartnerCentralAccountClientConfig } from "./PartnerCentralAccountClient";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
5
5
|
*/
|
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
import { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
1
|
+
import type { StaticErrorSchema, StaticListSchema, StaticMapSchema, StaticOperationSchema, StaticSimpleSchema, StaticStructureSchema } from "@smithy/types";
|
|
2
2
|
export declare var EmailVerificationCode: StaticSimpleSchema;
|
|
3
|
+
export declare var LegalName: StaticSimpleSchema;
|
|
4
|
+
export declare var RegistrationId: StaticSimpleSchema;
|
|
3
5
|
export declare var SensitiveUnicodeString: StaticSimpleSchema;
|
|
4
6
|
export declare var AcceptConnectionInvitationRequest: StaticStructureSchema;
|
|
5
7
|
export declare var AcceptConnectionInvitationResponse: StaticStructureSchema;
|
|
@@ -9,6 +11,8 @@ export declare var AllianceLeadContact: StaticStructureSchema;
|
|
|
9
11
|
export declare var AssociateAwsTrainingCertificationEmailDomainRequest: StaticStructureSchema;
|
|
10
12
|
export declare var AssociateAwsTrainingCertificationEmailDomainResponse: StaticStructureSchema;
|
|
11
13
|
export declare var BusinessValidationError: StaticStructureSchema;
|
|
14
|
+
export declare var BusinessVerificationDetails: StaticStructureSchema;
|
|
15
|
+
export declare var BusinessVerificationResponse: StaticStructureSchema;
|
|
12
16
|
export declare var CancelConnectionInvitationRequest: StaticStructureSchema;
|
|
13
17
|
export declare var CancelConnectionInvitationResponse: StaticStructureSchema;
|
|
14
18
|
export declare var CancelConnectionRequest: StaticStructureSchema;
|
|
@@ -43,6 +47,8 @@ export declare var GetProfileUpdateTaskRequest: StaticStructureSchema;
|
|
|
43
47
|
export declare var GetProfileUpdateTaskResponse: StaticStructureSchema;
|
|
44
48
|
export declare var GetProfileVisibilityRequest: StaticStructureSchema;
|
|
45
49
|
export declare var GetProfileVisibilityResponse: StaticStructureSchema;
|
|
50
|
+
export declare var GetVerificationRequest: StaticStructureSchema;
|
|
51
|
+
export declare var GetVerificationResponse: StaticStructureSchema;
|
|
46
52
|
export declare var InternalServerException: StaticErrorSchema;
|
|
47
53
|
export declare var ListConnectionInvitationsRequest: StaticStructureSchema;
|
|
48
54
|
export declare var ListConnectionInvitationsResponse: StaticStructureSchema;
|
|
@@ -61,6 +67,8 @@ export declare var PutAllianceLeadContactRequest: StaticStructureSchema;
|
|
|
61
67
|
export declare var PutAllianceLeadContactResponse: StaticStructureSchema;
|
|
62
68
|
export declare var PutProfileVisibilityRequest: StaticStructureSchema;
|
|
63
69
|
export declare var PutProfileVisibilityResponse: StaticStructureSchema;
|
|
70
|
+
export declare var RegistrantVerificationDetails: StaticStructureSchema;
|
|
71
|
+
export declare var RegistrantVerificationResponse: StaticStructureSchema;
|
|
64
72
|
export declare var RejectConnectionInvitationRequest: StaticStructureSchema;
|
|
65
73
|
export declare var RejectConnectionInvitationResponse: StaticStructureSchema;
|
|
66
74
|
export declare var ResourceNotFoundException: StaticErrorSchema;
|
|
@@ -70,6 +78,8 @@ export declare var SendEmailVerificationCodeResponse: StaticStructureSchema;
|
|
|
70
78
|
export declare var ServiceQuotaExceededException: StaticErrorSchema;
|
|
71
79
|
export declare var StartProfileUpdateTaskRequest: StaticStructureSchema;
|
|
72
80
|
export declare var StartProfileUpdateTaskResponse: StaticStructureSchema;
|
|
81
|
+
export declare var StartVerificationRequest: StaticStructureSchema;
|
|
82
|
+
export declare var StartVerificationResponse: StaticStructureSchema;
|
|
73
83
|
export declare var Tag: StaticStructureSchema;
|
|
74
84
|
export declare var TagResourceRequest: StaticStructureSchema;
|
|
75
85
|
export declare var TagResourceResponse: StaticStructureSchema;
|
|
@@ -80,7 +90,6 @@ export declare var UntagResourceResponse: StaticStructureSchema;
|
|
|
80
90
|
export declare var UpdateConnectionPreferencesRequest: StaticStructureSchema;
|
|
81
91
|
export declare var UpdateConnectionPreferencesResponse: StaticStructureSchema;
|
|
82
92
|
export declare var ValidationException: StaticErrorSchema;
|
|
83
|
-
export declare var __Unit: "unit";
|
|
84
93
|
export declare var PartnerCentralAccountServiceException: StaticErrorSchema;
|
|
85
94
|
export declare var ConnectionInvitationSummaryList: StaticListSchema;
|
|
86
95
|
export declare var ConnectionSummaryList: StaticListSchema;
|
|
@@ -97,6 +106,8 @@ export declare var ConnectionTypeDetailMap: StaticMapSchema;
|
|
|
97
106
|
export declare var ConnectionTypeSummaryMap: StaticMapSchema;
|
|
98
107
|
export declare var Participant: StaticStructureSchema;
|
|
99
108
|
export declare var ValidationError: StaticStructureSchema;
|
|
109
|
+
export declare var VerificationDetails: StaticStructureSchema;
|
|
110
|
+
export declare var VerificationResponseDetails: StaticStructureSchema;
|
|
100
111
|
export declare var AcceptConnectionInvitation: StaticOperationSchema;
|
|
101
112
|
export declare var AssociateAwsTrainingCertificationEmailDomain: StaticOperationSchema;
|
|
102
113
|
export declare var CancelConnection: StaticOperationSchema;
|
|
@@ -112,6 +123,7 @@ export declare var GetConnectionPreferences: StaticOperationSchema;
|
|
|
112
123
|
export declare var GetPartner: StaticOperationSchema;
|
|
113
124
|
export declare var GetProfileUpdateTask: StaticOperationSchema;
|
|
114
125
|
export declare var GetProfileVisibility: StaticOperationSchema;
|
|
126
|
+
export declare var GetVerification: StaticOperationSchema;
|
|
115
127
|
export declare var ListConnectionInvitations: StaticOperationSchema;
|
|
116
128
|
export declare var ListConnections: StaticOperationSchema;
|
|
117
129
|
export declare var ListPartners: StaticOperationSchema;
|
|
@@ -121,6 +133,7 @@ export declare var PutProfileVisibility: StaticOperationSchema;
|
|
|
121
133
|
export declare var RejectConnectionInvitation: StaticOperationSchema;
|
|
122
134
|
export declare var SendEmailVerificationCode: StaticOperationSchema;
|
|
123
135
|
export declare var StartProfileUpdateTask: StaticOperationSchema;
|
|
136
|
+
export declare var StartVerification: StaticOperationSchema;
|
|
124
137
|
export declare var TagResource: StaticOperationSchema;
|
|
125
138
|
export declare var UntagResource: StaticOperationSchema;
|
|
126
139
|
export declare var UpdateConnectionPreferences: StaticOperationSchema;
|
|
@@ -59,6 +59,10 @@ import {
|
|
|
59
59
|
GetProfileVisibilityCommandInput,
|
|
60
60
|
GetProfileVisibilityCommandOutput,
|
|
61
61
|
} from "./commands/GetProfileVisibilityCommand";
|
|
62
|
+
import {
|
|
63
|
+
GetVerificationCommandInput,
|
|
64
|
+
GetVerificationCommandOutput,
|
|
65
|
+
} from "./commands/GetVerificationCommand";
|
|
62
66
|
import {
|
|
63
67
|
ListConnectionInvitationsCommandInput,
|
|
64
68
|
ListConnectionInvitationsCommandOutput,
|
|
@@ -95,6 +99,10 @@ import {
|
|
|
95
99
|
StartProfileUpdateTaskCommandInput,
|
|
96
100
|
StartProfileUpdateTaskCommandOutput,
|
|
97
101
|
} from "./commands/StartProfileUpdateTaskCommand";
|
|
102
|
+
import {
|
|
103
|
+
StartVerificationCommandInput,
|
|
104
|
+
StartVerificationCommandOutput,
|
|
105
|
+
} from "./commands/StartVerificationCommand";
|
|
98
106
|
import {
|
|
99
107
|
TagResourceCommandInput,
|
|
100
108
|
TagResourceCommandOutput,
|
|
@@ -316,6 +324,19 @@ export interface PartnerCentralAccount {
|
|
|
316
324
|
options: __HttpHandlerOptions,
|
|
317
325
|
cb: (err: any, data?: GetProfileVisibilityCommandOutput) => void
|
|
318
326
|
): void;
|
|
327
|
+
getVerification(
|
|
328
|
+
args: GetVerificationCommandInput,
|
|
329
|
+
options?: __HttpHandlerOptions
|
|
330
|
+
): Promise<GetVerificationCommandOutput>;
|
|
331
|
+
getVerification(
|
|
332
|
+
args: GetVerificationCommandInput,
|
|
333
|
+
cb: (err: any, data?: GetVerificationCommandOutput) => void
|
|
334
|
+
): void;
|
|
335
|
+
getVerification(
|
|
336
|
+
args: GetVerificationCommandInput,
|
|
337
|
+
options: __HttpHandlerOptions,
|
|
338
|
+
cb: (err: any, data?: GetVerificationCommandOutput) => void
|
|
339
|
+
): void;
|
|
319
340
|
listConnectionInvitations(
|
|
320
341
|
args: ListConnectionInvitationsCommandInput,
|
|
321
342
|
options?: __HttpHandlerOptions
|
|
@@ -433,6 +454,20 @@ export interface PartnerCentralAccount {
|
|
|
433
454
|
options: __HttpHandlerOptions,
|
|
434
455
|
cb: (err: any, data?: StartProfileUpdateTaskCommandOutput) => void
|
|
435
456
|
): void;
|
|
457
|
+
startVerification(): Promise<StartVerificationCommandOutput>;
|
|
458
|
+
startVerification(
|
|
459
|
+
args: StartVerificationCommandInput,
|
|
460
|
+
options?: __HttpHandlerOptions
|
|
461
|
+
): Promise<StartVerificationCommandOutput>;
|
|
462
|
+
startVerification(
|
|
463
|
+
args: StartVerificationCommandInput,
|
|
464
|
+
cb: (err: any, data?: StartVerificationCommandOutput) => void
|
|
465
|
+
): void;
|
|
466
|
+
startVerification(
|
|
467
|
+
args: StartVerificationCommandInput,
|
|
468
|
+
options: __HttpHandlerOptions,
|
|
469
|
+
cb: (err: any, data?: StartVerificationCommandOutput) => void
|
|
470
|
+
): void;
|
|
436
471
|
tagResource(
|
|
437
472
|
args: TagResourceCommandInput,
|
|
438
473
|
options?: __HttpHandlerOptions
|
|
@@ -20,13 +20,12 @@ import {
|
|
|
20
20
|
} from "@smithy/middleware-retry";
|
|
21
21
|
import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
22
22
|
import {
|
|
23
|
-
Client as __Client,
|
|
24
23
|
DefaultsMode as __DefaultsMode,
|
|
25
24
|
SmithyConfiguration as __SmithyConfiguration,
|
|
26
25
|
SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
|
|
26
|
+
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
-
AwsCredentialIdentityProvider,
|
|
30
29
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
31
30
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
32
31
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -39,9 +38,10 @@ import {
|
|
|
39
38
|
HttpResponse,
|
|
40
39
|
Logger as __Logger,
|
|
41
40
|
Provider as __Provider,
|
|
42
|
-
Provider,
|
|
43
41
|
StreamCollector as __StreamCollector,
|
|
44
42
|
UrlParser as __UrlParser,
|
|
43
|
+
AwsCredentialIdentityProvider,
|
|
44
|
+
Provider,
|
|
45
45
|
UserAgent as __UserAgent,
|
|
46
46
|
} from "@smithy/types";
|
|
47
47
|
import {
|
|
@@ -108,6 +108,10 @@ import {
|
|
|
108
108
|
GetProfileVisibilityCommandInput,
|
|
109
109
|
GetProfileVisibilityCommandOutput,
|
|
110
110
|
} from "./commands/GetProfileVisibilityCommand";
|
|
111
|
+
import {
|
|
112
|
+
GetVerificationCommandInput,
|
|
113
|
+
GetVerificationCommandOutput,
|
|
114
|
+
} from "./commands/GetVerificationCommand";
|
|
111
115
|
import {
|
|
112
116
|
ListConnectionInvitationsCommandInput,
|
|
113
117
|
ListConnectionInvitationsCommandOutput,
|
|
@@ -144,6 +148,10 @@ import {
|
|
|
144
148
|
StartProfileUpdateTaskCommandInput,
|
|
145
149
|
StartProfileUpdateTaskCommandOutput,
|
|
146
150
|
} from "./commands/StartProfileUpdateTaskCommand";
|
|
151
|
+
import {
|
|
152
|
+
StartVerificationCommandInput,
|
|
153
|
+
StartVerificationCommandOutput,
|
|
154
|
+
} from "./commands/StartVerificationCommand";
|
|
147
155
|
import {
|
|
148
156
|
TagResourceCommandInput,
|
|
149
157
|
TagResourceCommandOutput,
|
|
@@ -179,6 +187,7 @@ export type ServiceInputTypes =
|
|
|
179
187
|
| GetPartnerCommandInput
|
|
180
188
|
| GetProfileUpdateTaskCommandInput
|
|
181
189
|
| GetProfileVisibilityCommandInput
|
|
190
|
+
| GetVerificationCommandInput
|
|
182
191
|
| ListConnectionInvitationsCommandInput
|
|
183
192
|
| ListConnectionsCommandInput
|
|
184
193
|
| ListPartnersCommandInput
|
|
@@ -188,6 +197,7 @@ export type ServiceInputTypes =
|
|
|
188
197
|
| RejectConnectionInvitationCommandInput
|
|
189
198
|
| SendEmailVerificationCodeCommandInput
|
|
190
199
|
| StartProfileUpdateTaskCommandInput
|
|
200
|
+
| StartVerificationCommandInput
|
|
191
201
|
| TagResourceCommandInput
|
|
192
202
|
| UntagResourceCommandInput
|
|
193
203
|
| UpdateConnectionPreferencesCommandInput;
|
|
@@ -207,6 +217,7 @@ export type ServiceOutputTypes =
|
|
|
207
217
|
| GetPartnerCommandOutput
|
|
208
218
|
| GetProfileUpdateTaskCommandOutput
|
|
209
219
|
| GetProfileVisibilityCommandOutput
|
|
220
|
+
| GetVerificationCommandOutput
|
|
210
221
|
| ListConnectionInvitationsCommandOutput
|
|
211
222
|
| ListConnectionsCommandOutput
|
|
212
223
|
| ListPartnersCommandOutput
|
|
@@ -216,6 +227,7 @@ export type ServiceOutputTypes =
|
|
|
216
227
|
| RejectConnectionInvitationCommandOutput
|
|
217
228
|
| SendEmailVerificationCodeCommandOutput
|
|
218
229
|
| StartProfileUpdateTaskCommandOutput
|
|
230
|
+
| StartVerificationCommandOutput
|
|
219
231
|
| TagResourceCommandOutput
|
|
220
232
|
| UntagResourceCommandOutput
|
|
221
233
|
| UpdateConnectionPreferencesCommandOutput;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import {
|
|
2
|
+
HttpAuthScheme,
|
|
2
3
|
AwsCredentialIdentity,
|
|
3
4
|
AwsCredentialIdentityProvider,
|
|
4
|
-
HttpAuthScheme,
|
|
5
5
|
} from "@smithy/types";
|
|
6
6
|
import { PartnerCentralAccountHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
7
7
|
export interface HttpAuthExtensionConfiguration {
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import {
|
|
4
|
+
GetVerificationRequest,
|
|
5
|
+
GetVerificationResponse,
|
|
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 GetVerificationCommandInput extends GetVerificationRequest {}
|
|
15
|
+
export interface GetVerificationCommandOutput
|
|
16
|
+
extends GetVerificationResponse,
|
|
17
|
+
__MetadataBearer {}
|
|
18
|
+
declare const GetVerificationCommand_base: {
|
|
19
|
+
new (
|
|
20
|
+
input: GetVerificationCommandInput
|
|
21
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
22
|
+
GetVerificationCommandInput,
|
|
23
|
+
GetVerificationCommandOutput,
|
|
24
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
25
|
+
ServiceInputTypes,
|
|
26
|
+
ServiceOutputTypes
|
|
27
|
+
>;
|
|
28
|
+
new (
|
|
29
|
+
input: GetVerificationCommandInput
|
|
30
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
31
|
+
GetVerificationCommandInput,
|
|
32
|
+
GetVerificationCommandOutput,
|
|
33
|
+
PartnerCentralAccountClientResolvedConfig,
|
|
34
|
+
ServiceInputTypes,
|
|
35
|
+
ServiceOutputTypes
|
|
36
|
+
>;
|
|
37
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
38
|
+
};
|
|
39
|
+
export declare class GetVerificationCommand extends GetVerificationCommand_base {
|
|
40
|
+
protected static __types: {
|
|
41
|
+
api: {
|
|
42
|
+
input: GetVerificationRequest;
|
|
43
|
+
output: GetVerificationResponse;
|
|
44
|
+
};
|
|
45
|
+
sdk: {
|
|
46
|
+
input: GetVerificationCommandInput;
|
|
47
|
+
output: GetVerificationCommandOutput;
|
|
48
|
+
};
|
|
49
|
+
};
|
|
50
|
+
}
|