@aws-sdk/client-wellarchitected 3.934.0 → 3.936.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/dist-cjs/index.js +193 -192
- package/dist-es/index.js +2 -1
- package/dist-es/models/enums.js +192 -0
- package/dist-es/models/errors.js +123 -0
- package/dist-es/models/models_0.js +1 -315
- package/dist-es/schemas/schemas_0.js +1 -1
- package/dist-types/index.d.ts +3 -1
- package/dist-types/models/enums.d.ts +512 -0
- package/dist-types/models/errors.d.ts +183 -0
- package/dist-types/models/models_0.d.ts +1 -693
- package/dist-types/ts3.4/index.d.ts +3 -1
- package/dist-types/ts3.4/models/enums.d.ts +259 -0
- package/dist-types/ts3.4/models/errors.d.ts +70 -0
- package/dist-types/ts3.4/models/models_0.d.ts +41 -327
- package/package.json +19 -19
- package/dist-es/models/index.js +0 -1
- package/dist-types/models/index.d.ts +0 -1
- package/dist-types/ts3.4/models/index.d.ts +0 -1
package/dist-cjs/index.js
CHANGED
|
@@ -131,62 +131,6 @@ let AccessDeniedException$1 = class AccessDeniedException extends WellArchitecte
|
|
|
131
131
|
this.Message = opts.Message;
|
|
132
132
|
}
|
|
133
133
|
};
|
|
134
|
-
const IntegrationStatusInput = {
|
|
135
|
-
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
136
|
-
};
|
|
137
|
-
const AccountJiraIssueManagementStatus = {
|
|
138
|
-
DISABLED: "DISABLED",
|
|
139
|
-
ENABLED: "ENABLED",
|
|
140
|
-
};
|
|
141
|
-
const IssueManagementType = {
|
|
142
|
-
AUTO: "AUTO",
|
|
143
|
-
MANUAL: "MANUAL",
|
|
144
|
-
};
|
|
145
|
-
const IntegrationStatus = {
|
|
146
|
-
CONFIGURED: "CONFIGURED",
|
|
147
|
-
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
148
|
-
};
|
|
149
|
-
const CheckStatus = {
|
|
150
|
-
ERROR: "ERROR",
|
|
151
|
-
FETCH_FAILED: "FETCH_FAILED",
|
|
152
|
-
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
153
|
-
OKAY: "OKAY",
|
|
154
|
-
WARNING: "WARNING",
|
|
155
|
-
};
|
|
156
|
-
const AdditionalResourceType = {
|
|
157
|
-
HELPFUL_RESOURCE: "HELPFUL_RESOURCE",
|
|
158
|
-
IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN",
|
|
159
|
-
};
|
|
160
|
-
const ChoiceReason = {
|
|
161
|
-
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
162
|
-
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
163
|
-
NONE: "NONE",
|
|
164
|
-
OTHER: "OTHER",
|
|
165
|
-
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
166
|
-
};
|
|
167
|
-
const ChoiceStatus = {
|
|
168
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
169
|
-
SELECTED: "SELECTED",
|
|
170
|
-
UNSELECTED: "UNSELECTED",
|
|
171
|
-
};
|
|
172
|
-
const AnswerReason = {
|
|
173
|
-
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
174
|
-
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
175
|
-
NONE: "NONE",
|
|
176
|
-
OTHER: "OTHER",
|
|
177
|
-
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
178
|
-
};
|
|
179
|
-
const Risk = {
|
|
180
|
-
HIGH: "HIGH",
|
|
181
|
-
MEDIUM: "MEDIUM",
|
|
182
|
-
NONE: "NONE",
|
|
183
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
184
|
-
UNANSWERED: "UNANSWERED",
|
|
185
|
-
};
|
|
186
|
-
const QuestionType = {
|
|
187
|
-
NON_PRIORITIZED: "NON_PRIORITIZED",
|
|
188
|
-
PRIORITIZED: "PRIORITIZED",
|
|
189
|
-
};
|
|
190
134
|
let ConflictException$1 = class ConflictException extends WellArchitectedServiceException$1 {
|
|
191
135
|
name = "ConflictException";
|
|
192
136
|
$fault = "client";
|
|
@@ -255,12 +199,6 @@ let ThrottlingException$1 = class ThrottlingException extends WellArchitectedSer
|
|
|
255
199
|
this.ServiceCode = opts.ServiceCode;
|
|
256
200
|
}
|
|
257
201
|
};
|
|
258
|
-
const ValidationExceptionReason = {
|
|
259
|
-
CANNOT_PARSE: "CANNOT_PARSE",
|
|
260
|
-
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
261
|
-
OTHER: "OTHER",
|
|
262
|
-
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
263
|
-
};
|
|
264
202
|
let ValidationException$1 = class ValidationException extends WellArchitectedServiceException$1 {
|
|
265
203
|
name = "ValidationException";
|
|
266
204
|
$fault = "client";
|
|
@@ -279,18 +217,6 @@ let ValidationException$1 = class ValidationException extends WellArchitectedSer
|
|
|
279
217
|
this.Fields = opts.Fields;
|
|
280
218
|
}
|
|
281
219
|
};
|
|
282
|
-
const CheckProvider = {
|
|
283
|
-
TRUSTED_ADVISOR: "TRUSTED_ADVISOR",
|
|
284
|
-
};
|
|
285
|
-
const CheckFailureReason = {
|
|
286
|
-
ACCESS_DENIED: "ACCESS_DENIED",
|
|
287
|
-
ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR",
|
|
288
|
-
PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED",
|
|
289
|
-
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
290
|
-
};
|
|
291
|
-
const MetricType = {
|
|
292
|
-
WORKLOAD: "WORKLOAD",
|
|
293
|
-
};
|
|
294
220
|
let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extends WellArchitectedServiceException$1 {
|
|
295
221
|
name = "ServiceQuotaExceededException";
|
|
296
222
|
$fault = "client";
|
|
@@ -313,124 +239,6 @@ let ServiceQuotaExceededException$1 = class ServiceQuotaExceededException extend
|
|
|
313
239
|
this.ServiceCode = opts.ServiceCode;
|
|
314
240
|
}
|
|
315
241
|
};
|
|
316
|
-
const TrustedAdvisorIntegrationStatus = {
|
|
317
|
-
DISABLED: "DISABLED",
|
|
318
|
-
ENABLED: "ENABLED",
|
|
319
|
-
};
|
|
320
|
-
const DefinitionType = {
|
|
321
|
-
APP_REGISTRY: "APP_REGISTRY",
|
|
322
|
-
WORKLOAD_METADATA: "WORKLOAD_METADATA",
|
|
323
|
-
};
|
|
324
|
-
const WorkloadEnvironment = {
|
|
325
|
-
PREPRODUCTION: "PREPRODUCTION",
|
|
326
|
-
PRODUCTION: "PRODUCTION",
|
|
327
|
-
};
|
|
328
|
-
const WorkloadIssueManagementStatus = {
|
|
329
|
-
DISABLED: "DISABLED",
|
|
330
|
-
ENABLED: "ENABLED",
|
|
331
|
-
INHERIT: "INHERIT",
|
|
332
|
-
};
|
|
333
|
-
const PermissionType = {
|
|
334
|
-
CONTRIBUTOR: "CONTRIBUTOR",
|
|
335
|
-
READONLY: "READONLY",
|
|
336
|
-
};
|
|
337
|
-
const LensStatusType = {
|
|
338
|
-
ALL: "ALL",
|
|
339
|
-
DRAFT: "DRAFT",
|
|
340
|
-
PUBLISHED: "PUBLISHED",
|
|
341
|
-
};
|
|
342
|
-
const DifferenceStatus = {
|
|
343
|
-
DELETED: "DELETED",
|
|
344
|
-
NEW: "NEW",
|
|
345
|
-
UPDATED: "UPDATED",
|
|
346
|
-
};
|
|
347
|
-
const DiscoveryIntegrationStatus = {
|
|
348
|
-
DISABLED: "DISABLED",
|
|
349
|
-
ENABLED: "ENABLED",
|
|
350
|
-
};
|
|
351
|
-
const ReportFormat = {
|
|
352
|
-
JSON: "JSON",
|
|
353
|
-
PDF: "PDF",
|
|
354
|
-
};
|
|
355
|
-
const OrganizationSharingStatus = {
|
|
356
|
-
DISABLED: "DISABLED",
|
|
357
|
-
ENABLED: "ENABLED",
|
|
358
|
-
};
|
|
359
|
-
const LensStatus = {
|
|
360
|
-
CURRENT: "CURRENT",
|
|
361
|
-
DELETED: "DELETED",
|
|
362
|
-
DEPRECATED: "DEPRECATED",
|
|
363
|
-
NOT_CURRENT: "NOT_CURRENT",
|
|
364
|
-
UNSHARED: "UNSHARED",
|
|
365
|
-
};
|
|
366
|
-
const WorkloadImprovementStatus = {
|
|
367
|
-
COMPLETE: "COMPLETE",
|
|
368
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
369
|
-
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
370
|
-
NOT_STARTED: "NOT_STARTED",
|
|
371
|
-
RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED",
|
|
372
|
-
};
|
|
373
|
-
const Question = {
|
|
374
|
-
ANSWERED: "ANSWERED",
|
|
375
|
-
UNANSWERED: "UNANSWERED",
|
|
376
|
-
};
|
|
377
|
-
const ReviewTemplateUpdateStatus = {
|
|
378
|
-
CURRENT: "CURRENT",
|
|
379
|
-
LENS_NOT_CURRENT: "LENS_NOT_CURRENT",
|
|
380
|
-
};
|
|
381
|
-
const ReviewTemplateAnswerStatus = {
|
|
382
|
-
ANSWERED: "ANSWERED",
|
|
383
|
-
UNANSWERED: "UNANSWERED",
|
|
384
|
-
};
|
|
385
|
-
const ImportLensStatus = {
|
|
386
|
-
COMPLETE: "COMPLETE",
|
|
387
|
-
ERROR: "ERROR",
|
|
388
|
-
IN_PROGRESS: "IN_PROGRESS",
|
|
389
|
-
};
|
|
390
|
-
const IntegratingService = {
|
|
391
|
-
JIRA: "JIRA",
|
|
392
|
-
};
|
|
393
|
-
const ShareStatus = {
|
|
394
|
-
ACCEPTED: "ACCEPTED",
|
|
395
|
-
ASSOCIATED: "ASSOCIATED",
|
|
396
|
-
ASSOCIATING: "ASSOCIATING",
|
|
397
|
-
EXPIRED: "EXPIRED",
|
|
398
|
-
FAILED: "FAILED",
|
|
399
|
-
PENDING: "PENDING",
|
|
400
|
-
REJECTED: "REJECTED",
|
|
401
|
-
REVOKED: "REVOKED",
|
|
402
|
-
};
|
|
403
|
-
const LensType = {
|
|
404
|
-
AWS_OFFICIAL: "AWS_OFFICIAL",
|
|
405
|
-
CUSTOM_SELF: "CUSTOM_SELF",
|
|
406
|
-
CUSTOM_SHARED: "CUSTOM_SHARED",
|
|
407
|
-
};
|
|
408
|
-
const QuestionPriority = {
|
|
409
|
-
NONE: "NONE",
|
|
410
|
-
PRIORITIZED: "PRIORITIZED",
|
|
411
|
-
};
|
|
412
|
-
const NotificationType = {
|
|
413
|
-
LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED",
|
|
414
|
-
LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED",
|
|
415
|
-
};
|
|
416
|
-
const ProfileNotificationType = {
|
|
417
|
-
PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED",
|
|
418
|
-
PROFILE_DELETED: "PROFILE_DELETED",
|
|
419
|
-
};
|
|
420
|
-
const ProfileOwnerType = {
|
|
421
|
-
SELF: "SELF",
|
|
422
|
-
SHARED: "SHARED",
|
|
423
|
-
};
|
|
424
|
-
const ShareResourceType = {
|
|
425
|
-
LENS: "LENS",
|
|
426
|
-
PROFILE: "PROFILE",
|
|
427
|
-
TEMPLATE: "TEMPLATE",
|
|
428
|
-
WORKLOAD: "WORKLOAD",
|
|
429
|
-
};
|
|
430
|
-
const ShareInvitationAction = {
|
|
431
|
-
ACCEPT: "ACCEPT",
|
|
432
|
-
REJECT: "REJECT",
|
|
433
|
-
};
|
|
434
242
|
|
|
435
243
|
const _A = "Answer";
|
|
436
244
|
const _AD = "ArchitecturalDesign";
|
|
@@ -4332,6 +4140,199 @@ const paginateListWorkloadShares = core.createPaginator(WellArchitectedClient, L
|
|
|
4332
4140
|
|
|
4333
4141
|
const paginateListWorkloads = core.createPaginator(WellArchitectedClient, ListWorkloadsCommand, "NextToken", "NextToken", "MaxResults");
|
|
4334
4142
|
|
|
4143
|
+
const IntegrationStatusInput = {
|
|
4144
|
+
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
4145
|
+
};
|
|
4146
|
+
const AccountJiraIssueManagementStatus = {
|
|
4147
|
+
DISABLED: "DISABLED",
|
|
4148
|
+
ENABLED: "ENABLED",
|
|
4149
|
+
};
|
|
4150
|
+
const IssueManagementType = {
|
|
4151
|
+
AUTO: "AUTO",
|
|
4152
|
+
MANUAL: "MANUAL",
|
|
4153
|
+
};
|
|
4154
|
+
const IntegrationStatus = {
|
|
4155
|
+
CONFIGURED: "CONFIGURED",
|
|
4156
|
+
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
4157
|
+
};
|
|
4158
|
+
const CheckStatus = {
|
|
4159
|
+
ERROR: "ERROR",
|
|
4160
|
+
FETCH_FAILED: "FETCH_FAILED",
|
|
4161
|
+
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
4162
|
+
OKAY: "OKAY",
|
|
4163
|
+
WARNING: "WARNING",
|
|
4164
|
+
};
|
|
4165
|
+
const AdditionalResourceType = {
|
|
4166
|
+
HELPFUL_RESOURCE: "HELPFUL_RESOURCE",
|
|
4167
|
+
IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN",
|
|
4168
|
+
};
|
|
4169
|
+
const ChoiceReason = {
|
|
4170
|
+
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
4171
|
+
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
4172
|
+
NONE: "NONE",
|
|
4173
|
+
OTHER: "OTHER",
|
|
4174
|
+
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
4175
|
+
};
|
|
4176
|
+
const ChoiceStatus = {
|
|
4177
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
4178
|
+
SELECTED: "SELECTED",
|
|
4179
|
+
UNSELECTED: "UNSELECTED",
|
|
4180
|
+
};
|
|
4181
|
+
const AnswerReason = {
|
|
4182
|
+
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
4183
|
+
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
4184
|
+
NONE: "NONE",
|
|
4185
|
+
OTHER: "OTHER",
|
|
4186
|
+
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
4187
|
+
};
|
|
4188
|
+
const Risk = {
|
|
4189
|
+
HIGH: "HIGH",
|
|
4190
|
+
MEDIUM: "MEDIUM",
|
|
4191
|
+
NONE: "NONE",
|
|
4192
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
4193
|
+
UNANSWERED: "UNANSWERED",
|
|
4194
|
+
};
|
|
4195
|
+
const QuestionType = {
|
|
4196
|
+
NON_PRIORITIZED: "NON_PRIORITIZED",
|
|
4197
|
+
PRIORITIZED: "PRIORITIZED",
|
|
4198
|
+
};
|
|
4199
|
+
const ValidationExceptionReason = {
|
|
4200
|
+
CANNOT_PARSE: "CANNOT_PARSE",
|
|
4201
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
4202
|
+
OTHER: "OTHER",
|
|
4203
|
+
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
4204
|
+
};
|
|
4205
|
+
const CheckProvider = {
|
|
4206
|
+
TRUSTED_ADVISOR: "TRUSTED_ADVISOR",
|
|
4207
|
+
};
|
|
4208
|
+
const CheckFailureReason = {
|
|
4209
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
4210
|
+
ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR",
|
|
4211
|
+
PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED",
|
|
4212
|
+
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
4213
|
+
};
|
|
4214
|
+
const MetricType = {
|
|
4215
|
+
WORKLOAD: "WORKLOAD",
|
|
4216
|
+
};
|
|
4217
|
+
const TrustedAdvisorIntegrationStatus = {
|
|
4218
|
+
DISABLED: "DISABLED",
|
|
4219
|
+
ENABLED: "ENABLED",
|
|
4220
|
+
};
|
|
4221
|
+
const DefinitionType = {
|
|
4222
|
+
APP_REGISTRY: "APP_REGISTRY",
|
|
4223
|
+
WORKLOAD_METADATA: "WORKLOAD_METADATA",
|
|
4224
|
+
};
|
|
4225
|
+
const WorkloadEnvironment = {
|
|
4226
|
+
PREPRODUCTION: "PREPRODUCTION",
|
|
4227
|
+
PRODUCTION: "PRODUCTION",
|
|
4228
|
+
};
|
|
4229
|
+
const WorkloadIssueManagementStatus = {
|
|
4230
|
+
DISABLED: "DISABLED",
|
|
4231
|
+
ENABLED: "ENABLED",
|
|
4232
|
+
INHERIT: "INHERIT",
|
|
4233
|
+
};
|
|
4234
|
+
const PermissionType = {
|
|
4235
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
4236
|
+
READONLY: "READONLY",
|
|
4237
|
+
};
|
|
4238
|
+
const LensStatusType = {
|
|
4239
|
+
ALL: "ALL",
|
|
4240
|
+
DRAFT: "DRAFT",
|
|
4241
|
+
PUBLISHED: "PUBLISHED",
|
|
4242
|
+
};
|
|
4243
|
+
const DifferenceStatus = {
|
|
4244
|
+
DELETED: "DELETED",
|
|
4245
|
+
NEW: "NEW",
|
|
4246
|
+
UPDATED: "UPDATED",
|
|
4247
|
+
};
|
|
4248
|
+
const DiscoveryIntegrationStatus = {
|
|
4249
|
+
DISABLED: "DISABLED",
|
|
4250
|
+
ENABLED: "ENABLED",
|
|
4251
|
+
};
|
|
4252
|
+
const ReportFormat = {
|
|
4253
|
+
JSON: "JSON",
|
|
4254
|
+
PDF: "PDF",
|
|
4255
|
+
};
|
|
4256
|
+
const OrganizationSharingStatus = {
|
|
4257
|
+
DISABLED: "DISABLED",
|
|
4258
|
+
ENABLED: "ENABLED",
|
|
4259
|
+
};
|
|
4260
|
+
const LensStatus = {
|
|
4261
|
+
CURRENT: "CURRENT",
|
|
4262
|
+
DELETED: "DELETED",
|
|
4263
|
+
DEPRECATED: "DEPRECATED",
|
|
4264
|
+
NOT_CURRENT: "NOT_CURRENT",
|
|
4265
|
+
UNSHARED: "UNSHARED",
|
|
4266
|
+
};
|
|
4267
|
+
const WorkloadImprovementStatus = {
|
|
4268
|
+
COMPLETE: "COMPLETE",
|
|
4269
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
4270
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
4271
|
+
NOT_STARTED: "NOT_STARTED",
|
|
4272
|
+
RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED",
|
|
4273
|
+
};
|
|
4274
|
+
const Question = {
|
|
4275
|
+
ANSWERED: "ANSWERED",
|
|
4276
|
+
UNANSWERED: "UNANSWERED",
|
|
4277
|
+
};
|
|
4278
|
+
const ReviewTemplateUpdateStatus = {
|
|
4279
|
+
CURRENT: "CURRENT",
|
|
4280
|
+
LENS_NOT_CURRENT: "LENS_NOT_CURRENT",
|
|
4281
|
+
};
|
|
4282
|
+
const ReviewTemplateAnswerStatus = {
|
|
4283
|
+
ANSWERED: "ANSWERED",
|
|
4284
|
+
UNANSWERED: "UNANSWERED",
|
|
4285
|
+
};
|
|
4286
|
+
const ImportLensStatus = {
|
|
4287
|
+
COMPLETE: "COMPLETE",
|
|
4288
|
+
ERROR: "ERROR",
|
|
4289
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
4290
|
+
};
|
|
4291
|
+
const IntegratingService = {
|
|
4292
|
+
JIRA: "JIRA",
|
|
4293
|
+
};
|
|
4294
|
+
const ShareStatus = {
|
|
4295
|
+
ACCEPTED: "ACCEPTED",
|
|
4296
|
+
ASSOCIATED: "ASSOCIATED",
|
|
4297
|
+
ASSOCIATING: "ASSOCIATING",
|
|
4298
|
+
EXPIRED: "EXPIRED",
|
|
4299
|
+
FAILED: "FAILED",
|
|
4300
|
+
PENDING: "PENDING",
|
|
4301
|
+
REJECTED: "REJECTED",
|
|
4302
|
+
REVOKED: "REVOKED",
|
|
4303
|
+
};
|
|
4304
|
+
const LensType = {
|
|
4305
|
+
AWS_OFFICIAL: "AWS_OFFICIAL",
|
|
4306
|
+
CUSTOM_SELF: "CUSTOM_SELF",
|
|
4307
|
+
CUSTOM_SHARED: "CUSTOM_SHARED",
|
|
4308
|
+
};
|
|
4309
|
+
const QuestionPriority = {
|
|
4310
|
+
NONE: "NONE",
|
|
4311
|
+
PRIORITIZED: "PRIORITIZED",
|
|
4312
|
+
};
|
|
4313
|
+
const NotificationType = {
|
|
4314
|
+
LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED",
|
|
4315
|
+
LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED",
|
|
4316
|
+
};
|
|
4317
|
+
const ProfileNotificationType = {
|
|
4318
|
+
PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED",
|
|
4319
|
+
PROFILE_DELETED: "PROFILE_DELETED",
|
|
4320
|
+
};
|
|
4321
|
+
const ProfileOwnerType = {
|
|
4322
|
+
SELF: "SELF",
|
|
4323
|
+
SHARED: "SHARED",
|
|
4324
|
+
};
|
|
4325
|
+
const ShareResourceType = {
|
|
4326
|
+
LENS: "LENS",
|
|
4327
|
+
PROFILE: "PROFILE",
|
|
4328
|
+
TEMPLATE: "TEMPLATE",
|
|
4329
|
+
WORKLOAD: "WORKLOAD",
|
|
4330
|
+
};
|
|
4331
|
+
const ShareInvitationAction = {
|
|
4332
|
+
ACCEPT: "ACCEPT",
|
|
4333
|
+
REJECT: "REJECT",
|
|
4334
|
+
};
|
|
4335
|
+
|
|
4335
4336
|
Object.defineProperty(exports, "$Command", {
|
|
4336
4337
|
enumerable: true,
|
|
4337
4338
|
get: function () { return smithyClient.Command; }
|
package/dist-es/index.js
CHANGED
|
@@ -2,5 +2,6 @@ export * from "./WellArchitectedClient";
|
|
|
2
2
|
export * from "./WellArchitected";
|
|
3
3
|
export * from "./commands";
|
|
4
4
|
export * from "./pagination";
|
|
5
|
-
export * from "./models";
|
|
5
|
+
export * from "./models/enums";
|
|
6
|
+
export * from "./models/errors";
|
|
6
7
|
export { WellArchitectedServiceException } from "./models/WellArchitectedServiceException";
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
export const IntegrationStatusInput = {
|
|
2
|
+
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
3
|
+
};
|
|
4
|
+
export const AccountJiraIssueManagementStatus = {
|
|
5
|
+
DISABLED: "DISABLED",
|
|
6
|
+
ENABLED: "ENABLED",
|
|
7
|
+
};
|
|
8
|
+
export const IssueManagementType = {
|
|
9
|
+
AUTO: "AUTO",
|
|
10
|
+
MANUAL: "MANUAL",
|
|
11
|
+
};
|
|
12
|
+
export const IntegrationStatus = {
|
|
13
|
+
CONFIGURED: "CONFIGURED",
|
|
14
|
+
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
15
|
+
};
|
|
16
|
+
export const CheckStatus = {
|
|
17
|
+
ERROR: "ERROR",
|
|
18
|
+
FETCH_FAILED: "FETCH_FAILED",
|
|
19
|
+
NOT_AVAILABLE: "NOT_AVAILABLE",
|
|
20
|
+
OKAY: "OKAY",
|
|
21
|
+
WARNING: "WARNING",
|
|
22
|
+
};
|
|
23
|
+
export const AdditionalResourceType = {
|
|
24
|
+
HELPFUL_RESOURCE: "HELPFUL_RESOURCE",
|
|
25
|
+
IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN",
|
|
26
|
+
};
|
|
27
|
+
export const ChoiceReason = {
|
|
28
|
+
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
29
|
+
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
30
|
+
NONE: "NONE",
|
|
31
|
+
OTHER: "OTHER",
|
|
32
|
+
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
33
|
+
};
|
|
34
|
+
export const ChoiceStatus = {
|
|
35
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
36
|
+
SELECTED: "SELECTED",
|
|
37
|
+
UNSELECTED: "UNSELECTED",
|
|
38
|
+
};
|
|
39
|
+
export const AnswerReason = {
|
|
40
|
+
ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS",
|
|
41
|
+
BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES",
|
|
42
|
+
NONE: "NONE",
|
|
43
|
+
OTHER: "OTHER",
|
|
44
|
+
OUT_OF_SCOPE: "OUT_OF_SCOPE",
|
|
45
|
+
};
|
|
46
|
+
export const Risk = {
|
|
47
|
+
HIGH: "HIGH",
|
|
48
|
+
MEDIUM: "MEDIUM",
|
|
49
|
+
NONE: "NONE",
|
|
50
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
51
|
+
UNANSWERED: "UNANSWERED",
|
|
52
|
+
};
|
|
53
|
+
export const QuestionType = {
|
|
54
|
+
NON_PRIORITIZED: "NON_PRIORITIZED",
|
|
55
|
+
PRIORITIZED: "PRIORITIZED",
|
|
56
|
+
};
|
|
57
|
+
export const ValidationExceptionReason = {
|
|
58
|
+
CANNOT_PARSE: "CANNOT_PARSE",
|
|
59
|
+
FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED",
|
|
60
|
+
OTHER: "OTHER",
|
|
61
|
+
UNKNOWN_OPERATION: "UNKNOWN_OPERATION",
|
|
62
|
+
};
|
|
63
|
+
export const CheckProvider = {
|
|
64
|
+
TRUSTED_ADVISOR: "TRUSTED_ADVISOR",
|
|
65
|
+
};
|
|
66
|
+
export const CheckFailureReason = {
|
|
67
|
+
ACCESS_DENIED: "ACCESS_DENIED",
|
|
68
|
+
ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR",
|
|
69
|
+
PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED",
|
|
70
|
+
UNKNOWN_ERROR: "UNKNOWN_ERROR",
|
|
71
|
+
};
|
|
72
|
+
export const MetricType = {
|
|
73
|
+
WORKLOAD: "WORKLOAD",
|
|
74
|
+
};
|
|
75
|
+
export const TrustedAdvisorIntegrationStatus = {
|
|
76
|
+
DISABLED: "DISABLED",
|
|
77
|
+
ENABLED: "ENABLED",
|
|
78
|
+
};
|
|
79
|
+
export const DefinitionType = {
|
|
80
|
+
APP_REGISTRY: "APP_REGISTRY",
|
|
81
|
+
WORKLOAD_METADATA: "WORKLOAD_METADATA",
|
|
82
|
+
};
|
|
83
|
+
export const WorkloadEnvironment = {
|
|
84
|
+
PREPRODUCTION: "PREPRODUCTION",
|
|
85
|
+
PRODUCTION: "PRODUCTION",
|
|
86
|
+
};
|
|
87
|
+
export const WorkloadIssueManagementStatus = {
|
|
88
|
+
DISABLED: "DISABLED",
|
|
89
|
+
ENABLED: "ENABLED",
|
|
90
|
+
INHERIT: "INHERIT",
|
|
91
|
+
};
|
|
92
|
+
export const PermissionType = {
|
|
93
|
+
CONTRIBUTOR: "CONTRIBUTOR",
|
|
94
|
+
READONLY: "READONLY",
|
|
95
|
+
};
|
|
96
|
+
export const LensStatusType = {
|
|
97
|
+
ALL: "ALL",
|
|
98
|
+
DRAFT: "DRAFT",
|
|
99
|
+
PUBLISHED: "PUBLISHED",
|
|
100
|
+
};
|
|
101
|
+
export const DifferenceStatus = {
|
|
102
|
+
DELETED: "DELETED",
|
|
103
|
+
NEW: "NEW",
|
|
104
|
+
UPDATED: "UPDATED",
|
|
105
|
+
};
|
|
106
|
+
export const DiscoveryIntegrationStatus = {
|
|
107
|
+
DISABLED: "DISABLED",
|
|
108
|
+
ENABLED: "ENABLED",
|
|
109
|
+
};
|
|
110
|
+
export const ReportFormat = {
|
|
111
|
+
JSON: "JSON",
|
|
112
|
+
PDF: "PDF",
|
|
113
|
+
};
|
|
114
|
+
export const OrganizationSharingStatus = {
|
|
115
|
+
DISABLED: "DISABLED",
|
|
116
|
+
ENABLED: "ENABLED",
|
|
117
|
+
};
|
|
118
|
+
export const LensStatus = {
|
|
119
|
+
CURRENT: "CURRENT",
|
|
120
|
+
DELETED: "DELETED",
|
|
121
|
+
DEPRECATED: "DEPRECATED",
|
|
122
|
+
NOT_CURRENT: "NOT_CURRENT",
|
|
123
|
+
UNSHARED: "UNSHARED",
|
|
124
|
+
};
|
|
125
|
+
export const WorkloadImprovementStatus = {
|
|
126
|
+
COMPLETE: "COMPLETE",
|
|
127
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
128
|
+
NOT_APPLICABLE: "NOT_APPLICABLE",
|
|
129
|
+
NOT_STARTED: "NOT_STARTED",
|
|
130
|
+
RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED",
|
|
131
|
+
};
|
|
132
|
+
export const Question = {
|
|
133
|
+
ANSWERED: "ANSWERED",
|
|
134
|
+
UNANSWERED: "UNANSWERED",
|
|
135
|
+
};
|
|
136
|
+
export const ReviewTemplateUpdateStatus = {
|
|
137
|
+
CURRENT: "CURRENT",
|
|
138
|
+
LENS_NOT_CURRENT: "LENS_NOT_CURRENT",
|
|
139
|
+
};
|
|
140
|
+
export const ReviewTemplateAnswerStatus = {
|
|
141
|
+
ANSWERED: "ANSWERED",
|
|
142
|
+
UNANSWERED: "UNANSWERED",
|
|
143
|
+
};
|
|
144
|
+
export const ImportLensStatus = {
|
|
145
|
+
COMPLETE: "COMPLETE",
|
|
146
|
+
ERROR: "ERROR",
|
|
147
|
+
IN_PROGRESS: "IN_PROGRESS",
|
|
148
|
+
};
|
|
149
|
+
export const IntegratingService = {
|
|
150
|
+
JIRA: "JIRA",
|
|
151
|
+
};
|
|
152
|
+
export const ShareStatus = {
|
|
153
|
+
ACCEPTED: "ACCEPTED",
|
|
154
|
+
ASSOCIATED: "ASSOCIATED",
|
|
155
|
+
ASSOCIATING: "ASSOCIATING",
|
|
156
|
+
EXPIRED: "EXPIRED",
|
|
157
|
+
FAILED: "FAILED",
|
|
158
|
+
PENDING: "PENDING",
|
|
159
|
+
REJECTED: "REJECTED",
|
|
160
|
+
REVOKED: "REVOKED",
|
|
161
|
+
};
|
|
162
|
+
export const LensType = {
|
|
163
|
+
AWS_OFFICIAL: "AWS_OFFICIAL",
|
|
164
|
+
CUSTOM_SELF: "CUSTOM_SELF",
|
|
165
|
+
CUSTOM_SHARED: "CUSTOM_SHARED",
|
|
166
|
+
};
|
|
167
|
+
export const QuestionPriority = {
|
|
168
|
+
NONE: "NONE",
|
|
169
|
+
PRIORITIZED: "PRIORITIZED",
|
|
170
|
+
};
|
|
171
|
+
export const NotificationType = {
|
|
172
|
+
LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED",
|
|
173
|
+
LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED",
|
|
174
|
+
};
|
|
175
|
+
export const ProfileNotificationType = {
|
|
176
|
+
PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED",
|
|
177
|
+
PROFILE_DELETED: "PROFILE_DELETED",
|
|
178
|
+
};
|
|
179
|
+
export const ProfileOwnerType = {
|
|
180
|
+
SELF: "SELF",
|
|
181
|
+
SHARED: "SHARED",
|
|
182
|
+
};
|
|
183
|
+
export const ShareResourceType = {
|
|
184
|
+
LENS: "LENS",
|
|
185
|
+
PROFILE: "PROFILE",
|
|
186
|
+
TEMPLATE: "TEMPLATE",
|
|
187
|
+
WORKLOAD: "WORKLOAD",
|
|
188
|
+
};
|
|
189
|
+
export const ShareInvitationAction = {
|
|
190
|
+
ACCEPT: "ACCEPT",
|
|
191
|
+
REJECT: "REJECT",
|
|
192
|
+
};
|