@aws-sdk/client-wellarchitected 3.933.0 → 3.935.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 +12 -12
- 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
|
@@ -1,42 +1,50 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
1
|
+
import {
|
|
2
|
+
AccountJiraIssueManagementStatus,
|
|
3
|
+
AdditionalResourceType,
|
|
4
|
+
AnswerReason,
|
|
5
|
+
CheckFailureReason,
|
|
6
|
+
CheckProvider,
|
|
7
|
+
CheckStatus,
|
|
8
|
+
ChoiceReason,
|
|
9
|
+
ChoiceStatus,
|
|
10
|
+
DefinitionType,
|
|
11
|
+
DifferenceStatus,
|
|
12
|
+
DiscoveryIntegrationStatus,
|
|
13
|
+
ImportLensStatus,
|
|
14
|
+
IntegratingService,
|
|
15
|
+
IntegrationStatus,
|
|
16
|
+
IntegrationStatusInput,
|
|
17
|
+
IssueManagementType,
|
|
18
|
+
LensStatus,
|
|
19
|
+
LensStatusType,
|
|
20
|
+
LensType,
|
|
21
|
+
MetricType,
|
|
22
|
+
NotificationType,
|
|
23
|
+
OrganizationSharingStatus,
|
|
24
|
+
PermissionType,
|
|
25
|
+
ProfileNotificationType,
|
|
26
|
+
ProfileOwnerType,
|
|
27
|
+
Question,
|
|
28
|
+
QuestionPriority,
|
|
29
|
+
QuestionType,
|
|
30
|
+
ReportFormat,
|
|
31
|
+
ReviewTemplateAnswerStatus,
|
|
32
|
+
ReviewTemplateUpdateStatus,
|
|
33
|
+
Risk,
|
|
34
|
+
ShareInvitationAction,
|
|
35
|
+
ShareResourceType,
|
|
36
|
+
ShareStatus,
|
|
37
|
+
TrustedAdvisorIntegrationStatus,
|
|
38
|
+
WorkloadEnvironment,
|
|
39
|
+
WorkloadImprovementStatus,
|
|
40
|
+
WorkloadIssueManagementStatus,
|
|
41
|
+
} from "./enums";
|
|
28
42
|
export interface AccountJiraConfigurationInput {
|
|
29
43
|
IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
|
|
30
44
|
IssueManagementType?: IssueManagementType | undefined;
|
|
31
45
|
JiraProjectKey?: string | undefined;
|
|
32
46
|
IntegrationStatus?: IntegrationStatusInput | undefined;
|
|
33
47
|
}
|
|
34
|
-
export declare const IntegrationStatus: {
|
|
35
|
-
readonly CONFIGURED: "CONFIGURED";
|
|
36
|
-
readonly NOT_CONFIGURED: "NOT_CONFIGURED";
|
|
37
|
-
};
|
|
38
|
-
export type IntegrationStatus =
|
|
39
|
-
(typeof IntegrationStatus)[keyof typeof IntegrationStatus];
|
|
40
48
|
export interface AccountJiraConfigurationOutput {
|
|
41
49
|
IntegrationStatus?: IntegrationStatus | undefined;
|
|
42
50
|
IssueManagementStatus?: AccountJiraIssueManagementStatus | undefined;
|
|
@@ -45,42 +53,14 @@ export interface AccountJiraConfigurationOutput {
|
|
|
45
53
|
JiraProjectKey?: string | undefined;
|
|
46
54
|
StatusMessage?: string | undefined;
|
|
47
55
|
}
|
|
48
|
-
export declare const CheckStatus: {
|
|
49
|
-
readonly ERROR: "ERROR";
|
|
50
|
-
readonly FETCH_FAILED: "FETCH_FAILED";
|
|
51
|
-
readonly NOT_AVAILABLE: "NOT_AVAILABLE";
|
|
52
|
-
readonly OKAY: "OKAY";
|
|
53
|
-
readonly WARNING: "WARNING";
|
|
54
|
-
};
|
|
55
|
-
export type CheckStatus = (typeof CheckStatus)[keyof typeof CheckStatus];
|
|
56
56
|
export interface ChoiceContent {
|
|
57
57
|
DisplayText?: string | undefined;
|
|
58
58
|
Url?: string | undefined;
|
|
59
59
|
}
|
|
60
|
-
export declare const AdditionalResourceType: {
|
|
61
|
-
readonly HELPFUL_RESOURCE: "HELPFUL_RESOURCE";
|
|
62
|
-
readonly IMPROVEMENT_PLAN: "IMPROVEMENT_PLAN";
|
|
63
|
-
};
|
|
64
|
-
export type AdditionalResourceType =
|
|
65
|
-
(typeof AdditionalResourceType)[keyof typeof AdditionalResourceType];
|
|
66
60
|
export interface AdditionalResources {
|
|
67
61
|
Type?: AdditionalResourceType | undefined;
|
|
68
62
|
Content?: ChoiceContent[] | undefined;
|
|
69
63
|
}
|
|
70
|
-
export declare const ChoiceReason: {
|
|
71
|
-
readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
|
|
72
|
-
readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
|
|
73
|
-
readonly NONE: "NONE";
|
|
74
|
-
readonly OTHER: "OTHER";
|
|
75
|
-
readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
|
|
76
|
-
};
|
|
77
|
-
export type ChoiceReason = (typeof ChoiceReason)[keyof typeof ChoiceReason];
|
|
78
|
-
export declare const ChoiceStatus: {
|
|
79
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
80
|
-
readonly SELECTED: "SELECTED";
|
|
81
|
-
readonly UNSELECTED: "UNSELECTED";
|
|
82
|
-
};
|
|
83
|
-
export type ChoiceStatus = (typeof ChoiceStatus)[keyof typeof ChoiceStatus];
|
|
84
64
|
export interface ChoiceAnswer {
|
|
85
65
|
ChoiceId?: string | undefined;
|
|
86
66
|
Status?: ChoiceStatus | undefined;
|
|
@@ -99,22 +79,6 @@ export interface JiraConfiguration {
|
|
|
99
79
|
JiraIssueUrl?: string | undefined;
|
|
100
80
|
LastSyncedTime?: Date | undefined;
|
|
101
81
|
}
|
|
102
|
-
export declare const AnswerReason: {
|
|
103
|
-
readonly ARCHITECTURE_CONSTRAINTS: "ARCHITECTURE_CONSTRAINTS";
|
|
104
|
-
readonly BUSINESS_PRIORITIES: "BUSINESS_PRIORITIES";
|
|
105
|
-
readonly NONE: "NONE";
|
|
106
|
-
readonly OTHER: "OTHER";
|
|
107
|
-
readonly OUT_OF_SCOPE: "OUT_OF_SCOPE";
|
|
108
|
-
};
|
|
109
|
-
export type AnswerReason = (typeof AnswerReason)[keyof typeof AnswerReason];
|
|
110
|
-
export declare const Risk: {
|
|
111
|
-
readonly HIGH: "HIGH";
|
|
112
|
-
readonly MEDIUM: "MEDIUM";
|
|
113
|
-
readonly NONE: "NONE";
|
|
114
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
115
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
116
|
-
};
|
|
117
|
-
export type Risk = (typeof Risk)[keyof typeof Risk];
|
|
118
82
|
export interface Answer {
|
|
119
83
|
QuestionId?: string | undefined;
|
|
120
84
|
PillarId?: string | undefined;
|
|
@@ -137,11 +101,6 @@ export interface ChoiceAnswerSummary {
|
|
|
137
101
|
Status?: ChoiceStatus | undefined;
|
|
138
102
|
Reason?: ChoiceReason | undefined;
|
|
139
103
|
}
|
|
140
|
-
export declare const QuestionType: {
|
|
141
|
-
readonly NON_PRIORITIZED: "NON_PRIORITIZED";
|
|
142
|
-
readonly PRIORITIZED: "PRIORITIZED";
|
|
143
|
-
};
|
|
144
|
-
export type QuestionType = (typeof QuestionType)[keyof typeof QuestionType];
|
|
145
104
|
export interface AnswerSummary {
|
|
146
105
|
QuestionId?: string | undefined;
|
|
147
106
|
PillarId?: string | undefined;
|
|
@@ -159,64 +118,10 @@ export interface AssociateLensesInput {
|
|
|
159
118
|
WorkloadId: string | undefined;
|
|
160
119
|
LensAliases: string[] | undefined;
|
|
161
120
|
}
|
|
162
|
-
export declare class ConflictException extends __BaseException {
|
|
163
|
-
readonly name: "ConflictException";
|
|
164
|
-
readonly $fault: "client";
|
|
165
|
-
Message: string | undefined;
|
|
166
|
-
ResourceId: string | undefined;
|
|
167
|
-
ResourceType: string | undefined;
|
|
168
|
-
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
169
|
-
}
|
|
170
|
-
export declare class InternalServerException extends __BaseException {
|
|
171
|
-
readonly name: "InternalServerException";
|
|
172
|
-
readonly $fault: "server";
|
|
173
|
-
Message: string | undefined;
|
|
174
|
-
constructor(
|
|
175
|
-
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
176
|
-
);
|
|
177
|
-
}
|
|
178
|
-
export declare class ResourceNotFoundException extends __BaseException {
|
|
179
|
-
readonly name: "ResourceNotFoundException";
|
|
180
|
-
readonly $fault: "client";
|
|
181
|
-
Message: string | undefined;
|
|
182
|
-
ResourceId: string | undefined;
|
|
183
|
-
ResourceType: string | undefined;
|
|
184
|
-
constructor(
|
|
185
|
-
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
186
|
-
);
|
|
187
|
-
}
|
|
188
|
-
export declare class ThrottlingException extends __BaseException {
|
|
189
|
-
readonly name: "ThrottlingException";
|
|
190
|
-
readonly $fault: "client";
|
|
191
|
-
Message: string | undefined;
|
|
192
|
-
QuotaCode?: string | undefined;
|
|
193
|
-
ServiceCode?: string | undefined;
|
|
194
|
-
constructor(
|
|
195
|
-
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
196
|
-
);
|
|
197
|
-
}
|
|
198
121
|
export interface ValidationExceptionField {
|
|
199
122
|
Name: string | undefined;
|
|
200
123
|
Message: string | undefined;
|
|
201
124
|
}
|
|
202
|
-
export declare const ValidationExceptionReason: {
|
|
203
|
-
readonly CANNOT_PARSE: "CANNOT_PARSE";
|
|
204
|
-
readonly FIELD_VALIDATION_FAILED: "FIELD_VALIDATION_FAILED";
|
|
205
|
-
readonly OTHER: "OTHER";
|
|
206
|
-
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
207
|
-
};
|
|
208
|
-
export type ValidationExceptionReason =
|
|
209
|
-
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
210
|
-
export declare class ValidationException extends __BaseException {
|
|
211
|
-
readonly name: "ValidationException";
|
|
212
|
-
readonly $fault: "client";
|
|
213
|
-
Message: string | undefined;
|
|
214
|
-
Reason?: ValidationExceptionReason | undefined;
|
|
215
|
-
Fields?: ValidationExceptionField[] | undefined;
|
|
216
|
-
constructor(
|
|
217
|
-
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
218
|
-
);
|
|
219
|
-
}
|
|
220
125
|
export interface AssociateProfilesInput {
|
|
221
126
|
WorkloadId: string | undefined;
|
|
222
127
|
ProfileArns: string[] | undefined;
|
|
@@ -225,18 +130,6 @@ export interface BestPractice {
|
|
|
225
130
|
ChoiceId?: string | undefined;
|
|
226
131
|
ChoiceTitle?: string | undefined;
|
|
227
132
|
}
|
|
228
|
-
export declare const CheckProvider: {
|
|
229
|
-
readonly TRUSTED_ADVISOR: "TRUSTED_ADVISOR";
|
|
230
|
-
};
|
|
231
|
-
export type CheckProvider = (typeof CheckProvider)[keyof typeof CheckProvider];
|
|
232
|
-
export declare const CheckFailureReason: {
|
|
233
|
-
readonly ACCESS_DENIED: "ACCESS_DENIED";
|
|
234
|
-
readonly ASSUME_ROLE_ERROR: "ASSUME_ROLE_ERROR";
|
|
235
|
-
readonly PREMIUM_SUPPORT_REQUIRED: "PREMIUM_SUPPORT_REQUIRED";
|
|
236
|
-
readonly UNKNOWN_ERROR: "UNKNOWN_ERROR";
|
|
237
|
-
};
|
|
238
|
-
export type CheckFailureReason =
|
|
239
|
-
(typeof CheckFailureReason)[keyof typeof CheckFailureReason];
|
|
240
133
|
export interface CheckDetail {
|
|
241
134
|
Id?: string | undefined;
|
|
242
135
|
Name?: string | undefined;
|
|
@@ -290,10 +183,6 @@ export interface LensMetric {
|
|
|
290
183
|
Pillars?: PillarMetric[] | undefined;
|
|
291
184
|
RiskCounts?: Partial<Record<Risk, number>> | undefined;
|
|
292
185
|
}
|
|
293
|
-
export declare const MetricType: {
|
|
294
|
-
readonly WORKLOAD: "WORKLOAD";
|
|
295
|
-
};
|
|
296
|
-
export type MetricType = (typeof MetricType)[keyof typeof MetricType];
|
|
297
186
|
export interface ConsolidatedReportMetric {
|
|
298
187
|
MetricType?: MetricType | undefined;
|
|
299
188
|
RiskCounts?: Partial<Record<Risk, number>> | undefined;
|
|
@@ -312,18 +201,6 @@ export interface CreateLensShareInput {
|
|
|
312
201
|
export interface CreateLensShareOutput {
|
|
313
202
|
ShareId?: string | undefined;
|
|
314
203
|
}
|
|
315
|
-
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
316
|
-
readonly name: "ServiceQuotaExceededException";
|
|
317
|
-
readonly $fault: "client";
|
|
318
|
-
Message: string | undefined;
|
|
319
|
-
ResourceId?: string | undefined;
|
|
320
|
-
ResourceType?: string | undefined;
|
|
321
|
-
QuotaCode: string | undefined;
|
|
322
|
-
ServiceCode: string | undefined;
|
|
323
|
-
constructor(
|
|
324
|
-
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
325
|
-
);
|
|
326
|
-
}
|
|
327
204
|
export interface CreateLensVersionInput {
|
|
328
205
|
LensAlias: string | undefined;
|
|
329
206
|
LensVersion: string | undefined;
|
|
@@ -387,35 +264,10 @@ export interface CreateTemplateShareOutput {
|
|
|
387
264
|
TemplateArn?: string | undefined;
|
|
388
265
|
ShareId?: string | undefined;
|
|
389
266
|
}
|
|
390
|
-
export declare const TrustedAdvisorIntegrationStatus: {
|
|
391
|
-
readonly DISABLED: "DISABLED";
|
|
392
|
-
readonly ENABLED: "ENABLED";
|
|
393
|
-
};
|
|
394
|
-
export type TrustedAdvisorIntegrationStatus =
|
|
395
|
-
(typeof TrustedAdvisorIntegrationStatus)[keyof typeof TrustedAdvisorIntegrationStatus];
|
|
396
|
-
export declare const DefinitionType: {
|
|
397
|
-
readonly APP_REGISTRY: "APP_REGISTRY";
|
|
398
|
-
readonly WORKLOAD_METADATA: "WORKLOAD_METADATA";
|
|
399
|
-
};
|
|
400
|
-
export type DefinitionType =
|
|
401
|
-
(typeof DefinitionType)[keyof typeof DefinitionType];
|
|
402
267
|
export interface WorkloadDiscoveryConfig {
|
|
403
268
|
TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus | undefined;
|
|
404
269
|
WorkloadResourceDefinition?: DefinitionType[] | undefined;
|
|
405
270
|
}
|
|
406
|
-
export declare const WorkloadEnvironment: {
|
|
407
|
-
readonly PREPRODUCTION: "PREPRODUCTION";
|
|
408
|
-
readonly PRODUCTION: "PRODUCTION";
|
|
409
|
-
};
|
|
410
|
-
export type WorkloadEnvironment =
|
|
411
|
-
(typeof WorkloadEnvironment)[keyof typeof WorkloadEnvironment];
|
|
412
|
-
export declare const WorkloadIssueManagementStatus: {
|
|
413
|
-
readonly DISABLED: "DISABLED";
|
|
414
|
-
readonly ENABLED: "ENABLED";
|
|
415
|
-
readonly INHERIT: "INHERIT";
|
|
416
|
-
};
|
|
417
|
-
export type WorkloadIssueManagementStatus =
|
|
418
|
-
(typeof WorkloadIssueManagementStatus)[keyof typeof WorkloadIssueManagementStatus];
|
|
419
271
|
export interface WorkloadJiraConfigurationInput {
|
|
420
272
|
IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
|
|
421
273
|
IssueManagementType?: IssueManagementType | undefined;
|
|
@@ -447,12 +299,6 @@ export interface CreateWorkloadOutput {
|
|
|
447
299
|
WorkloadId?: string | undefined;
|
|
448
300
|
WorkloadArn?: string | undefined;
|
|
449
301
|
}
|
|
450
|
-
export declare const PermissionType: {
|
|
451
|
-
readonly CONTRIBUTOR: "CONTRIBUTOR";
|
|
452
|
-
readonly READONLY: "READONLY";
|
|
453
|
-
};
|
|
454
|
-
export type PermissionType =
|
|
455
|
-
(typeof PermissionType)[keyof typeof PermissionType];
|
|
456
302
|
export interface CreateWorkloadShareInput {
|
|
457
303
|
WorkloadId: string | undefined;
|
|
458
304
|
SharedWith: string | undefined;
|
|
@@ -463,13 +309,6 @@ export interface CreateWorkloadShareOutput {
|
|
|
463
309
|
WorkloadId?: string | undefined;
|
|
464
310
|
ShareId?: string | undefined;
|
|
465
311
|
}
|
|
466
|
-
export declare const LensStatusType: {
|
|
467
|
-
readonly ALL: "ALL";
|
|
468
|
-
readonly DRAFT: "DRAFT";
|
|
469
|
-
readonly PUBLISHED: "PUBLISHED";
|
|
470
|
-
};
|
|
471
|
-
export type LensStatusType =
|
|
472
|
-
(typeof LensStatusType)[keyof typeof LensStatusType];
|
|
473
312
|
export interface DeleteLensInput {
|
|
474
313
|
LensAlias: string | undefined;
|
|
475
314
|
ClientRequestToken?: string | undefined;
|
|
@@ -507,13 +346,6 @@ export interface DeleteWorkloadShareInput {
|
|
|
507
346
|
WorkloadId: string | undefined;
|
|
508
347
|
ClientRequestToken?: string | undefined;
|
|
509
348
|
}
|
|
510
|
-
export declare const DifferenceStatus: {
|
|
511
|
-
readonly DELETED: "DELETED";
|
|
512
|
-
readonly NEW: "NEW";
|
|
513
|
-
readonly UPDATED: "UPDATED";
|
|
514
|
-
};
|
|
515
|
-
export type DifferenceStatus =
|
|
516
|
-
(typeof DifferenceStatus)[keyof typeof DifferenceStatus];
|
|
517
349
|
export interface DisassociateLensesInput {
|
|
518
350
|
WorkloadId: string | undefined;
|
|
519
351
|
LensAliases: string[] | undefined;
|
|
@@ -522,12 +354,6 @@ export interface DisassociateProfilesInput {
|
|
|
522
354
|
WorkloadId: string | undefined;
|
|
523
355
|
ProfileArns: string[] | undefined;
|
|
524
356
|
}
|
|
525
|
-
export declare const DiscoveryIntegrationStatus: {
|
|
526
|
-
readonly DISABLED: "DISABLED";
|
|
527
|
-
readonly ENABLED: "ENABLED";
|
|
528
|
-
};
|
|
529
|
-
export type DiscoveryIntegrationStatus =
|
|
530
|
-
(typeof DiscoveryIntegrationStatus)[keyof typeof DiscoveryIntegrationStatus];
|
|
531
357
|
export interface ExportLensInput {
|
|
532
358
|
LensAlias: string | undefined;
|
|
533
359
|
LensVersion?: string | undefined;
|
|
@@ -548,11 +374,6 @@ export interface GetAnswerOutput {
|
|
|
548
374
|
LensArn?: string | undefined;
|
|
549
375
|
Answer?: Answer | undefined;
|
|
550
376
|
}
|
|
551
|
-
export declare const ReportFormat: {
|
|
552
|
-
readonly JSON: "JSON";
|
|
553
|
-
readonly PDF: "PDF";
|
|
554
|
-
};
|
|
555
|
-
export type ReportFormat = (typeof ReportFormat)[keyof typeof ReportFormat];
|
|
556
377
|
export interface GetConsolidatedReportInput {
|
|
557
378
|
Format: ReportFormat | undefined;
|
|
558
379
|
IncludeSharedResources?: boolean | undefined;
|
|
@@ -564,12 +385,6 @@ export interface GetConsolidatedReportOutput {
|
|
|
564
385
|
NextToken?: string | undefined;
|
|
565
386
|
Base64String?: string | undefined;
|
|
566
387
|
}
|
|
567
|
-
export declare const OrganizationSharingStatus: {
|
|
568
|
-
readonly DISABLED: "DISABLED";
|
|
569
|
-
readonly ENABLED: "ENABLED";
|
|
570
|
-
};
|
|
571
|
-
export type OrganizationSharingStatus =
|
|
572
|
-
(typeof OrganizationSharingStatus)[keyof typeof OrganizationSharingStatus];
|
|
573
388
|
export interface GetGlobalSettingsOutput {
|
|
574
389
|
OrganizationSharingStatus?: OrganizationSharingStatus | undefined;
|
|
575
390
|
DiscoveryIntegrationStatus?: DiscoveryIntegrationStatus | undefined;
|
|
@@ -603,14 +418,6 @@ export interface SelectedPillar {
|
|
|
603
418
|
export interface JiraSelectedQuestionConfiguration {
|
|
604
419
|
SelectedPillars?: SelectedPillar[] | undefined;
|
|
605
420
|
}
|
|
606
|
-
export declare const LensStatus: {
|
|
607
|
-
readonly CURRENT: "CURRENT";
|
|
608
|
-
readonly DELETED: "DELETED";
|
|
609
|
-
readonly DEPRECATED: "DEPRECATED";
|
|
610
|
-
readonly NOT_CURRENT: "NOT_CURRENT";
|
|
611
|
-
readonly UNSHARED: "UNSHARED";
|
|
612
|
-
};
|
|
613
|
-
export type LensStatus = (typeof LensStatus)[keyof typeof LensStatus];
|
|
614
421
|
export interface PillarReviewSummary {
|
|
615
422
|
PillarId?: string | undefined;
|
|
616
423
|
PillarName?: string | undefined;
|
|
@@ -688,15 +495,6 @@ export interface GetMilestoneInput {
|
|
|
688
495
|
WorkloadId: string | undefined;
|
|
689
496
|
MilestoneNumber: number | undefined;
|
|
690
497
|
}
|
|
691
|
-
export declare const WorkloadImprovementStatus: {
|
|
692
|
-
readonly COMPLETE: "COMPLETE";
|
|
693
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
694
|
-
readonly NOT_APPLICABLE: "NOT_APPLICABLE";
|
|
695
|
-
readonly NOT_STARTED: "NOT_STARTED";
|
|
696
|
-
readonly RISK_ACKNOWLEDGED: "RISK_ACKNOWLEDGED";
|
|
697
|
-
};
|
|
698
|
-
export type WorkloadImprovementStatus =
|
|
699
|
-
(typeof WorkloadImprovementStatus)[keyof typeof WorkloadImprovementStatus];
|
|
700
498
|
export interface WorkloadJiraConfigurationOutput {
|
|
701
499
|
IssueManagementStatus?: WorkloadIssueManagementStatus | undefined;
|
|
702
500
|
IssueManagementType?: IssueManagementType | undefined;
|
|
@@ -802,17 +600,6 @@ export interface GetProfileTemplateOutput {
|
|
|
802
600
|
export interface GetReviewTemplateInput {
|
|
803
601
|
TemplateArn: string | undefined;
|
|
804
602
|
}
|
|
805
|
-
export declare const Question: {
|
|
806
|
-
readonly ANSWERED: "ANSWERED";
|
|
807
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
808
|
-
};
|
|
809
|
-
export type Question = (typeof Question)[keyof typeof Question];
|
|
810
|
-
export declare const ReviewTemplateUpdateStatus: {
|
|
811
|
-
readonly CURRENT: "CURRENT";
|
|
812
|
-
readonly LENS_NOT_CURRENT: "LENS_NOT_CURRENT";
|
|
813
|
-
};
|
|
814
|
-
export type ReviewTemplateUpdateStatus =
|
|
815
|
-
(typeof ReviewTemplateUpdateStatus)[keyof typeof ReviewTemplateUpdateStatus];
|
|
816
603
|
export interface ReviewTemplate {
|
|
817
604
|
Description?: string | undefined;
|
|
818
605
|
Lenses?: string[] | undefined;
|
|
@@ -834,12 +621,6 @@ export interface GetReviewTemplateAnswerInput {
|
|
|
834
621
|
LensAlias: string | undefined;
|
|
835
622
|
QuestionId: string | undefined;
|
|
836
623
|
}
|
|
837
|
-
export declare const ReviewTemplateAnswerStatus: {
|
|
838
|
-
readonly ANSWERED: "ANSWERED";
|
|
839
|
-
readonly UNANSWERED: "UNANSWERED";
|
|
840
|
-
};
|
|
841
|
-
export type ReviewTemplateAnswerStatus =
|
|
842
|
-
(typeof ReviewTemplateAnswerStatus)[keyof typeof ReviewTemplateAnswerStatus];
|
|
843
624
|
export interface ReviewTemplateAnswer {
|
|
844
625
|
QuestionId?: string | undefined;
|
|
845
626
|
PillarId?: string | undefined;
|
|
@@ -899,13 +680,6 @@ export interface ImportLensInput {
|
|
|
899
680
|
ClientRequestToken?: string | undefined;
|
|
900
681
|
Tags?: Record<string, string> | undefined;
|
|
901
682
|
}
|
|
902
|
-
export declare const ImportLensStatus: {
|
|
903
|
-
readonly COMPLETE: "COMPLETE";
|
|
904
|
-
readonly ERROR: "ERROR";
|
|
905
|
-
readonly IN_PROGRESS: "IN_PROGRESS";
|
|
906
|
-
};
|
|
907
|
-
export type ImportLensStatus =
|
|
908
|
-
(typeof ImportLensStatus)[keyof typeof ImportLensStatus];
|
|
909
683
|
export interface ImportLensOutput {
|
|
910
684
|
LensArn?: string | undefined;
|
|
911
685
|
Status?: ImportLensStatus | undefined;
|
|
@@ -919,11 +693,6 @@ export interface ImprovementSummary {
|
|
|
919
693
|
ImprovementPlans?: ChoiceImprovementPlan[] | undefined;
|
|
920
694
|
JiraConfiguration?: JiraConfiguration | undefined;
|
|
921
695
|
}
|
|
922
|
-
export declare const IntegratingService: {
|
|
923
|
-
readonly JIRA: "JIRA";
|
|
924
|
-
};
|
|
925
|
-
export type IntegratingService =
|
|
926
|
-
(typeof IntegratingService)[keyof typeof IntegratingService];
|
|
927
696
|
export interface LensReviewSummary {
|
|
928
697
|
LensAlias?: string | undefined;
|
|
929
698
|
LensArn?: string | undefined;
|
|
@@ -935,29 +704,12 @@ export interface LensReviewSummary {
|
|
|
935
704
|
Profiles?: WorkloadProfile[] | undefined;
|
|
936
705
|
PrioritizedRiskCounts?: Partial<Record<Risk, number>> | undefined;
|
|
937
706
|
}
|
|
938
|
-
export declare const ShareStatus: {
|
|
939
|
-
readonly ACCEPTED: "ACCEPTED";
|
|
940
|
-
readonly ASSOCIATED: "ASSOCIATED";
|
|
941
|
-
readonly ASSOCIATING: "ASSOCIATING";
|
|
942
|
-
readonly EXPIRED: "EXPIRED";
|
|
943
|
-
readonly FAILED: "FAILED";
|
|
944
|
-
readonly PENDING: "PENDING";
|
|
945
|
-
readonly REJECTED: "REJECTED";
|
|
946
|
-
readonly REVOKED: "REVOKED";
|
|
947
|
-
};
|
|
948
|
-
export type ShareStatus = (typeof ShareStatus)[keyof typeof ShareStatus];
|
|
949
707
|
export interface LensShareSummary {
|
|
950
708
|
ShareId?: string | undefined;
|
|
951
709
|
SharedWith?: string | undefined;
|
|
952
710
|
Status?: ShareStatus | undefined;
|
|
953
711
|
StatusMessage?: string | undefined;
|
|
954
712
|
}
|
|
955
|
-
export declare const LensType: {
|
|
956
|
-
readonly AWS_OFFICIAL: "AWS_OFFICIAL";
|
|
957
|
-
readonly CUSTOM_SELF: "CUSTOM_SELF";
|
|
958
|
-
readonly CUSTOM_SHARED: "CUSTOM_SHARED";
|
|
959
|
-
};
|
|
960
|
-
export type LensType = (typeof LensType)[keyof typeof LensType];
|
|
961
713
|
export interface LensSummary {
|
|
962
714
|
LensArn?: string | undefined;
|
|
963
715
|
LensAlias?: string | undefined;
|
|
@@ -980,12 +732,6 @@ export interface LensUpgradeSummary {
|
|
|
980
732
|
ResourceArn?: string | undefined;
|
|
981
733
|
ResourceName?: string | undefined;
|
|
982
734
|
}
|
|
983
|
-
export declare const QuestionPriority: {
|
|
984
|
-
readonly NONE: "NONE";
|
|
985
|
-
readonly PRIORITIZED: "PRIORITIZED";
|
|
986
|
-
};
|
|
987
|
-
export type QuestionPriority =
|
|
988
|
-
(typeof QuestionPriority)[keyof typeof QuestionPriority];
|
|
989
735
|
export interface ListAnswersInput {
|
|
990
736
|
WorkloadId: string | undefined;
|
|
991
737
|
LensAlias: string | undefined;
|
|
@@ -1114,12 +860,6 @@ export interface ListNotificationsInput {
|
|
|
1114
860
|
MaxResults?: number | undefined;
|
|
1115
861
|
ResourceArn?: string | undefined;
|
|
1116
862
|
}
|
|
1117
|
-
export declare const NotificationType: {
|
|
1118
|
-
readonly LENS_VERSION_DEPRECATED: "LENS_VERSION_DEPRECATED";
|
|
1119
|
-
readonly LENS_VERSION_UPGRADED: "LENS_VERSION_UPGRADED";
|
|
1120
|
-
};
|
|
1121
|
-
export type NotificationType =
|
|
1122
|
-
(typeof NotificationType)[keyof typeof NotificationType];
|
|
1123
863
|
export interface NotificationSummary {
|
|
1124
864
|
Type?: NotificationType | undefined;
|
|
1125
865
|
LensUpgradeSummary?: LensUpgradeSummary | undefined;
|
|
@@ -1133,12 +873,6 @@ export interface ListProfileNotificationsInput {
|
|
|
1133
873
|
NextToken?: string | undefined;
|
|
1134
874
|
MaxResults?: number | undefined;
|
|
1135
875
|
}
|
|
1136
|
-
export declare const ProfileNotificationType: {
|
|
1137
|
-
readonly PROFILE_ANSWERS_UPDATED: "PROFILE_ANSWERS_UPDATED";
|
|
1138
|
-
readonly PROFILE_DELETED: "PROFILE_DELETED";
|
|
1139
|
-
};
|
|
1140
|
-
export type ProfileNotificationType =
|
|
1141
|
-
(typeof ProfileNotificationType)[keyof typeof ProfileNotificationType];
|
|
1142
876
|
export interface ProfileNotificationSummary {
|
|
1143
877
|
CurrentProfileVersion?: string | undefined;
|
|
1144
878
|
LatestProfileVersion?: string | undefined;
|
|
@@ -1152,12 +886,6 @@ export interface ListProfileNotificationsOutput {
|
|
|
1152
886
|
NotificationSummaries?: ProfileNotificationSummary[] | undefined;
|
|
1153
887
|
NextToken?: string | undefined;
|
|
1154
888
|
}
|
|
1155
|
-
export declare const ProfileOwnerType: {
|
|
1156
|
-
readonly SELF: "SELF";
|
|
1157
|
-
readonly SHARED: "SHARED";
|
|
1158
|
-
};
|
|
1159
|
-
export type ProfileOwnerType =
|
|
1160
|
-
(typeof ProfileOwnerType)[keyof typeof ProfileOwnerType];
|
|
1161
889
|
export interface ListProfilesInput {
|
|
1162
890
|
ProfileNamePrefix?: string | undefined;
|
|
1163
891
|
ProfileOwnerType?: ProfileOwnerType | undefined;
|
|
@@ -1236,14 +964,6 @@ export interface ListReviewTemplatesOutput {
|
|
|
1236
964
|
ReviewTemplates?: ReviewTemplateSummary[] | undefined;
|
|
1237
965
|
NextToken?: string | undefined;
|
|
1238
966
|
}
|
|
1239
|
-
export declare const ShareResourceType: {
|
|
1240
|
-
readonly LENS: "LENS";
|
|
1241
|
-
readonly PROFILE: "PROFILE";
|
|
1242
|
-
readonly TEMPLATE: "TEMPLATE";
|
|
1243
|
-
readonly WORKLOAD: "WORKLOAD";
|
|
1244
|
-
};
|
|
1245
|
-
export type ShareResourceType =
|
|
1246
|
-
(typeof ShareResourceType)[keyof typeof ShareResourceType];
|
|
1247
967
|
export interface ListShareInvitationsInput {
|
|
1248
968
|
WorkloadNamePrefix?: string | undefined;
|
|
1249
969
|
LensNamePrefix?: string | undefined;
|
|
@@ -1333,12 +1053,6 @@ export interface ShareInvitation {
|
|
|
1333
1053
|
ProfileArn?: string | undefined;
|
|
1334
1054
|
TemplateArn?: string | undefined;
|
|
1335
1055
|
}
|
|
1336
|
-
export declare const ShareInvitationAction: {
|
|
1337
|
-
readonly ACCEPT: "ACCEPT";
|
|
1338
|
-
readonly REJECT: "REJECT";
|
|
1339
|
-
};
|
|
1340
|
-
export type ShareInvitationAction =
|
|
1341
|
-
(typeof ShareInvitationAction)[keyof typeof ShareInvitationAction];
|
|
1342
1056
|
export interface TagResourceInput {
|
|
1343
1057
|
WorkloadArn: string | undefined;
|
|
1344
1058
|
Tags: Record<string, string> | undefined;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-wellarchitected",
|
|
3
3
|
"description": "AWS SDK for JavaScript Wellarchitected Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.935.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-wellarchitected",
|
|
@@ -20,38 +20,38 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.935.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.935.0",
|
|
25
25
|
"@aws-sdk/middleware-host-header": "3.930.0",
|
|
26
26
|
"@aws-sdk/middleware-logger": "3.930.0",
|
|
27
27
|
"@aws-sdk/middleware-recursion-detection": "3.933.0",
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.935.0",
|
|
29
29
|
"@aws-sdk/region-config-resolver": "3.930.0",
|
|
30
30
|
"@aws-sdk/types": "3.930.0",
|
|
31
31
|
"@aws-sdk/util-endpoints": "3.930.0",
|
|
32
32
|
"@aws-sdk/util-user-agent-browser": "3.930.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.935.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
|
-
"@smithy/core": "^3.18.
|
|
35
|
+
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|
|
37
37
|
"@smithy/hash-node": "^4.2.5",
|
|
38
38
|
"@smithy/invalid-dependency": "^4.2.5",
|
|
39
39
|
"@smithy/middleware-content-length": "^4.2.5",
|
|
40
|
-
"@smithy/middleware-endpoint": "^4.3.
|
|
41
|
-
"@smithy/middleware-retry": "^4.4.
|
|
42
|
-
"@smithy/middleware-serde": "^4.2.
|
|
40
|
+
"@smithy/middleware-endpoint": "^4.3.12",
|
|
41
|
+
"@smithy/middleware-retry": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-serde": "^4.2.6",
|
|
43
43
|
"@smithy/middleware-stack": "^4.2.5",
|
|
44
44
|
"@smithy/node-config-provider": "^4.3.5",
|
|
45
45
|
"@smithy/node-http-handler": "^4.4.5",
|
|
46
46
|
"@smithy/protocol-http": "^5.3.5",
|
|
47
|
-
"@smithy/smithy-client": "^4.9.
|
|
47
|
+
"@smithy/smithy-client": "^4.9.8",
|
|
48
48
|
"@smithy/types": "^4.9.0",
|
|
49
49
|
"@smithy/url-parser": "^4.2.5",
|
|
50
50
|
"@smithy/util-base64": "^4.3.0",
|
|
51
51
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
52
52
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
53
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
54
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
53
|
+
"@smithy/util-defaults-mode-browser": "^4.3.11",
|
|
54
|
+
"@smithy/util-defaults-mode-node": "^4.2.14",
|
|
55
55
|
"@smithy/util-endpoints": "^3.2.5",
|
|
56
56
|
"@smithy/util-middleware": "^4.2.5",
|
|
57
57
|
"@smithy/util-retry": "^4.2.5",
|
package/dist-es/models/index.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from "./models_0";
|