@aws-sdk/client-wellarchitected 3.325.0 → 3.327.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 (50) hide show
  1. package/dist-cjs/models/models_0.js +9 -1
  2. package/dist-cjs/protocols/Aws_restJson1.js +1 -0
  3. package/dist-es/models/models_0.js +8 -0
  4. package/dist-es/protocols/Aws_restJson1.js +1 -0
  5. package/dist-types/commands/AssociateLensesCommand.d.ts +4 -0
  6. package/dist-types/commands/CreateLensShareCommand.d.ts +6 -0
  7. package/dist-types/commands/CreateLensVersionCommand.d.ts +7 -0
  8. package/dist-types/commands/CreateMilestoneCommand.d.ts +7 -0
  9. package/dist-types/commands/CreateWorkloadCommand.d.ts +10 -0
  10. package/dist-types/commands/CreateWorkloadShareCommand.d.ts +7 -0
  11. package/dist-types/commands/DeleteLensCommand.d.ts +4 -0
  12. package/dist-types/commands/DeleteLensShareCommand.d.ts +4 -0
  13. package/dist-types/commands/DeleteWorkloadCommand.d.ts +4 -0
  14. package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +4 -0
  15. package/dist-types/commands/DisassociateLensesCommand.d.ts +4 -0
  16. package/dist-types/commands/ExportLensCommand.d.ts +6 -0
  17. package/dist-types/commands/GetAnswerCommand.d.ts +59 -0
  18. package/dist-types/commands/GetConsolidatedReportCommand.d.ts +46 -0
  19. package/dist-types/commands/GetLensCommand.d.ts +16 -0
  20. package/dist-types/commands/GetLensReviewCommand.d.ts +30 -0
  21. package/dist-types/commands/GetLensReviewReportCommand.d.ts +12 -0
  22. package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +26 -0
  23. package/dist-types/commands/GetMilestoneCommand.d.ts +59 -0
  24. package/dist-types/commands/GetWorkloadCommand.d.ts +53 -0
  25. package/dist-types/commands/ImportLensCommand.d.ts +7 -0
  26. package/dist-types/commands/ListAnswersCommand.d.ts +56 -0
  27. package/dist-types/commands/ListCheckDetailsCommand.d.ts +23 -0
  28. package/dist-types/commands/ListCheckSummariesCommand.d.ts +23 -0
  29. package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +26 -0
  30. package/dist-types/commands/ListLensReviewsCommand.d.ts +21 -0
  31. package/dist-types/commands/ListLensSharesCommand.d.ts +14 -0
  32. package/dist-types/commands/ListLensesCommand.d.ts +20 -0
  33. package/dist-types/commands/ListMilestonesCommand.d.ts +28 -0
  34. package/dist-types/commands/ListNotificationsCommand.d.ts +19 -0
  35. package/dist-types/commands/ListShareInvitationsCommand.d.ts +19 -0
  36. package/dist-types/commands/ListTagsForResourceCommand.d.ts +8 -0
  37. package/dist-types/commands/ListWorkloadSharesCommand.d.ts +16 -0
  38. package/dist-types/commands/ListWorkloadsCommand.d.ts +22 -0
  39. package/dist-types/commands/TagResourceCommand.d.ts +4 -0
  40. package/dist-types/commands/UntagResourceCommand.d.ts +4 -0
  41. package/dist-types/commands/UpdateAnswerCommand.d.ts +58 -0
  42. package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +6 -1
  43. package/dist-types/commands/UpdateLensReviewCommand.d.ts +29 -0
  44. package/dist-types/commands/UpdateShareInvitationCommand.d.ts +12 -0
  45. package/dist-types/commands/UpdateWorkloadCommand.d.ts +56 -0
  46. package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +15 -0
  47. package/dist-types/commands/UpgradeLensReviewCommand.d.ts +4 -0
  48. package/dist-types/models/models_0.d.ts +33 -0
  49. package/dist-types/ts3.4/models/models_0.d.ts +14 -0
  50. package/package.json +7 -7
@@ -32,6 +32,63 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat
32
32
  * };
33
33
  * const command = new GetMilestoneCommand(input);
34
34
  * const response = await client.send(command);
35
+ * // { // GetMilestoneOutput
36
+ * // WorkloadId: "STRING_VALUE",
37
+ * // Milestone: { // Milestone
38
+ * // MilestoneNumber: Number("int"),
39
+ * // MilestoneName: "STRING_VALUE",
40
+ * // RecordedAt: new Date("TIMESTAMP"),
41
+ * // Workload: { // Workload
42
+ * // WorkloadId: "STRING_VALUE",
43
+ * // WorkloadArn: "STRING_VALUE",
44
+ * // WorkloadName: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // Environment: "PRODUCTION" || "PREPRODUCTION",
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // AccountIds: [ // WorkloadAccountIds
49
+ * // "STRING_VALUE",
50
+ * // ],
51
+ * // AwsRegions: [ // WorkloadAwsRegions
52
+ * // "STRING_VALUE",
53
+ * // ],
54
+ * // NonAwsRegions: [ // WorkloadNonAwsRegions
55
+ * // "STRING_VALUE",
56
+ * // ],
57
+ * // ArchitecturalDesign: "STRING_VALUE",
58
+ * // ReviewOwner: "STRING_VALUE",
59
+ * // ReviewRestrictionDate: new Date("TIMESTAMP"),
60
+ * // IsReviewOwnerUpdateAcknowledged: true || false,
61
+ * // IndustryType: "STRING_VALUE",
62
+ * // Industry: "STRING_VALUE",
63
+ * // Notes: "STRING_VALUE",
64
+ * // ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
65
+ * // RiskCounts: { // RiskCounts
66
+ * // "<keys>": Number("int"),
67
+ * // },
68
+ * // PillarPriorities: [ // WorkloadPillarPriorities
69
+ * // "STRING_VALUE",
70
+ * // ],
71
+ * // Lenses: [ // WorkloadLenses
72
+ * // "STRING_VALUE",
73
+ * // ],
74
+ * // Owner: "STRING_VALUE",
75
+ * // ShareInvitationId: "STRING_VALUE",
76
+ * // Tags: { // TagMap
77
+ * // "<keys>": "STRING_VALUE",
78
+ * // },
79
+ * // DiscoveryConfig: { // WorkloadDiscoveryConfig
80
+ * // TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
81
+ * // WorkloadResourceDefinition: [ // WorkloadResourceDefinition
82
+ * // "WORKLOAD_METADATA" || "APP_REGISTRY",
83
+ * // ],
84
+ * // },
85
+ * // Applications: [ // WorkloadApplications
86
+ * // "STRING_VALUE",
87
+ * // ],
88
+ * // },
89
+ * // },
90
+ * // };
91
+ *
35
92
  * ```
36
93
  *
37
94
  * @param GetMilestoneCommandInput - {@link GetMilestoneCommandInput}
@@ -55,6 +112,8 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat
55
112
  * @throws {@link ValidationException} (client fault)
56
113
  * <p>The user input is not valid.</p>
57
114
  *
115
+ * @throws {@link WellArchitectedServiceException}
116
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
58
117
  *
59
118
  */
60
119
  export declare class GetMilestoneCommand extends $Command<GetMilestoneCommandInput, GetMilestoneCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -31,6 +31,57 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB
31
31
  * };
32
32
  * const command = new GetWorkloadCommand(input);
33
33
  * const response = await client.send(command);
34
+ * // { // GetWorkloadOutput
35
+ * // Workload: { // Workload
36
+ * // WorkloadId: "STRING_VALUE",
37
+ * // WorkloadArn: "STRING_VALUE",
38
+ * // WorkloadName: "STRING_VALUE",
39
+ * // Description: "STRING_VALUE",
40
+ * // Environment: "PRODUCTION" || "PREPRODUCTION",
41
+ * // UpdatedAt: new Date("TIMESTAMP"),
42
+ * // AccountIds: [ // WorkloadAccountIds
43
+ * // "STRING_VALUE",
44
+ * // ],
45
+ * // AwsRegions: [ // WorkloadAwsRegions
46
+ * // "STRING_VALUE",
47
+ * // ],
48
+ * // NonAwsRegions: [ // WorkloadNonAwsRegions
49
+ * // "STRING_VALUE",
50
+ * // ],
51
+ * // ArchitecturalDesign: "STRING_VALUE",
52
+ * // ReviewOwner: "STRING_VALUE",
53
+ * // ReviewRestrictionDate: new Date("TIMESTAMP"),
54
+ * // IsReviewOwnerUpdateAcknowledged: true || false,
55
+ * // IndustryType: "STRING_VALUE",
56
+ * // Industry: "STRING_VALUE",
57
+ * // Notes: "STRING_VALUE",
58
+ * // ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
59
+ * // RiskCounts: { // RiskCounts
60
+ * // "<keys>": Number("int"),
61
+ * // },
62
+ * // PillarPriorities: [ // WorkloadPillarPriorities
63
+ * // "STRING_VALUE",
64
+ * // ],
65
+ * // Lenses: [ // WorkloadLenses
66
+ * // "STRING_VALUE",
67
+ * // ],
68
+ * // Owner: "STRING_VALUE",
69
+ * // ShareInvitationId: "STRING_VALUE",
70
+ * // Tags: { // TagMap
71
+ * // "<keys>": "STRING_VALUE",
72
+ * // },
73
+ * // DiscoveryConfig: { // WorkloadDiscoveryConfig
74
+ * // TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
75
+ * // WorkloadResourceDefinition: [ // WorkloadResourceDefinition
76
+ * // "WORKLOAD_METADATA" || "APP_REGISTRY",
77
+ * // ],
78
+ * // },
79
+ * // Applications: [ // WorkloadApplications
80
+ * // "STRING_VALUE",
81
+ * // ],
82
+ * // },
83
+ * // };
84
+ *
34
85
  * ```
35
86
  *
36
87
  * @param GetWorkloadCommandInput - {@link GetWorkloadCommandInput}
@@ -54,6 +105,8 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB
54
105
  * @throws {@link ValidationException} (client fault)
55
106
  * <p>The user input is not valid.</p>
56
107
  *
108
+ * @throws {@link WellArchitectedServiceException}
109
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
57
110
  *
58
111
  */
59
112
  export declare class GetWorkloadCommand extends $Command<GetWorkloadCommandInput, GetWorkloadCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -55,6 +55,11 @@ export interface ImportLensCommandOutput extends ImportLensOutput, __MetadataBea
55
55
  * };
56
56
  * const command = new ImportLensCommand(input);
57
57
  * const response = await client.send(command);
58
+ * // { // ImportLensOutput
59
+ * // LensArn: "STRING_VALUE",
60
+ * // Status: "IN_PROGRESS" || "COMPLETE" || "ERROR",
61
+ * // };
62
+ *
58
63
  * ```
59
64
  *
60
65
  * @param ImportLensCommandInput - {@link ImportLensCommandInput}
@@ -84,6 +89,8 @@ export interface ImportLensCommandOutput extends ImportLensOutput, __MetadataBea
84
89
  * @throws {@link ValidationException} (client fault)
85
90
  * <p>The user input is not valid.</p>
86
91
  *
92
+ * @throws {@link WellArchitectedServiceException}
93
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
87
94
  *
88
95
  */
89
96
  export declare class ImportLensCommand extends $Command<ImportLensCommandInput, ImportLensCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -36,6 +36,60 @@ export interface ListAnswersCommandOutput extends ListAnswersOutput, __MetadataB
36
36
  * };
37
37
  * const command = new ListAnswersCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListAnswersOutput
40
+ * // WorkloadId: "STRING_VALUE",
41
+ * // MilestoneNumber: Number("int"),
42
+ * // LensAlias: "STRING_VALUE",
43
+ * // LensArn: "STRING_VALUE",
44
+ * // AnswerSummaries: [ // AnswerSummaries
45
+ * // { // AnswerSummary
46
+ * // QuestionId: "STRING_VALUE",
47
+ * // PillarId: "STRING_VALUE",
48
+ * // QuestionTitle: "STRING_VALUE",
49
+ * // Choices: [ // Choices
50
+ * // { // Choice
51
+ * // ChoiceId: "STRING_VALUE",
52
+ * // Title: "STRING_VALUE",
53
+ * // Description: "STRING_VALUE",
54
+ * // HelpfulResource: { // ChoiceContent
55
+ * // DisplayText: "STRING_VALUE",
56
+ * // Url: "STRING_VALUE",
57
+ * // },
58
+ * // ImprovementPlan: {
59
+ * // DisplayText: "STRING_VALUE",
60
+ * // Url: "STRING_VALUE",
61
+ * // },
62
+ * // AdditionalResources: [ // AdditionalResourcesList
63
+ * // { // AdditionalResources
64
+ * // Type: "HELPFUL_RESOURCE" || "IMPROVEMENT_PLAN",
65
+ * // Content: [ // Urls
66
+ * // {
67
+ * // DisplayText: "STRING_VALUE",
68
+ * // Url: "STRING_VALUE",
69
+ * // },
70
+ * // ],
71
+ * // },
72
+ * // ],
73
+ * // },
74
+ * // ],
75
+ * // SelectedChoices: [ // SelectedChoices
76
+ * // "STRING_VALUE",
77
+ * // ],
78
+ * // ChoiceAnswerSummaries: [ // ChoiceAnswerSummaries
79
+ * // { // ChoiceAnswerSummary
80
+ * // ChoiceId: "STRING_VALUE",
81
+ * // Status: "SELECTED" || "NOT_APPLICABLE" || "UNSELECTED",
82
+ * // Reason: "OUT_OF_SCOPE" || "BUSINESS_PRIORITIES" || "ARCHITECTURE_CONSTRAINTS" || "OTHER" || "NONE",
83
+ * // },
84
+ * // ],
85
+ * // IsApplicable: true || false,
86
+ * // Risk: "UNANSWERED" || "HIGH" || "MEDIUM" || "NONE" || "NOT_APPLICABLE",
87
+ * // Reason: "OUT_OF_SCOPE" || "BUSINESS_PRIORITIES" || "ARCHITECTURE_CONSTRAINTS" || "OTHER" || "NONE",
88
+ * // },
89
+ * // ],
90
+ * // NextToken: "STRING_VALUE",
91
+ * // };
92
+ *
39
93
  * ```
40
94
  *
41
95
  * @param ListAnswersCommandInput - {@link ListAnswersCommandInput}
@@ -59,6 +113,8 @@ export interface ListAnswersCommandOutput extends ListAnswersOutput, __MetadataB
59
113
  * @throws {@link ValidationException} (client fault)
60
114
  * <p>The user input is not valid.</p>
61
115
  *
116
+ * @throws {@link WellArchitectedServiceException}
117
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
62
118
  *
63
119
  */
64
120
  export declare class ListAnswersCommand extends $Command<ListAnswersCommandInput, ListAnswersCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -37,6 +37,27 @@ export interface ListCheckDetailsCommandOutput extends ListCheckDetailsOutput, _
37
37
  * };
38
38
  * const command = new ListCheckDetailsCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListCheckDetailsOutput
41
+ * // CheckDetails: [ // CheckDetails
42
+ * // { // CheckDetail
43
+ * // Id: "STRING_VALUE",
44
+ * // Name: "STRING_VALUE",
45
+ * // Description: "STRING_VALUE",
46
+ * // Provider: "TRUSTED_ADVISOR",
47
+ * // LensArn: "STRING_VALUE",
48
+ * // PillarId: "STRING_VALUE",
49
+ * // QuestionId: "STRING_VALUE",
50
+ * // ChoiceId: "STRING_VALUE",
51
+ * // Status: "OKAY" || "WARNING" || "ERROR" || "NOT_AVAILABLE" || "FETCH_FAILED",
52
+ * // AccountId: "STRING_VALUE",
53
+ * // FlaggedResources: Number("int"),
54
+ * // Reason: "ASSUME_ROLE_ERROR" || "ACCESS_DENIED" || "UNKNOWN_ERROR" || "PREMIUM_SUPPORT_REQUIRED",
55
+ * // UpdatedAt: new Date("TIMESTAMP"),
56
+ * // },
57
+ * // ],
58
+ * // NextToken: "STRING_VALUE",
59
+ * // };
60
+ *
40
61
  * ```
41
62
  *
42
63
  * @param ListCheckDetailsCommandInput - {@link ListCheckDetailsCommandInput}
@@ -60,6 +81,8 @@ export interface ListCheckDetailsCommandOutput extends ListCheckDetailsOutput, _
60
81
  * @throws {@link ValidationException} (client fault)
61
82
  * <p>The user input is not valid.</p>
62
83
  *
84
+ * @throws {@link WellArchitectedServiceException}
85
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
63
86
  *
64
87
  */
65
88
  export declare class ListCheckDetailsCommand extends $Command<ListCheckDetailsCommandInput, ListCheckDetailsCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -37,6 +37,27 @@ export interface ListCheckSummariesCommandOutput extends ListCheckSummariesOutpu
37
37
  * };
38
38
  * const command = new ListCheckSummariesCommand(input);
39
39
  * const response = await client.send(command);
40
+ * // { // ListCheckSummariesOutput
41
+ * // CheckSummaries: [ // CheckSummaries
42
+ * // { // CheckSummary
43
+ * // Id: "STRING_VALUE",
44
+ * // Name: "STRING_VALUE",
45
+ * // Provider: "TRUSTED_ADVISOR",
46
+ * // Description: "STRING_VALUE",
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // LensArn: "STRING_VALUE",
49
+ * // PillarId: "STRING_VALUE",
50
+ * // QuestionId: "STRING_VALUE",
51
+ * // ChoiceId: "STRING_VALUE",
52
+ * // Status: "OKAY" || "WARNING" || "ERROR" || "NOT_AVAILABLE" || "FETCH_FAILED",
53
+ * // AccountSummary: { // AccountSummary
54
+ * // "<keys>": Number("int"),
55
+ * // },
56
+ * // },
57
+ * // ],
58
+ * // NextToken: "STRING_VALUE",
59
+ * // };
60
+ *
40
61
  * ```
41
62
  *
42
63
  * @param ListCheckSummariesCommandInput - {@link ListCheckSummariesCommandInput}
@@ -60,6 +81,8 @@ export interface ListCheckSummariesCommandOutput extends ListCheckSummariesOutpu
60
81
  * @throws {@link ValidationException} (client fault)
61
82
  * <p>The user input is not valid.</p>
62
83
  *
84
+ * @throws {@link WellArchitectedServiceException}
85
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
63
86
  *
64
87
  */
65
88
  export declare class ListCheckSummariesCommand extends $Command<ListCheckSummariesCommandInput, ListCheckSummariesCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -36,6 +36,30 @@ export interface ListLensReviewImprovementsCommandOutput extends ListLensReviewI
36
36
  * };
37
37
  * const command = new ListLensReviewImprovementsCommand(input);
38
38
  * const response = await client.send(command);
39
+ * // { // ListLensReviewImprovementsOutput
40
+ * // WorkloadId: "STRING_VALUE",
41
+ * // MilestoneNumber: Number("int"),
42
+ * // LensAlias: "STRING_VALUE",
43
+ * // LensArn: "STRING_VALUE",
44
+ * // ImprovementSummaries: [ // ImprovementSummaries
45
+ * // { // ImprovementSummary
46
+ * // QuestionId: "STRING_VALUE",
47
+ * // PillarId: "STRING_VALUE",
48
+ * // QuestionTitle: "STRING_VALUE",
49
+ * // Risk: "UNANSWERED" || "HIGH" || "MEDIUM" || "NONE" || "NOT_APPLICABLE",
50
+ * // ImprovementPlanUrl: "STRING_VALUE",
51
+ * // ImprovementPlans: [ // ChoiceImprovementPlans
52
+ * // { // ChoiceImprovementPlan
53
+ * // ChoiceId: "STRING_VALUE",
54
+ * // DisplayText: "STRING_VALUE",
55
+ * // ImprovementPlanUrl: "STRING_VALUE",
56
+ * // },
57
+ * // ],
58
+ * // },
59
+ * // ],
60
+ * // NextToken: "STRING_VALUE",
61
+ * // };
62
+ *
39
63
  * ```
40
64
  *
41
65
  * @param ListLensReviewImprovementsCommandInput - {@link ListLensReviewImprovementsCommandInput}
@@ -59,6 +83,8 @@ export interface ListLensReviewImprovementsCommandOutput extends ListLensReviewI
59
83
  * @throws {@link ValidationException} (client fault)
60
84
  * <p>The user input is not valid.</p>
61
85
  *
86
+ * @throws {@link WellArchitectedServiceException}
87
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
62
88
  *
63
89
  */
64
90
  export declare class ListLensReviewImprovementsCommand extends $Command<ListLensReviewImprovementsCommandInput, ListLensReviewImprovementsCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -34,6 +34,25 @@ export interface ListLensReviewsCommandOutput extends ListLensReviewsOutput, __M
34
34
  * };
35
35
  * const command = new ListLensReviewsCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListLensReviewsOutput
38
+ * // WorkloadId: "STRING_VALUE",
39
+ * // MilestoneNumber: Number("int"),
40
+ * // LensReviewSummaries: [ // LensReviewSummaries
41
+ * // { // LensReviewSummary
42
+ * // LensAlias: "STRING_VALUE",
43
+ * // LensArn: "STRING_VALUE",
44
+ * // LensVersion: "STRING_VALUE",
45
+ * // LensName: "STRING_VALUE",
46
+ * // LensStatus: "CURRENT" || "NOT_CURRENT" || "DEPRECATED" || "DELETED" || "UNSHARED",
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // RiskCounts: { // RiskCounts
49
+ * // "<keys>": Number("int"),
50
+ * // },
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
37
56
  * ```
38
57
  *
39
58
  * @param ListLensReviewsCommandInput - {@link ListLensReviewsCommandInput}
@@ -57,6 +76,8 @@ export interface ListLensReviewsCommandOutput extends ListLensReviewsOutput, __M
57
76
  * @throws {@link ValidationException} (client fault)
58
77
  * <p>The user input is not valid.</p>
59
78
  *
79
+ * @throws {@link WellArchitectedServiceException}
80
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
60
81
  *
61
82
  */
62
83
  export declare class ListLensReviewsCommand extends $Command<ListLensReviewsCommandInput, ListLensReviewsCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -35,6 +35,18 @@ export interface ListLensSharesCommandOutput extends ListLensSharesOutput, __Met
35
35
  * };
36
36
  * const command = new ListLensSharesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListLensSharesOutput
39
+ * // LensShareSummaries: [ // LensShareSummaries
40
+ * // { // LensShareSummary
41
+ * // ShareId: "STRING_VALUE",
42
+ * // SharedWith: "STRING_VALUE",
43
+ * // Status: "ACCEPTED" || "REJECTED" || "PENDING" || "REVOKED" || "EXPIRED" || "ASSOCIATING" || "ASSOCIATED" || "FAILED",
44
+ * // StatusMessage: "STRING_VALUE",
45
+ * // },
46
+ * // ],
47
+ * // NextToken: "STRING_VALUE",
48
+ * // };
49
+ *
38
50
  * ```
39
51
  *
40
52
  * @param ListLensSharesCommandInput - {@link ListLensSharesCommandInput}
@@ -58,6 +70,8 @@ export interface ListLensSharesCommandOutput extends ListLensSharesOutput, __Met
58
70
  * @throws {@link ValidationException} (client fault)
59
71
  * <p>The user input is not valid.</p>
60
72
  *
73
+ * @throws {@link WellArchitectedServiceException}
74
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
61
75
  *
62
76
  */
63
77
  export declare class ListLensSharesCommand extends $Command<ListLensSharesCommandInput, ListLensSharesCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -35,6 +35,24 @@ export interface ListLensesCommandOutput extends ListLensesOutput, __MetadataBea
35
35
  * };
36
36
  * const command = new ListLensesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListLensesOutput
39
+ * // LensSummaries: [ // LensSummaries
40
+ * // { // LensSummary
41
+ * // LensArn: "STRING_VALUE",
42
+ * // LensAlias: "STRING_VALUE",
43
+ * // LensName: "STRING_VALUE",
44
+ * // LensType: "AWS_OFFICIAL" || "CUSTOM_SHARED" || "CUSTOM_SELF",
45
+ * // Description: "STRING_VALUE",
46
+ * // CreatedAt: new Date("TIMESTAMP"),
47
+ * // UpdatedAt: new Date("TIMESTAMP"),
48
+ * // LensVersion: "STRING_VALUE",
49
+ * // Owner: "STRING_VALUE",
50
+ * // LensStatus: "CURRENT" || "NOT_CURRENT" || "DEPRECATED" || "DELETED" || "UNSHARED",
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
38
56
  * ```
39
57
  *
40
58
  * @param ListLensesCommandInput - {@link ListLensesCommandInput}
@@ -55,6 +73,8 @@ export interface ListLensesCommandOutput extends ListLensesOutput, __MetadataBea
55
73
  * @throws {@link ValidationException} (client fault)
56
74
  * <p>The user input is not valid.</p>
57
75
  *
76
+ * @throws {@link WellArchitectedServiceException}
77
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
58
78
  *
59
79
  */
60
80
  export declare class ListLensesCommand extends $Command<ListLensesCommandInput, ListLensesCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -33,6 +33,32 @@ export interface ListMilestonesCommandOutput extends ListMilestonesOutput, __Met
33
33
  * };
34
34
  * const command = new ListMilestonesCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListMilestonesOutput
37
+ * // WorkloadId: "STRING_VALUE",
38
+ * // MilestoneSummaries: [ // MilestoneSummaries
39
+ * // { // MilestoneSummary
40
+ * // MilestoneNumber: Number("int"),
41
+ * // MilestoneName: "STRING_VALUE",
42
+ * // RecordedAt: new Date("TIMESTAMP"),
43
+ * // WorkloadSummary: { // WorkloadSummary
44
+ * // WorkloadId: "STRING_VALUE",
45
+ * // WorkloadArn: "STRING_VALUE",
46
+ * // WorkloadName: "STRING_VALUE",
47
+ * // Owner: "STRING_VALUE",
48
+ * // UpdatedAt: new Date("TIMESTAMP"),
49
+ * // Lenses: [ // WorkloadLenses
50
+ * // "STRING_VALUE",
51
+ * // ],
52
+ * // RiskCounts: { // RiskCounts
53
+ * // "<keys>": Number("int"),
54
+ * // },
55
+ * // ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
56
+ * // },
57
+ * // },
58
+ * // ],
59
+ * // NextToken: "STRING_VALUE",
60
+ * // };
61
+ *
36
62
  * ```
37
63
  *
38
64
  * @param ListMilestonesCommandInput - {@link ListMilestonesCommandInput}
@@ -56,6 +82,8 @@ export interface ListMilestonesCommandOutput extends ListMilestonesOutput, __Met
56
82
  * @throws {@link ValidationException} (client fault)
57
83
  * <p>The user input is not valid.</p>
58
84
  *
85
+ * @throws {@link WellArchitectedServiceException}
86
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
59
87
  *
60
88
  */
61
89
  export declare class ListMilestonesCommand extends $Command<ListMilestonesCommandInput, ListMilestonesCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -33,6 +33,23 @@ export interface ListNotificationsCommandOutput extends ListNotificationsOutput,
33
33
  * };
34
34
  * const command = new ListNotificationsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListNotificationsOutput
37
+ * // NotificationSummaries: [ // NotificationSummaries
38
+ * // { // NotificationSummary
39
+ * // Type: "LENS_VERSION_UPGRADED" || "LENS_VERSION_DEPRECATED",
40
+ * // LensUpgradeSummary: { // LensUpgradeSummary
41
+ * // WorkloadId: "STRING_VALUE",
42
+ * // WorkloadName: "STRING_VALUE",
43
+ * // LensAlias: "STRING_VALUE",
44
+ * // LensArn: "STRING_VALUE",
45
+ * // CurrentLensVersion: "STRING_VALUE",
46
+ * // LatestLensVersion: "STRING_VALUE",
47
+ * // },
48
+ * // },
49
+ * // ],
50
+ * // NextToken: "STRING_VALUE",
51
+ * // };
52
+ *
36
53
  * ```
37
54
  *
38
55
  * @param ListNotificationsCommandInput - {@link ListNotificationsCommandInput}
@@ -53,6 +70,8 @@ export interface ListNotificationsCommandOutput extends ListNotificationsOutput,
53
70
  * @throws {@link ValidationException} (client fault)
54
71
  * <p>The user input is not valid.</p>
55
72
  *
73
+ * @throws {@link WellArchitectedServiceException}
74
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
56
75
  *
57
76
  */
58
77
  export declare class ListNotificationsCommand extends $Command<ListNotificationsCommandInput, ListNotificationsCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -35,6 +35,23 @@ export interface ListShareInvitationsCommandOutput extends ListShareInvitationsO
35
35
  * };
36
36
  * const command = new ListShareInvitationsCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListShareInvitationsOutput
39
+ * // ShareInvitationSummaries: [ // ShareInvitationSummaries
40
+ * // { // ShareInvitationSummary
41
+ * // ShareInvitationId: "STRING_VALUE",
42
+ * // SharedBy: "STRING_VALUE",
43
+ * // SharedWith: "STRING_VALUE",
44
+ * // PermissionType: "READONLY" || "CONTRIBUTOR",
45
+ * // ShareResourceType: "WORKLOAD" || "LENS",
46
+ * // WorkloadName: "STRING_VALUE",
47
+ * // WorkloadId: "STRING_VALUE",
48
+ * // LensName: "STRING_VALUE",
49
+ * // LensArn: "STRING_VALUE",
50
+ * // },
51
+ * // ],
52
+ * // NextToken: "STRING_VALUE",
53
+ * // };
54
+ *
38
55
  * ```
39
56
  *
40
57
  * @param ListShareInvitationsCommandInput - {@link ListShareInvitationsCommandInput}
@@ -55,6 +72,8 @@ export interface ListShareInvitationsCommandOutput extends ListShareInvitationsO
55
72
  * @throws {@link ValidationException} (client fault)
56
73
  * <p>The user input is not valid.</p>
57
74
  *
75
+ * @throws {@link WellArchitectedServiceException}
76
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
58
77
  *
59
78
  */
60
79
  export declare class ListShareInvitationsCommand extends $Command<ListShareInvitationsCommandInput, ListShareInvitationsCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -34,6 +34,12 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
34
34
  * };
35
35
  * const command = new ListTagsForResourceCommand(input);
36
36
  * const response = await client.send(command);
37
+ * // { // ListTagsForResourceOutput
38
+ * // Tags: { // TagMap
39
+ * // "<keys>": "STRING_VALUE",
40
+ * // },
41
+ * // };
42
+ *
37
43
  * ```
38
44
  *
39
45
  * @param ListTagsForResourceCommandInput - {@link ListTagsForResourceCommandInput}
@@ -48,6 +54,8 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
48
54
  * @throws {@link ResourceNotFoundException} (client fault)
49
55
  * <p>The requested resource was not found.</p>
50
56
  *
57
+ * @throws {@link WellArchitectedServiceException}
58
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
51
59
  *
52
60
  */
53
61
  export declare class ListTagsForResourceCommand extends $Command<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -35,6 +35,20 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu
35
35
  * };
36
36
  * const command = new ListWorkloadSharesCommand(input);
37
37
  * const response = await client.send(command);
38
+ * // { // ListWorkloadSharesOutput
39
+ * // WorkloadId: "STRING_VALUE",
40
+ * // WorkloadShareSummaries: [ // WorkloadShareSummaries
41
+ * // { // WorkloadShareSummary
42
+ * // ShareId: "STRING_VALUE",
43
+ * // SharedWith: "STRING_VALUE",
44
+ * // PermissionType: "READONLY" || "CONTRIBUTOR",
45
+ * // Status: "ACCEPTED" || "REJECTED" || "PENDING" || "REVOKED" || "EXPIRED" || "ASSOCIATING" || "ASSOCIATED" || "FAILED",
46
+ * // StatusMessage: "STRING_VALUE",
47
+ * // },
48
+ * // ],
49
+ * // NextToken: "STRING_VALUE",
50
+ * // };
51
+ *
38
52
  * ```
39
53
  *
40
54
  * @param ListWorkloadSharesCommandInput - {@link ListWorkloadSharesCommandInput}
@@ -58,6 +72,8 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu
58
72
  * @throws {@link ValidationException} (client fault)
59
73
  * <p>The user input is not valid.</p>
60
74
  *
75
+ * @throws {@link WellArchitectedServiceException}
76
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
61
77
  *
62
78
  */
63
79
  export declare class ListWorkloadSharesCommand extends $Command<ListWorkloadSharesCommandInput, ListWorkloadSharesCommandOutput, WellArchitectedClientResolvedConfig> {
@@ -33,6 +33,26 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
33
33
  * };
34
34
  * const command = new ListWorkloadsCommand(input);
35
35
  * const response = await client.send(command);
36
+ * // { // ListWorkloadsOutput
37
+ * // WorkloadSummaries: [ // WorkloadSummaries
38
+ * // { // WorkloadSummary
39
+ * // WorkloadId: "STRING_VALUE",
40
+ * // WorkloadArn: "STRING_VALUE",
41
+ * // WorkloadName: "STRING_VALUE",
42
+ * // Owner: "STRING_VALUE",
43
+ * // UpdatedAt: new Date("TIMESTAMP"),
44
+ * // Lenses: [ // WorkloadLenses
45
+ * // "STRING_VALUE",
46
+ * // ],
47
+ * // RiskCounts: { // RiskCounts
48
+ * // "<keys>": Number("int"),
49
+ * // },
50
+ * // ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
51
+ * // },
52
+ * // ],
53
+ * // NextToken: "STRING_VALUE",
54
+ * // };
55
+ *
36
56
  * ```
37
57
  *
38
58
  * @param ListWorkloadsCommandInput - {@link ListWorkloadsCommandInput}
@@ -53,6 +73,8 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
53
73
  * @throws {@link ValidationException} (client fault)
54
74
  * <p>The user input is not valid.</p>
55
75
  *
76
+ * @throws {@link WellArchitectedServiceException}
77
+ * <p>Base exception class for all service exceptions from WellArchitected service.</p>
56
78
  *
57
79
  */
58
80
  export declare class ListWorkloadsCommand extends $Command<ListWorkloadsCommandInput, ListWorkloadsCommandOutput, WellArchitectedClientResolvedConfig> {