@aws-sdk/client-partnercentral-account 3.942.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (167) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +421 -0
  3. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  4. package/dist-cjs/endpoint/endpointResolver.js +18 -0
  5. package/dist-cjs/endpoint/ruleset.js +7 -0
  6. package/dist-cjs/index.js +1701 -0
  7. package/dist-cjs/runtimeConfig.browser.js +39 -0
  8. package/dist-cjs/runtimeConfig.js +56 -0
  9. package/dist-cjs/runtimeConfig.native.js +15 -0
  10. package/dist-cjs/runtimeConfig.shared.js +41 -0
  11. package/dist-es/PartnerCentralAccount.js +61 -0
  12. package/dist-es/PartnerCentralAccountClient.js +50 -0
  13. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  14. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  15. package/dist-es/commands/AcceptConnectionInvitationCommand.js +16 -0
  16. package/dist-es/commands/AssociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  17. package/dist-es/commands/CancelConnectionCommand.js +16 -0
  18. package/dist-es/commands/CancelConnectionInvitationCommand.js +16 -0
  19. package/dist-es/commands/CancelProfileUpdateTaskCommand.js +16 -0
  20. package/dist-es/commands/CreateConnectionInvitationCommand.js +16 -0
  21. package/dist-es/commands/CreatePartnerCommand.js +16 -0
  22. package/dist-es/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.js +16 -0
  23. package/dist-es/commands/GetAllianceLeadContactCommand.js +16 -0
  24. package/dist-es/commands/GetConnectionCommand.js +16 -0
  25. package/dist-es/commands/GetConnectionInvitationCommand.js +16 -0
  26. package/dist-es/commands/GetConnectionPreferencesCommand.js +16 -0
  27. package/dist-es/commands/GetPartnerCommand.js +16 -0
  28. package/dist-es/commands/GetProfileUpdateTaskCommand.js +16 -0
  29. package/dist-es/commands/GetProfileVisibilityCommand.js +16 -0
  30. package/dist-es/commands/ListConnectionInvitationsCommand.js +16 -0
  31. package/dist-es/commands/ListConnectionsCommand.js +16 -0
  32. package/dist-es/commands/ListPartnersCommand.js +16 -0
  33. package/dist-es/commands/ListTagsForResourceCommand.js +16 -0
  34. package/dist-es/commands/PutAllianceLeadContactCommand.js +16 -0
  35. package/dist-es/commands/PutProfileVisibilityCommand.js +16 -0
  36. package/dist-es/commands/RejectConnectionInvitationCommand.js +16 -0
  37. package/dist-es/commands/SendEmailVerificationCodeCommand.js +16 -0
  38. package/dist-es/commands/StartProfileUpdateTaskCommand.js +16 -0
  39. package/dist-es/commands/TagResourceCommand.js +16 -0
  40. package/dist-es/commands/UntagResourceCommand.js +16 -0
  41. package/dist-es/commands/UpdateConnectionPreferencesCommand.js +16 -0
  42. package/dist-es/commands/index.js +27 -0
  43. package/dist-es/endpoint/EndpointParameters.js +11 -0
  44. package/dist-es/endpoint/endpointResolver.js +14 -0
  45. package/dist-es/endpoint/ruleset.js +4 -0
  46. package/dist-es/extensionConfiguration.js +1 -0
  47. package/dist-es/index.js +7 -0
  48. package/dist-es/models/PartnerCentralAccountServiceException.js +8 -0
  49. package/dist-es/models/enums.js +144 -0
  50. package/dist-es/models/errors.js +117 -0
  51. package/dist-es/models/models_0.js +1 -0
  52. package/dist-es/pagination/Interfaces.js +1 -0
  53. package/dist-es/pagination/ListConnectionInvitationsPaginator.js +4 -0
  54. package/dist-es/pagination/ListConnectionsPaginator.js +4 -0
  55. package/dist-es/pagination/ListPartnersPaginator.js +4 -0
  56. package/dist-es/pagination/index.js +4 -0
  57. package/dist-es/runtimeConfig.browser.js +34 -0
  58. package/dist-es/runtimeConfig.js +51 -0
  59. package/dist-es/runtimeConfig.native.js +11 -0
  60. package/dist-es/runtimeConfig.shared.js +37 -0
  61. package/dist-es/runtimeExtensions.js +9 -0
  62. package/dist-es/schemas/schemas_0.js +900 -0
  63. package/dist-types/PartnerCentralAccount.d.ts +199 -0
  64. package/dist-types/PartnerCentralAccountClient.d.ts +223 -0
  65. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  66. package/dist-types/auth/httpAuthSchemeProvider.d.ts +75 -0
  67. package/dist-types/commands/AcceptConnectionInvitationCommand.d.ts +123 -0
  68. package/dist-types/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +94 -0
  69. package/dist-types/commands/CancelConnectionCommand.d.ts +123 -0
  70. package/dist-types/commands/CancelConnectionInvitationCommand.d.ts +107 -0
  71. package/dist-types/commands/CancelProfileUpdateTaskCommand.d.ts +128 -0
  72. package/dist-types/commands/CreateConnectionInvitationCommand.d.ts +111 -0
  73. package/dist-types/commands/CreatePartnerCommand.d.ts +142 -0
  74. package/dist-types/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +90 -0
  75. package/dist-types/commands/GetAllianceLeadContactCommand.d.ts +98 -0
  76. package/dist-types/commands/GetConnectionCommand.d.ts +117 -0
  77. package/dist-types/commands/GetConnectionInvitationCommand.d.ts +103 -0
  78. package/dist-types/commands/GetConnectionPreferencesCommand.d.ts +93 -0
  79. package/dist-types/commands/GetPartnerCommand.d.ts +121 -0
  80. package/dist-types/commands/GetProfileUpdateTaskCommand.d.ts +123 -0
  81. package/dist-types/commands/GetProfileVisibilityCommand.d.ts +94 -0
  82. package/dist-types/commands/ListConnectionInvitationsCommand.d.ts +109 -0
  83. package/dist-types/commands/ListConnectionsCommand.d.ts +119 -0
  84. package/dist-types/commands/ListPartnersCommand.d.ts +96 -0
  85. package/dist-types/commands/ListTagsForResourceCommand.d.ts +95 -0
  86. package/dist-types/commands/PutAllianceLeadContactCommand.d.ts +105 -0
  87. package/dist-types/commands/PutProfileVisibilityCommand.d.ts +95 -0
  88. package/dist-types/commands/RejectConnectionInvitationCommand.d.ts +108 -0
  89. package/dist-types/commands/SendEmailVerificationCodeCommand.d.ts +88 -0
  90. package/dist-types/commands/StartProfileUpdateTaskCommand.d.ts +147 -0
  91. package/dist-types/commands/TagResourceCommand.d.ts +96 -0
  92. package/dist-types/commands/UntagResourceCommand.d.ts +93 -0
  93. package/dist-types/commands/UpdateConnectionPreferencesCommand.d.ts +101 -0
  94. package/dist-types/commands/index.d.ts +27 -0
  95. package/dist-types/endpoint/EndpointParameters.d.ts +32 -0
  96. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  97. package/dist-types/endpoint/ruleset.d.ts +2 -0
  98. package/dist-types/extensionConfiguration.d.ts +9 -0
  99. package/dist-types/index.d.ts +16 -0
  100. package/dist-types/models/PartnerCentralAccountServiceException.d.ts +14 -0
  101. package/dist-types/models/enums.d.ts +280 -0
  102. package/dist-types/models/errors.d.ts +137 -0
  103. package/dist-types/models/models_0.d.ts +2083 -0
  104. package/dist-types/pagination/Interfaces.d.ts +8 -0
  105. package/dist-types/pagination/ListConnectionInvitationsPaginator.d.ts +7 -0
  106. package/dist-types/pagination/ListConnectionsPaginator.d.ts +7 -0
  107. package/dist-types/pagination/ListPartnersPaginator.d.ts +7 -0
  108. package/dist-types/pagination/index.d.ts +4 -0
  109. package/dist-types/runtimeConfig.browser.d.ts +51 -0
  110. package/dist-types/runtimeConfig.d.ts +51 -0
  111. package/dist-types/runtimeConfig.native.d.ts +50 -0
  112. package/dist-types/runtimeConfig.shared.d.ts +22 -0
  113. package/dist-types/runtimeExtensions.d.ts +17 -0
  114. package/dist-types/schemas/schemas_0.d.ts +126 -0
  115. package/dist-types/ts3.4/PartnerCentralAccount.d.ts +478 -0
  116. package/dist-types/ts3.4/PartnerCentralAccountClient.d.ts +288 -0
  117. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  118. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +47 -0
  119. package/dist-types/ts3.4/commands/AcceptConnectionInvitationCommand.d.ts +51 -0
  120. package/dist-types/ts3.4/commands/AssociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  121. package/dist-types/ts3.4/commands/CancelConnectionCommand.d.ts +50 -0
  122. package/dist-types/ts3.4/commands/CancelConnectionInvitationCommand.d.ts +51 -0
  123. package/dist-types/ts3.4/commands/CancelProfileUpdateTaskCommand.d.ts +51 -0
  124. package/dist-types/ts3.4/commands/CreateConnectionInvitationCommand.d.ts +51 -0
  125. package/dist-types/ts3.4/commands/CreatePartnerCommand.d.ts +50 -0
  126. package/dist-types/ts3.4/commands/DisassociateAwsTrainingCertificationEmailDomainCommand.d.ts +51 -0
  127. package/dist-types/ts3.4/commands/GetAllianceLeadContactCommand.d.ts +51 -0
  128. package/dist-types/ts3.4/commands/GetConnectionCommand.d.ts +50 -0
  129. package/dist-types/ts3.4/commands/GetConnectionInvitationCommand.d.ts +51 -0
  130. package/dist-types/ts3.4/commands/GetConnectionPreferencesCommand.d.ts +51 -0
  131. package/dist-types/ts3.4/commands/GetPartnerCommand.d.ts +47 -0
  132. package/dist-types/ts3.4/commands/GetProfileUpdateTaskCommand.d.ts +51 -0
  133. package/dist-types/ts3.4/commands/GetProfileVisibilityCommand.d.ts +51 -0
  134. package/dist-types/ts3.4/commands/ListConnectionInvitationsCommand.d.ts +51 -0
  135. package/dist-types/ts3.4/commands/ListConnectionsCommand.d.ts +50 -0
  136. package/dist-types/ts3.4/commands/ListPartnersCommand.d.ts +47 -0
  137. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +51 -0
  138. package/dist-types/ts3.4/commands/PutAllianceLeadContactCommand.d.ts +51 -0
  139. package/dist-types/ts3.4/commands/PutProfileVisibilityCommand.d.ts +51 -0
  140. package/dist-types/ts3.4/commands/RejectConnectionInvitationCommand.d.ts +51 -0
  141. package/dist-types/ts3.4/commands/SendEmailVerificationCodeCommand.d.ts +51 -0
  142. package/dist-types/ts3.4/commands/StartProfileUpdateTaskCommand.d.ts +51 -0
  143. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +47 -0
  144. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +50 -0
  145. package/dist-types/ts3.4/commands/UpdateConnectionPreferencesCommand.d.ts +51 -0
  146. package/dist-types/ts3.4/commands/index.d.ts +27 -0
  147. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +45 -0
  148. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  149. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  150. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  151. package/dist-types/ts3.4/index.d.ts +11 -0
  152. package/dist-types/ts3.4/models/PartnerCentralAccountServiceException.d.ts +9 -0
  153. package/dist-types/ts3.4/models/enums.d.ts +177 -0
  154. package/dist-types/ts3.4/models/errors.d.ts +74 -0
  155. package/dist-types/ts3.4/models/models_0.d.ts +544 -0
  156. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  157. package/dist-types/ts3.4/pagination/ListConnectionInvitationsPaginator.d.ts +11 -0
  158. package/dist-types/ts3.4/pagination/ListConnectionsPaginator.d.ts +11 -0
  159. package/dist-types/ts3.4/pagination/ListPartnersPaginator.d.ts +11 -0
  160. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  161. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +97 -0
  162. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  163. package/dist-types/ts3.4/runtimeConfig.native.d.ts +101 -0
  164. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +27 -0
  165. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  166. package/dist-types/ts3.4/schemas/schemas_0.d.ts +133 -0
  167. package/package.json +99 -0
@@ -0,0 +1,177 @@
1
+ export declare const ConnectionType: {
2
+ readonly OPPORTUNITY_COLLABORATION: "OPPORTUNITY_COLLABORATION";
3
+ readonly SUBSIDIARY: "SUBSIDIARY";
4
+ };
5
+ export type ConnectionType =
6
+ (typeof ConnectionType)[keyof typeof ConnectionType];
7
+ export declare const ConnectionTypeStatus: {
8
+ readonly ACTIVE: "ACTIVE";
9
+ readonly CANCELED: "CANCELED";
10
+ };
11
+ export type ConnectionTypeStatus =
12
+ (typeof ConnectionTypeStatus)[keyof typeof ConnectionTypeStatus];
13
+ export declare const AccessDeniedExceptionReason: {
14
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
15
+ readonly INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE: "INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE";
16
+ };
17
+ export type AccessDeniedExceptionReason =
18
+ (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
19
+ export declare const ConflictExceptionReason: {
20
+ readonly CONFLICT_CLIENT_TOKEN: "CONFLICT_CLIENT_TOKEN";
21
+ readonly DUPLICATE_CONNECTION: "DUPLICATE_CONNECTION";
22
+ readonly DUPLICATE_CONNECTION_INVITATION: "DUPLICATE_CONNECTION_INVITATION";
23
+ readonly DUPLICATE_PARTNER: "DUPLICATE_PARTNER";
24
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER: "INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER";
25
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_STATE: "INCOMPATIBLE_CONNECTION_INVITATION_STATE";
26
+ readonly INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION: "INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION";
27
+ readonly INCOMPATIBLE_CONNECTION_STATE: "INCOMPATIBLE_CONNECTION_STATE";
28
+ readonly INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE: "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE";
29
+ readonly INCOMPATIBLE_PROFILE_STATE: "INCOMPATIBLE_PROFILE_STATE";
30
+ };
31
+ export type ConflictExceptionReason =
32
+ (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
33
+ export declare const ResourceNotFoundExceptionReason: {
34
+ readonly CONNECTION_INVITATION_NOT_FOUND: "CONNECTION_INVITATION_NOT_FOUND";
35
+ readonly CONNECTION_NOT_FOUND: "CONNECTION_NOT_FOUND";
36
+ readonly PARTNER_DOMAIN_NOT_FOUND: "PARTNER_DOMAIN_NOT_FOUND";
37
+ readonly PARTNER_NOT_FOUND: "PARTNER_NOT_FOUND";
38
+ readonly PARTNER_PROFILE_NOT_FOUND: "PARTNER_PROFILE_NOT_FOUND";
39
+ readonly PARTNER_PROFILE_TASK_NOT_FOUND: "PARTNER_PROFILE_TASK_NOT_FOUND";
40
+ readonly RECEIVER_PROFILE_NOT_FOUND: "RECEIVER_PROFILE_NOT_FOUND";
41
+ readonly SENDER_PROFILE_NOT_FOUND: "SENDER_PROFILE_NOT_FOUND";
42
+ };
43
+ export type ResourceNotFoundExceptionReason =
44
+ (typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
45
+ export declare const BusinessValidationCode: {
46
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_REQUEST: "INCOMPATIBLE_CONNECTION_INVITATION_REQUEST";
47
+ readonly INCOMPATIBLE_DOMAIN: "INCOMPATIBLE_DOMAIN";
48
+ readonly INCOMPATIBLE_IDENTITY_VERIFICATION_STATUS: "INCOMPATIBLE_IDENTITY_VERIFICATION_STATUS";
49
+ readonly INCOMPATIBLE_KNOW_YOUR_BUSINESS_STATUS: "INCOMPATIBLE_KNOW_YOUR_BUSINESS_STATUS";
50
+ readonly INCOMPATIBLE_LEGAL_NAME: "INCOMPATIBLE_LEGAL_NAME";
51
+ readonly INVALID_ACCOUNT_LINKING_STATUS: "INVALID_ACCOUNT_LINKING_STATUS";
52
+ readonly INVALID_ACCOUNT_STATE: "INVALID_ACCOUNT_STATE";
53
+ };
54
+ export type BusinessValidationCode =
55
+ (typeof BusinessValidationCode)[keyof typeof BusinessValidationCode];
56
+ export declare const FieldValidationCode: {
57
+ readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
58
+ readonly DUPLICATE_VALUE: "DUPLICATE_VALUE";
59
+ readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
60
+ readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
61
+ readonly INVALID_VALUE: "INVALID_VALUE";
62
+ readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
63
+ readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
64
+ };
65
+ export type FieldValidationCode =
66
+ (typeof FieldValidationCode)[keyof typeof FieldValidationCode];
67
+ export declare const ValidationExceptionReason: {
68
+ readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
69
+ readonly REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED";
70
+ };
71
+ export type ValidationExceptionReason =
72
+ (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
73
+ export declare const AccessType: {
74
+ readonly ALLOW_ALL: "ALLOW_ALL";
75
+ readonly ALLOW_BY_DEFAULT_DENY_SOME: "ALLOW_BY_DEFAULT_DENY_SOME";
76
+ readonly DENY_ALL: "DENY_ALL";
77
+ };
78
+ export type AccessType = (typeof AccessType)[keyof typeof AccessType];
79
+ export declare const ServiceQuotaExceededExceptionReason: {
80
+ readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
81
+ readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
82
+ };
83
+ export type ServiceQuotaExceededExceptionReason =
84
+ (typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
85
+ export declare const ParticipantType: {
86
+ readonly RECEIVER: "RECEIVER";
87
+ readonly SENDER: "SENDER";
88
+ };
89
+ export type ParticipantType =
90
+ (typeof ParticipantType)[keyof typeof ParticipantType];
91
+ export declare const InvitationStatus: {
92
+ readonly ACCEPTED: "ACCEPTED";
93
+ readonly CANCELED: "CANCELED";
94
+ readonly EXPIRED: "EXPIRED";
95
+ readonly PENDING: "PENDING";
96
+ readonly REJECTED: "REJECTED";
97
+ };
98
+ export type InvitationStatus =
99
+ (typeof InvitationStatus)[keyof typeof InvitationStatus];
100
+ export declare const ProfileValidationErrorReason: {
101
+ readonly DUPLICATE_PROFILE: "DUPLICATE_PROFILE";
102
+ readonly INVALID_CONTENT: "INVALID_CONTENT";
103
+ readonly INVALID_LOGO: "INVALID_LOGO";
104
+ readonly INVALID_LOGO_FILE: "INVALID_LOGO_FILE";
105
+ readonly INVALID_LOGO_SIZE: "INVALID_LOGO_SIZE";
106
+ readonly INVALID_LOGO_URL: "INVALID_LOGO_URL";
107
+ readonly INVALID_WEBSITE_URL: "INVALID_WEBSITE_URL";
108
+ };
109
+ export type ProfileValidationErrorReason =
110
+ (typeof ProfileValidationErrorReason)[keyof typeof ProfileValidationErrorReason];
111
+ export declare const ProfileTaskStatus: {
112
+ readonly CANCELED: "CANCELED";
113
+ readonly FAILED: "FAILED";
114
+ readonly IN_PROGRESS: "IN_PROGRESS";
115
+ readonly SUCCEEDED: "SUCCEEDED";
116
+ };
117
+ export type ProfileTaskStatus =
118
+ (typeof ProfileTaskStatus)[keyof typeof ProfileTaskStatus];
119
+ export declare const IndustrySegment: {
120
+ readonly AGRICULTURE_MINING: "AGRICULTURE_MINING";
121
+ readonly BIOTECHNOLOGY: "BIOTECHNOLOGY";
122
+ readonly BUSINESS_CONSUMER_SERVICES: "BUSINESS_CONSUMER_SERVICES";
123
+ readonly BUSINESS_SERV: "BUSINESS_SERV";
124
+ readonly COMMUNICATIONS: "COMMUNICATIONS";
125
+ readonly COMPUTERS_ELECTRONICS: "COMPUTERS_ELECTRONICS";
126
+ readonly COMPUTER_HARDWARE: "COMPUTER_HARDWARE";
127
+ readonly COMPUTER_SOFTWARE: "COMPUTER_SOFTWARE";
128
+ readonly CONSUMER_GOODS: "CONSUMER_GOODS";
129
+ readonly CONSUMER_RELATED: "CONSUMER_RELATED";
130
+ readonly EDUCATION: "EDUCATION";
131
+ readonly ENERGY_UTILITIES: "ENERGY_UTILITIES";
132
+ readonly FINANCIAL_SERVICES: "FINANCIAL_SERVICES";
133
+ readonly GAMING: "GAMING";
134
+ readonly GOVERNMENT: "GOVERNMENT";
135
+ readonly GOVERNMENT_EDUCATION_PUBLIC_SERVICES: "GOVERNMENT_EDUCATION_PUBLIC_SERVICES";
136
+ readonly HEALTHCARE: "HEALTHCARE";
137
+ readonly HEALTHCARE_PHARMACEUTICALS_BIOTECH: "HEALTHCARE_PHARMACEUTICALS_BIOTECH";
138
+ readonly INDUSTRIAL_ENERGY: "INDUSTRIAL_ENERGY";
139
+ readonly INTERNET_SPECIFIC: "INTERNET_SPECIFIC";
140
+ readonly LIFE_SCIENCES: "LIFE_SCIENCES";
141
+ readonly MANUFACTURING: "MANUFACTURING";
142
+ readonly MEDIA_ENTERTAINMENT: "MEDIA_ENTERTAINMENT";
143
+ readonly MEDIA_ENTERTAINMENT_LEISURE: "MEDIA_ENTERTAINMENT_LEISURE";
144
+ readonly MEDICAL_HEALTH: "MEDICAL_HEALTH";
145
+ readonly NON_PROFIT_ORGANIZATION: "NON_PROFIT_ORGANIZATION";
146
+ readonly OTHER: "OTHER";
147
+ readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
148
+ readonly REAL_ESTATE_CONSTRUCTION: "REAL_ESTATE_CONSTRUCTION";
149
+ readonly RETAIL: "RETAIL";
150
+ readonly RETAIL_WHOLESALE_DISTRIBUTION: "RETAIL_WHOLESALE_DISTRIBUTION";
151
+ readonly SEMICONDUCTOR_ELECTR: "SEMICONDUCTOR_ELECTR";
152
+ readonly SOFTWARE_INTERNET: "SOFTWARE_INTERNET";
153
+ readonly TELECOMMUNICATIONS: "TELECOMMUNICATIONS";
154
+ readonly TRANSPORTATION_LOGISTICS: "TRANSPORTATION_LOGISTICS";
155
+ readonly TRAVEL_HOSPITALITY: "TRAVEL_HOSPITALITY";
156
+ readonly WHOLESALE_DISTRIBUTION: "WHOLESALE_DISTRIBUTION";
157
+ };
158
+ export type IndustrySegment =
159
+ (typeof IndustrySegment)[keyof typeof IndustrySegment];
160
+ export declare const PrimarySolutionType: {
161
+ readonly COMMUNICATION_SERVICES: "COMMUNICATION_SERVICES";
162
+ readonly CONSULTING_SERVICES: "CONSULTING_SERVICES";
163
+ readonly HARDWARE_PRODUCTS: "HARDWARE_PRODUCTS";
164
+ readonly MANAGED_SERVICES: "MANAGED_SERVICES";
165
+ readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
166
+ readonly SOFTWARE_PRODUCTS: "SOFTWARE_PRODUCTS";
167
+ readonly TRAINING_SERVICES: "TRAINING_SERVICES";
168
+ readonly VALUE_ADDED_RESALE_AWS_SERVICES: "VALUE_ADDED_RESALE_AWS_SERVICES";
169
+ };
170
+ export type PrimarySolutionType =
171
+ (typeof PrimarySolutionType)[keyof typeof PrimarySolutionType];
172
+ export declare const ProfileVisibility: {
173
+ readonly PRIVATE: "PRIVATE";
174
+ readonly PUBLIC: "PUBLIC";
175
+ };
176
+ export type ProfileVisibility =
177
+ (typeof ProfileVisibility)[keyof typeof ProfileVisibility];
@@ -0,0 +1,74 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import {
3
+ AccessDeniedExceptionReason,
4
+ ConflictExceptionReason,
5
+ ResourceNotFoundExceptionReason,
6
+ ServiceQuotaExceededExceptionReason,
7
+ ValidationExceptionReason,
8
+ } from "./enums";
9
+ import { ValidationError } from "./models_0";
10
+ import { PartnerCentralAccountServiceException as __BaseException } from "./PartnerCentralAccountServiceException";
11
+ export declare class AccessDeniedException extends __BaseException {
12
+ readonly name: "AccessDeniedException";
13
+ readonly $fault: "client";
14
+ Message: string | undefined;
15
+ Reason: AccessDeniedExceptionReason | undefined;
16
+ constructor(
17
+ opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
18
+ );
19
+ }
20
+ export declare class ConflictException extends __BaseException {
21
+ readonly name: "ConflictException";
22
+ readonly $fault: "client";
23
+ Message: string | undefined;
24
+ Reason: ConflictExceptionReason | undefined;
25
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
26
+ }
27
+ export declare class InternalServerException extends __BaseException {
28
+ readonly name: "InternalServerException";
29
+ readonly $fault: "server";
30
+ $retryable: {};
31
+ Message: string | undefined;
32
+ constructor(
33
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
34
+ );
35
+ }
36
+ export declare class ResourceNotFoundException extends __BaseException {
37
+ readonly name: "ResourceNotFoundException";
38
+ readonly $fault: "client";
39
+ Message: string | undefined;
40
+ Reason: ResourceNotFoundExceptionReason | undefined;
41
+ constructor(
42
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
43
+ );
44
+ }
45
+ export declare class ThrottlingException extends __BaseException {
46
+ readonly name: "ThrottlingException";
47
+ readonly $fault: "client";
48
+ $retryable: {};
49
+ Message: string | undefined;
50
+ ServiceCode?: string | undefined;
51
+ QuotaCode?: string | undefined;
52
+ constructor(
53
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
54
+ );
55
+ }
56
+ export declare class ValidationException extends __BaseException {
57
+ readonly name: "ValidationException";
58
+ readonly $fault: "client";
59
+ Message: string | undefined;
60
+ Reason: ValidationExceptionReason | undefined;
61
+ ErrorDetails?: ValidationError[] | undefined;
62
+ constructor(
63
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
64
+ );
65
+ }
66
+ export declare class ServiceQuotaExceededException extends __BaseException {
67
+ readonly name: "ServiceQuotaExceededException";
68
+ readonly $fault: "client";
69
+ Message: string | undefined;
70
+ Reason: ServiceQuotaExceededExceptionReason | undefined;
71
+ constructor(
72
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
73
+ );
74
+ }