@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,280 @@
1
+ /**
2
+ * @public
3
+ * @enum
4
+ */
5
+ export declare const ConnectionType: {
6
+ readonly OPPORTUNITY_COLLABORATION: "OPPORTUNITY_COLLABORATION";
7
+ readonly SUBSIDIARY: "SUBSIDIARY";
8
+ };
9
+ /**
10
+ * @public
11
+ */
12
+ export type ConnectionType = (typeof ConnectionType)[keyof typeof ConnectionType];
13
+ /**
14
+ * @public
15
+ * @enum
16
+ */
17
+ export declare const ConnectionTypeStatus: {
18
+ readonly ACTIVE: "ACTIVE";
19
+ readonly CANCELED: "CANCELED";
20
+ };
21
+ /**
22
+ * @public
23
+ */
24
+ export type ConnectionTypeStatus = (typeof ConnectionTypeStatus)[keyof typeof ConnectionTypeStatus];
25
+ /**
26
+ * @public
27
+ * @enum
28
+ */
29
+ export declare const AccessDeniedExceptionReason: {
30
+ readonly ACCESS_DENIED: "ACCESS_DENIED";
31
+ readonly INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE: "INCOMPATIBLE_BENEFIT_AWS_PARTNER_STATE";
32
+ };
33
+ /**
34
+ * @public
35
+ */
36
+ export type AccessDeniedExceptionReason = (typeof AccessDeniedExceptionReason)[keyof typeof AccessDeniedExceptionReason];
37
+ /**
38
+ * @public
39
+ * @enum
40
+ */
41
+ export declare const ConflictExceptionReason: {
42
+ readonly CONFLICT_CLIENT_TOKEN: "CONFLICT_CLIENT_TOKEN";
43
+ readonly DUPLICATE_CONNECTION: "DUPLICATE_CONNECTION";
44
+ readonly DUPLICATE_CONNECTION_INVITATION: "DUPLICATE_CONNECTION_INVITATION";
45
+ readonly DUPLICATE_PARTNER: "DUPLICATE_PARTNER";
46
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER: "INCOMPATIBLE_CONNECTION_INVITATION_RECEIVER";
47
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_STATE: "INCOMPATIBLE_CONNECTION_INVITATION_STATE";
48
+ readonly INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION: "INCOMPATIBLE_CONNECTION_PREFERENCES_REVISION";
49
+ readonly INCOMPATIBLE_CONNECTION_STATE: "INCOMPATIBLE_CONNECTION_STATE";
50
+ readonly INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE: "INCOMPATIBLE_PARTNER_PROFILE_TASK_STATE";
51
+ readonly INCOMPATIBLE_PROFILE_STATE: "INCOMPATIBLE_PROFILE_STATE";
52
+ };
53
+ /**
54
+ * @public
55
+ */
56
+ export type ConflictExceptionReason = (typeof ConflictExceptionReason)[keyof typeof ConflictExceptionReason];
57
+ /**
58
+ * @public
59
+ * @enum
60
+ */
61
+ export declare const ResourceNotFoundExceptionReason: {
62
+ readonly CONNECTION_INVITATION_NOT_FOUND: "CONNECTION_INVITATION_NOT_FOUND";
63
+ readonly CONNECTION_NOT_FOUND: "CONNECTION_NOT_FOUND";
64
+ readonly PARTNER_DOMAIN_NOT_FOUND: "PARTNER_DOMAIN_NOT_FOUND";
65
+ readonly PARTNER_NOT_FOUND: "PARTNER_NOT_FOUND";
66
+ readonly PARTNER_PROFILE_NOT_FOUND: "PARTNER_PROFILE_NOT_FOUND";
67
+ readonly PARTNER_PROFILE_TASK_NOT_FOUND: "PARTNER_PROFILE_TASK_NOT_FOUND";
68
+ readonly RECEIVER_PROFILE_NOT_FOUND: "RECEIVER_PROFILE_NOT_FOUND";
69
+ readonly SENDER_PROFILE_NOT_FOUND: "SENDER_PROFILE_NOT_FOUND";
70
+ };
71
+ /**
72
+ * @public
73
+ */
74
+ export type ResourceNotFoundExceptionReason = (typeof ResourceNotFoundExceptionReason)[keyof typeof ResourceNotFoundExceptionReason];
75
+ /**
76
+ * @public
77
+ * @enum
78
+ */
79
+ export declare const BusinessValidationCode: {
80
+ readonly INCOMPATIBLE_CONNECTION_INVITATION_REQUEST: "INCOMPATIBLE_CONNECTION_INVITATION_REQUEST";
81
+ readonly INCOMPATIBLE_DOMAIN: "INCOMPATIBLE_DOMAIN";
82
+ readonly INCOMPATIBLE_IDENTITY_VERIFICATION_STATUS: "INCOMPATIBLE_IDENTITY_VERIFICATION_STATUS";
83
+ readonly INCOMPATIBLE_KNOW_YOUR_BUSINESS_STATUS: "INCOMPATIBLE_KNOW_YOUR_BUSINESS_STATUS";
84
+ readonly INCOMPATIBLE_LEGAL_NAME: "INCOMPATIBLE_LEGAL_NAME";
85
+ readonly INVALID_ACCOUNT_LINKING_STATUS: "INVALID_ACCOUNT_LINKING_STATUS";
86
+ readonly INVALID_ACCOUNT_STATE: "INVALID_ACCOUNT_STATE";
87
+ };
88
+ /**
89
+ * @public
90
+ */
91
+ export type BusinessValidationCode = (typeof BusinessValidationCode)[keyof typeof BusinessValidationCode];
92
+ /**
93
+ * @public
94
+ * @enum
95
+ */
96
+ export declare const FieldValidationCode: {
97
+ readonly ACTION_NOT_PERMITTED: "ACTION_NOT_PERMITTED";
98
+ readonly DUPLICATE_VALUE: "DUPLICATE_VALUE";
99
+ readonly INVALID_ENUM_VALUE: "INVALID_ENUM_VALUE";
100
+ readonly INVALID_STRING_FORMAT: "INVALID_STRING_FORMAT";
101
+ readonly INVALID_VALUE: "INVALID_VALUE";
102
+ readonly REQUIRED_FIELD_MISSING: "REQUIRED_FIELD_MISSING";
103
+ readonly TOO_MANY_VALUES: "TOO_MANY_VALUES";
104
+ };
105
+ /**
106
+ * @public
107
+ */
108
+ export type FieldValidationCode = (typeof FieldValidationCode)[keyof typeof FieldValidationCode];
109
+ /**
110
+ * @public
111
+ * @enum
112
+ */
113
+ export declare const ValidationExceptionReason: {
114
+ readonly BUSINESS_VALIDATION_FAILED: "BUSINESS_VALIDATION_FAILED";
115
+ readonly REQUEST_VALIDATION_FAILED: "REQUEST_VALIDATION_FAILED";
116
+ };
117
+ /**
118
+ * @public
119
+ */
120
+ export type ValidationExceptionReason = (typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
121
+ /**
122
+ * @public
123
+ * @enum
124
+ */
125
+ export declare const AccessType: {
126
+ readonly ALLOW_ALL: "ALLOW_ALL";
127
+ readonly ALLOW_BY_DEFAULT_DENY_SOME: "ALLOW_BY_DEFAULT_DENY_SOME";
128
+ readonly DENY_ALL: "DENY_ALL";
129
+ };
130
+ /**
131
+ * @public
132
+ */
133
+ export type AccessType = (typeof AccessType)[keyof typeof AccessType];
134
+ /**
135
+ * @public
136
+ * @enum
137
+ */
138
+ export declare const ServiceQuotaExceededExceptionReason: {
139
+ readonly LIMIT_EXCEEDED_NUMBER_OF_DOMAIN: "LIMIT_EXCEEDED_NUMBER_OF_DOMAIN";
140
+ readonly LIMIT_EXCEEDED_NUMBER_OF_EMAIL: "LIMIT_EXCEEDED_NUMBER_OF_EMAIL";
141
+ };
142
+ /**
143
+ * @public
144
+ */
145
+ export type ServiceQuotaExceededExceptionReason = (typeof ServiceQuotaExceededExceptionReason)[keyof typeof ServiceQuotaExceededExceptionReason];
146
+ /**
147
+ * @public
148
+ * @enum
149
+ */
150
+ export declare const ParticipantType: {
151
+ readonly RECEIVER: "RECEIVER";
152
+ readonly SENDER: "SENDER";
153
+ };
154
+ /**
155
+ * @public
156
+ */
157
+ export type ParticipantType = (typeof ParticipantType)[keyof typeof ParticipantType];
158
+ /**
159
+ * @public
160
+ * @enum
161
+ */
162
+ export declare const InvitationStatus: {
163
+ readonly ACCEPTED: "ACCEPTED";
164
+ readonly CANCELED: "CANCELED";
165
+ readonly EXPIRED: "EXPIRED";
166
+ readonly PENDING: "PENDING";
167
+ readonly REJECTED: "REJECTED";
168
+ };
169
+ /**
170
+ * @public
171
+ */
172
+ export type InvitationStatus = (typeof InvitationStatus)[keyof typeof InvitationStatus];
173
+ /**
174
+ * @public
175
+ * @enum
176
+ */
177
+ export declare const ProfileValidationErrorReason: {
178
+ readonly DUPLICATE_PROFILE: "DUPLICATE_PROFILE";
179
+ readonly INVALID_CONTENT: "INVALID_CONTENT";
180
+ readonly INVALID_LOGO: "INVALID_LOGO";
181
+ readonly INVALID_LOGO_FILE: "INVALID_LOGO_FILE";
182
+ readonly INVALID_LOGO_SIZE: "INVALID_LOGO_SIZE";
183
+ readonly INVALID_LOGO_URL: "INVALID_LOGO_URL";
184
+ readonly INVALID_WEBSITE_URL: "INVALID_WEBSITE_URL";
185
+ };
186
+ /**
187
+ * @public
188
+ */
189
+ export type ProfileValidationErrorReason = (typeof ProfileValidationErrorReason)[keyof typeof ProfileValidationErrorReason];
190
+ /**
191
+ * @public
192
+ * @enum
193
+ */
194
+ export declare const ProfileTaskStatus: {
195
+ readonly CANCELED: "CANCELED";
196
+ readonly FAILED: "FAILED";
197
+ readonly IN_PROGRESS: "IN_PROGRESS";
198
+ readonly SUCCEEDED: "SUCCEEDED";
199
+ };
200
+ /**
201
+ * @public
202
+ */
203
+ export type ProfileTaskStatus = (typeof ProfileTaskStatus)[keyof typeof ProfileTaskStatus];
204
+ /**
205
+ * @public
206
+ * @enum
207
+ */
208
+ export declare const IndustrySegment: {
209
+ readonly AGRICULTURE_MINING: "AGRICULTURE_MINING";
210
+ readonly BIOTECHNOLOGY: "BIOTECHNOLOGY";
211
+ readonly BUSINESS_CONSUMER_SERVICES: "BUSINESS_CONSUMER_SERVICES";
212
+ readonly BUSINESS_SERV: "BUSINESS_SERV";
213
+ readonly COMMUNICATIONS: "COMMUNICATIONS";
214
+ readonly COMPUTERS_ELECTRONICS: "COMPUTERS_ELECTRONICS";
215
+ readonly COMPUTER_HARDWARE: "COMPUTER_HARDWARE";
216
+ readonly COMPUTER_SOFTWARE: "COMPUTER_SOFTWARE";
217
+ readonly CONSUMER_GOODS: "CONSUMER_GOODS";
218
+ readonly CONSUMER_RELATED: "CONSUMER_RELATED";
219
+ readonly EDUCATION: "EDUCATION";
220
+ readonly ENERGY_UTILITIES: "ENERGY_UTILITIES";
221
+ readonly FINANCIAL_SERVICES: "FINANCIAL_SERVICES";
222
+ readonly GAMING: "GAMING";
223
+ readonly GOVERNMENT: "GOVERNMENT";
224
+ readonly GOVERNMENT_EDUCATION_PUBLIC_SERVICES: "GOVERNMENT_EDUCATION_PUBLIC_SERVICES";
225
+ readonly HEALTHCARE: "HEALTHCARE";
226
+ readonly HEALTHCARE_PHARMACEUTICALS_BIOTECH: "HEALTHCARE_PHARMACEUTICALS_BIOTECH";
227
+ readonly INDUSTRIAL_ENERGY: "INDUSTRIAL_ENERGY";
228
+ readonly INTERNET_SPECIFIC: "INTERNET_SPECIFIC";
229
+ readonly LIFE_SCIENCES: "LIFE_SCIENCES";
230
+ readonly MANUFACTURING: "MANUFACTURING";
231
+ readonly MEDIA_ENTERTAINMENT: "MEDIA_ENTERTAINMENT";
232
+ readonly MEDIA_ENTERTAINMENT_LEISURE: "MEDIA_ENTERTAINMENT_LEISURE";
233
+ readonly MEDICAL_HEALTH: "MEDICAL_HEALTH";
234
+ readonly NON_PROFIT_ORGANIZATION: "NON_PROFIT_ORGANIZATION";
235
+ readonly OTHER: "OTHER";
236
+ readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
237
+ readonly REAL_ESTATE_CONSTRUCTION: "REAL_ESTATE_CONSTRUCTION";
238
+ readonly RETAIL: "RETAIL";
239
+ readonly RETAIL_WHOLESALE_DISTRIBUTION: "RETAIL_WHOLESALE_DISTRIBUTION";
240
+ readonly SEMICONDUCTOR_ELECTR: "SEMICONDUCTOR_ELECTR";
241
+ readonly SOFTWARE_INTERNET: "SOFTWARE_INTERNET";
242
+ readonly TELECOMMUNICATIONS: "TELECOMMUNICATIONS";
243
+ readonly TRANSPORTATION_LOGISTICS: "TRANSPORTATION_LOGISTICS";
244
+ readonly TRAVEL_HOSPITALITY: "TRAVEL_HOSPITALITY";
245
+ readonly WHOLESALE_DISTRIBUTION: "WHOLESALE_DISTRIBUTION";
246
+ };
247
+ /**
248
+ * @public
249
+ */
250
+ export type IndustrySegment = (typeof IndustrySegment)[keyof typeof IndustrySegment];
251
+ /**
252
+ * @public
253
+ * @enum
254
+ */
255
+ export declare const PrimarySolutionType: {
256
+ readonly COMMUNICATION_SERVICES: "COMMUNICATION_SERVICES";
257
+ readonly CONSULTING_SERVICES: "CONSULTING_SERVICES";
258
+ readonly HARDWARE_PRODUCTS: "HARDWARE_PRODUCTS";
259
+ readonly MANAGED_SERVICES: "MANAGED_SERVICES";
260
+ readonly PROFESSIONAL_SERVICES: "PROFESSIONAL_SERVICES";
261
+ readonly SOFTWARE_PRODUCTS: "SOFTWARE_PRODUCTS";
262
+ readonly TRAINING_SERVICES: "TRAINING_SERVICES";
263
+ readonly VALUE_ADDED_RESALE_AWS_SERVICES: "VALUE_ADDED_RESALE_AWS_SERVICES";
264
+ };
265
+ /**
266
+ * @public
267
+ */
268
+ export type PrimarySolutionType = (typeof PrimarySolutionType)[keyof typeof PrimarySolutionType];
269
+ /**
270
+ * @public
271
+ * @enum
272
+ */
273
+ export declare const ProfileVisibility: {
274
+ readonly PRIVATE: "PRIVATE";
275
+ readonly PUBLIC: "PUBLIC";
276
+ };
277
+ /**
278
+ * @public
279
+ */
280
+ export type ProfileVisibility = (typeof ProfileVisibility)[keyof typeof ProfileVisibility];
@@ -0,0 +1,137 @@
1
+ import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
2
+ import { AccessDeniedExceptionReason, ConflictExceptionReason, ResourceNotFoundExceptionReason, ServiceQuotaExceededExceptionReason, ValidationExceptionReason } from "./enums";
3
+ import { ValidationError } from "./models_0";
4
+ import { PartnerCentralAccountServiceException as __BaseException } from "./PartnerCentralAccountServiceException";
5
+ /**
6
+ * <p>The request was denied due to insufficient permissions. The caller does not have the required permissions to perform this operation.</p>
7
+ * @public
8
+ */
9
+ export declare class AccessDeniedException extends __BaseException {
10
+ readonly name: "AccessDeniedException";
11
+ readonly $fault: "client";
12
+ Message: string | undefined;
13
+ /**
14
+ * <p>The specific reason for the access denial.</p>
15
+ * @public
16
+ */
17
+ Reason: AccessDeniedExceptionReason | undefined;
18
+ /**
19
+ * @internal
20
+ */
21
+ constructor(opts: __ExceptionOptionType<AccessDeniedException, __BaseException>);
22
+ }
23
+ /**
24
+ * <p>The request could not be completed due to a conflict with the current state of the resource. This typically occurs when trying to create a resource that already exists or modify a resource that has been changed by another process.</p>
25
+ * @public
26
+ */
27
+ export declare class ConflictException extends __BaseException {
28
+ readonly name: "ConflictException";
29
+ readonly $fault: "client";
30
+ Message: string | undefined;
31
+ /**
32
+ * <p>The specific reason for the conflict.</p>
33
+ * @public
34
+ */
35
+ Reason: ConflictExceptionReason | undefined;
36
+ /**
37
+ * @internal
38
+ */
39
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
40
+ }
41
+ /**
42
+ * <p>An internal server error occurred while processing the request. This is typically a temporary condition and the request may be retried.</p>
43
+ * @public
44
+ */
45
+ export declare class InternalServerException extends __BaseException {
46
+ readonly name: "InternalServerException";
47
+ readonly $fault: "server";
48
+ $retryable: {};
49
+ Message: string | undefined;
50
+ /**
51
+ * @internal
52
+ */
53
+ constructor(opts: __ExceptionOptionType<InternalServerException, __BaseException>);
54
+ }
55
+ /**
56
+ * <p>The specified resource could not be found. This may occur when referencing a resource that does not exist or has been deleted.</p>
57
+ * @public
58
+ */
59
+ export declare class ResourceNotFoundException extends __BaseException {
60
+ readonly name: "ResourceNotFoundException";
61
+ readonly $fault: "client";
62
+ Message: string | undefined;
63
+ /**
64
+ * <p>The specific reason why the resource was not found.</p>
65
+ * @public
66
+ */
67
+ Reason: ResourceNotFoundExceptionReason | undefined;
68
+ /**
69
+ * @internal
70
+ */
71
+ constructor(opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>);
72
+ }
73
+ /**
74
+ * <p>The request was throttled due to too many requests being sent in a short period of time. The client should implement exponential backoff and retry the request.</p>
75
+ * @public
76
+ */
77
+ export declare class ThrottlingException extends __BaseException {
78
+ readonly name: "ThrottlingException";
79
+ readonly $fault: "client";
80
+ $retryable: {};
81
+ Message: string | undefined;
82
+ /**
83
+ * <p>The service code associated with the throttling error.</p>
84
+ * @public
85
+ */
86
+ ServiceCode?: string | undefined;
87
+ /**
88
+ * <p>The quota code associated with the throttling error.</p>
89
+ * @public
90
+ */
91
+ QuotaCode?: string | undefined;
92
+ /**
93
+ * @internal
94
+ */
95
+ constructor(opts: __ExceptionOptionType<ThrottlingException, __BaseException>);
96
+ }
97
+ /**
98
+ * <p>The request failed validation. One or more input parameters are invalid, missing, or do not meet the required format or constraints.</p>
99
+ * @public
100
+ */
101
+ export declare class ValidationException extends __BaseException {
102
+ readonly name: "ValidationException";
103
+ readonly $fault: "client";
104
+ Message: string | undefined;
105
+ /**
106
+ * <p>The reason for the validation failure.</p>
107
+ * @public
108
+ */
109
+ Reason: ValidationExceptionReason | undefined;
110
+ /**
111
+ * <p>A list of detailed validation errors that occurred during request processing.</p>
112
+ * @public
113
+ */
114
+ ErrorDetails?: ValidationError[] | undefined;
115
+ /**
116
+ * @internal
117
+ */
118
+ constructor(opts: __ExceptionOptionType<ValidationException, __BaseException>);
119
+ }
120
+ /**
121
+ * <p>The request was rejected because it would exceed a service quota or limit. This may occur when trying to create more resources than allowed by the service limits.</p>
122
+ * @public
123
+ */
124
+ export declare class ServiceQuotaExceededException extends __BaseException {
125
+ readonly name: "ServiceQuotaExceededException";
126
+ readonly $fault: "client";
127
+ Message: string | undefined;
128
+ /**
129
+ * <p>The specific reason for the service quota being exceeded.</p>
130
+ * @public
131
+ */
132
+ Reason: ServiceQuotaExceededExceptionReason | undefined;
133
+ /**
134
+ * @internal
135
+ */
136
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
137
+ }