@aws-sdk/client-wellarchitected 3.299.0 → 3.301.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 (43) hide show
  1. package/dist-types/commands/AssociateLensesCommand.d.ts +6 -0
  2. package/dist-types/commands/CreateLensShareCommand.d.ts +5 -0
  3. package/dist-types/commands/CreateLensVersionCommand.d.ts +6 -0
  4. package/dist-types/commands/CreateMilestoneCommand.d.ts +5 -0
  5. package/dist-types/commands/CreateWorkloadCommand.d.ts +35 -0
  6. package/dist-types/commands/CreateWorkloadShareCommand.d.ts +6 -0
  7. package/dist-types/commands/DeleteLensCommand.d.ts +5 -0
  8. package/dist-types/commands/DeleteLensShareCommand.d.ts +5 -0
  9. package/dist-types/commands/DeleteWorkloadCommand.d.ts +4 -0
  10. package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +5 -0
  11. package/dist-types/commands/DisassociateLensesCommand.d.ts +6 -0
  12. package/dist-types/commands/ExportLensCommand.d.ts +4 -0
  13. package/dist-types/commands/GetAnswerCommand.d.ts +6 -0
  14. package/dist-types/commands/GetLensCommand.d.ts +4 -0
  15. package/dist-types/commands/GetLensReviewCommand.d.ts +5 -0
  16. package/dist-types/commands/GetLensReviewReportCommand.d.ts +5 -0
  17. package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +5 -0
  18. package/dist-types/commands/GetMilestoneCommand.d.ts +4 -0
  19. package/dist-types/commands/GetWorkloadCommand.d.ts +3 -0
  20. package/dist-types/commands/ImportLensCommand.d.ts +8 -0
  21. package/dist-types/commands/ListAnswersCommand.d.ts +8 -0
  22. package/dist-types/commands/ListCheckDetailsCommand.d.ts +9 -0
  23. package/dist-types/commands/ListCheckSummariesCommand.d.ts +9 -0
  24. package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +8 -0
  25. package/dist-types/commands/ListLensReviewsCommand.d.ts +6 -0
  26. package/dist-types/commands/ListLensSharesCommand.d.ts +7 -0
  27. package/dist-types/commands/ListLensesCommand.d.ts +7 -0
  28. package/dist-types/commands/ListMilestonesCommand.d.ts +5 -0
  29. package/dist-types/commands/ListNotificationsCommand.d.ts +5 -0
  30. package/dist-types/commands/ListShareInvitationsCommand.d.ts +7 -0
  31. package/dist-types/commands/ListTagsForResourceCommand.d.ts +3 -0
  32. package/dist-types/commands/ListWorkloadSharesCommand.d.ts +7 -0
  33. package/dist-types/commands/ListWorkloadsCommand.d.ts +5 -0
  34. package/dist-types/commands/TagResourceCommand.d.ts +6 -0
  35. package/dist-types/commands/UntagResourceCommand.d.ts +6 -0
  36. package/dist-types/commands/UpdateAnswerCommand.d.ts +18 -0
  37. package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +3 -0
  38. package/dist-types/commands/UpdateLensReviewCommand.d.ts +8 -0
  39. package/dist-types/commands/UpdateShareInvitationCommand.d.ts +4 -0
  40. package/dist-types/commands/UpdateWorkloadCommand.d.ts +31 -0
  41. package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +5 -0
  42. package/dist-types/commands/UpgradeLensReviewCommand.d.ts +6 -0
  43. package/package.json +8 -8
@@ -36,6 +36,12 @@ export interface AssociateLensesCommandOutput extends __MetadataBearer {
36
36
  * import { WellArchitectedClient, AssociateLensesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
37
37
  * // const { WellArchitectedClient, AssociateLensesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
38
38
  * const client = new WellArchitectedClient(config);
39
+ * const input = { // AssociateLensesInput
40
+ * WorkloadId: "STRING_VALUE", // required
41
+ * LensAliases: [ // LensAliases // required
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * };
39
45
  * const command = new AssociateLensesCommand(input);
40
46
  * const response = await client.send(command);
41
47
  * ```
@@ -40,6 +40,11 @@ export interface CreateLensShareCommandOutput extends CreateLensShareOutput, __M
40
40
  * import { WellArchitectedClient, CreateLensShareCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
41
41
  * // const { WellArchitectedClient, CreateLensShareCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
42
42
  * const client = new WellArchitectedClient(config);
43
+ * const input = { // CreateLensShareInput
44
+ * LensAlias: "STRING_VALUE", // required
45
+ * SharedWith: "STRING_VALUE", // required
46
+ * ClientRequestToken: "STRING_VALUE", // required
47
+ * };
43
48
  * const command = new CreateLensShareCommand(input);
44
49
  * const response = await client.send(command);
45
50
  * ```
@@ -30,6 +30,12 @@ export interface CreateLensVersionCommandOutput extends CreateLensVersionOutput,
30
30
  * import { WellArchitectedClient, CreateLensVersionCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
31
31
  * // const { WellArchitectedClient, CreateLensVersionCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
32
32
  * const client = new WellArchitectedClient(config);
33
+ * const input = { // CreateLensVersionInput
34
+ * LensAlias: "STRING_VALUE", // required
35
+ * LensVersion: "STRING_VALUE", // required
36
+ * IsMajorVersion: true || false,
37
+ * ClientRequestToken: "STRING_VALUE", // required
38
+ * };
33
39
  * const command = new CreateLensVersionCommand(input);
34
40
  * const response = await client.send(command);
35
41
  * ```
@@ -26,6 +26,11 @@ export interface CreateMilestoneCommandOutput extends CreateMilestoneOutput, __M
26
26
  * import { WellArchitectedClient, CreateMilestoneCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, CreateMilestoneCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // CreateMilestoneInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * MilestoneName: "STRING_VALUE", // required
32
+ * ClientRequestToken: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new CreateMilestoneCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -31,6 +31,41 @@ export interface CreateWorkloadCommandOutput extends CreateWorkloadOutput, __Met
31
31
  * import { WellArchitectedClient, CreateWorkloadCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
32
32
  * // const { WellArchitectedClient, CreateWorkloadCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
33
33
  * const client = new WellArchitectedClient(config);
34
+ * const input = { // CreateWorkloadInput
35
+ * WorkloadName: "STRING_VALUE", // required
36
+ * Description: "STRING_VALUE", // required
37
+ * Environment: "PRODUCTION" || "PREPRODUCTION", // required
38
+ * AccountIds: [ // WorkloadAccountIds
39
+ * "STRING_VALUE",
40
+ * ],
41
+ * AwsRegions: [ // WorkloadAwsRegions
42
+ * "STRING_VALUE",
43
+ * ],
44
+ * NonAwsRegions: [ // WorkloadNonAwsRegions
45
+ * "STRING_VALUE",
46
+ * ],
47
+ * PillarPriorities: [ // WorkloadPillarPriorities
48
+ * "STRING_VALUE",
49
+ * ],
50
+ * ArchitecturalDesign: "STRING_VALUE",
51
+ * ReviewOwner: "STRING_VALUE",
52
+ * IndustryType: "STRING_VALUE",
53
+ * Industry: "STRING_VALUE",
54
+ * Lenses: [ // WorkloadLenses // required
55
+ * "STRING_VALUE",
56
+ * ],
57
+ * Notes: "STRING_VALUE",
58
+ * ClientRequestToken: "STRING_VALUE", // required
59
+ * Tags: { // TagMap
60
+ * "<keys>": "STRING_VALUE",
61
+ * },
62
+ * DiscoveryConfig: { // WorkloadDiscoveryConfig
63
+ * TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
64
+ * },
65
+ * Applications: [ // WorkloadApplications
66
+ * "STRING_VALUE",
67
+ * ],
68
+ * };
34
69
  * const command = new CreateWorkloadCommand(input);
35
70
  * const response = await client.send(command);
36
71
  * ```
@@ -31,6 +31,12 @@ export interface CreateWorkloadShareCommandOutput extends CreateWorkloadShareOut
31
31
  * import { WellArchitectedClient, CreateWorkloadShareCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
32
32
  * // const { WellArchitectedClient, CreateWorkloadShareCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
33
33
  * const client = new WellArchitectedClient(config);
34
+ * const input = { // CreateWorkloadShareInput
35
+ * WorkloadId: "STRING_VALUE", // required
36
+ * SharedWith: "STRING_VALUE", // required
37
+ * PermissionType: "READONLY" || "CONTRIBUTOR", // required
38
+ * ClientRequestToken: "STRING_VALUE", // required
39
+ * };
34
40
  * const command = new CreateWorkloadShareCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -40,6 +40,11 @@ export interface DeleteLensCommandOutput extends __MetadataBearer {
40
40
  * import { WellArchitectedClient, DeleteLensCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
41
41
  * // const { WellArchitectedClient, DeleteLensCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
42
42
  * const client = new WellArchitectedClient(config);
43
+ * const input = { // DeleteLensInput
44
+ * LensAlias: "STRING_VALUE", // required
45
+ * ClientRequestToken: "STRING_VALUE", // required
46
+ * LensStatus: "ALL" || "DRAFT" || "PUBLISHED", // required
47
+ * };
43
48
  * const command = new DeleteLensCommand(input);
44
49
  * const response = await client.send(command);
45
50
  * ```
@@ -40,6 +40,11 @@ export interface DeleteLensShareCommandOutput extends __MetadataBearer {
40
40
  * import { WellArchitectedClient, DeleteLensShareCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
41
41
  * // const { WellArchitectedClient, DeleteLensShareCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
42
42
  * const client = new WellArchitectedClient(config);
43
+ * const input = { // DeleteLensShareInput
44
+ * ShareId: "STRING_VALUE", // required
45
+ * LensAlias: "STRING_VALUE", // required
46
+ * ClientRequestToken: "STRING_VALUE", // required
47
+ * };
43
48
  * const command = new DeleteLensShareCommand(input);
44
49
  * const response = await client.send(command);
45
50
  * ```
@@ -26,6 +26,10 @@ export interface DeleteWorkloadCommandOutput extends __MetadataBearer {
26
26
  * import { WellArchitectedClient, DeleteWorkloadCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, DeleteWorkloadCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // DeleteWorkloadInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * ClientRequestToken: "STRING_VALUE", // required
32
+ * };
29
33
  * const command = new DeleteWorkloadCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface DeleteWorkloadShareCommandOutput extends __MetadataBearer {
26
26
  * import { WellArchitectedClient, DeleteWorkloadShareCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, DeleteWorkloadShareCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // DeleteWorkloadShareInput
30
+ * ShareId: "STRING_VALUE", // required
31
+ * WorkloadId: "STRING_VALUE", // required
32
+ * ClientRequestToken: "STRING_VALUE", // required
33
+ * };
29
34
  * const command = new DeleteWorkloadShareCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -31,6 +31,12 @@ export interface DisassociateLensesCommandOutput extends __MetadataBearer {
31
31
  * import { WellArchitectedClient, DisassociateLensesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
32
32
  * // const { WellArchitectedClient, DisassociateLensesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
33
33
  * const client = new WellArchitectedClient(config);
34
+ * const input = { // DisassociateLensesInput
35
+ * WorkloadId: "STRING_VALUE", // required
36
+ * LensAliases: [ // LensAliases // required
37
+ * "STRING_VALUE",
38
+ * ],
39
+ * };
34
40
  * const command = new DisassociateLensesCommand(input);
35
41
  * const response = await client.send(command);
36
42
  * ```
@@ -40,6 +40,10 @@ export interface ExportLensCommandOutput extends ExportLensOutput, __MetadataBea
40
40
  * import { WellArchitectedClient, ExportLensCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
41
41
  * // const { WellArchitectedClient, ExportLensCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
42
42
  * const client = new WellArchitectedClient(config);
43
+ * const input = { // ExportLensInput
44
+ * LensAlias: "STRING_VALUE", // required
45
+ * LensVersion: "STRING_VALUE",
46
+ * };
43
47
  * const command = new ExportLensCommand(input);
44
48
  * const response = await client.send(command);
45
49
  * ```
@@ -26,6 +26,12 @@ export interface GetAnswerCommandOutput extends GetAnswerOutput, __MetadataBeare
26
26
  * import { WellArchitectedClient, GetAnswerCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetAnswerCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetAnswerInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * QuestionId: "STRING_VALUE", // required
33
+ * MilestoneNumber: Number("int"),
34
+ * };
29
35
  * const command = new GetAnswerCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,10 @@ export interface GetLensCommandOutput extends GetLensOutput, __MetadataBearer {
26
26
  * import { WellArchitectedClient, GetLensCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetLensCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetLensInput
30
+ * LensAlias: "STRING_VALUE", // required
31
+ * LensVersion: "STRING_VALUE",
32
+ * };
29
33
  * const command = new GetLensCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,11 @@ export interface GetLensReviewCommandOutput extends GetLensReviewOutput, __Metad
26
26
  * import { WellArchitectedClient, GetLensReviewCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetLensReviewCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetLensReviewInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * MilestoneNumber: Number("int"),
33
+ * };
29
34
  * const command = new GetLensReviewCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface GetLensReviewReportCommandOutput extends GetLensReviewReportOut
26
26
  * import { WellArchitectedClient, GetLensReviewReportCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetLensReviewReportCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetLensReviewReportInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * MilestoneNumber: Number("int"),
33
+ * };
29
34
  * const command = new GetLensReviewReportCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface GetLensVersionDifferenceCommandOutput extends GetLensVersionDif
26
26
  * import { WellArchitectedClient, GetLensVersionDifferenceCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetLensVersionDifferenceCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetLensVersionDifferenceInput
30
+ * LensAlias: "STRING_VALUE", // required
31
+ * BaseLensVersion: "STRING_VALUE",
32
+ * TargetLensVersion: "STRING_VALUE",
33
+ * };
29
34
  * const command = new GetLensVersionDifferenceCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,10 @@ export interface GetMilestoneCommandOutput extends GetMilestoneOutput, __Metadat
26
26
  * import { WellArchitectedClient, GetMilestoneCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetMilestoneCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetMilestoneInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * MilestoneNumber: Number("int"), // required
32
+ * };
29
33
  * const command = new GetMilestoneCommand(input);
30
34
  * const response = await client.send(command);
31
35
  * ```
@@ -26,6 +26,9 @@ export interface GetWorkloadCommandOutput extends GetWorkloadOutput, __MetadataB
26
26
  * import { WellArchitectedClient, GetWorkloadCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, GetWorkloadCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // GetWorkloadInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * };
29
32
  * const command = new GetWorkloadCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -44,6 +44,14 @@ export interface ImportLensCommandOutput extends ImportLensOutput, __MetadataBea
44
44
  * import { WellArchitectedClient, ImportLensCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
45
45
  * // const { WellArchitectedClient, ImportLensCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
46
46
  * const client = new WellArchitectedClient(config);
47
+ * const input = { // ImportLensInput
48
+ * LensAlias: "STRING_VALUE",
49
+ * JSONString: "STRING_VALUE", // required
50
+ * ClientRequestToken: "STRING_VALUE", // required
51
+ * Tags: { // TagMap
52
+ * "<keys>": "STRING_VALUE",
53
+ * },
54
+ * };
47
55
  * const command = new ImportLensCommand(input);
48
56
  * const response = await client.send(command);
49
57
  * ```
@@ -26,6 +26,14 @@ export interface ListAnswersCommandOutput extends ListAnswersOutput, __MetadataB
26
26
  * import { WellArchitectedClient, ListAnswersCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListAnswersCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListAnswersInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * PillarId: "STRING_VALUE",
33
+ * MilestoneNumber: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * MaxResults: Number("int"),
36
+ * };
29
37
  * const command = new ListAnswersCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,15 @@ export interface ListCheckDetailsCommandOutput extends ListCheckDetailsOutput, _
26
26
  * import { WellArchitectedClient, ListCheckDetailsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListCheckDetailsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListCheckDetailsInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * LensArn: "STRING_VALUE", // required
34
+ * PillarId: "STRING_VALUE", // required
35
+ * QuestionId: "STRING_VALUE", // required
36
+ * ChoiceId: "STRING_VALUE", // required
37
+ * };
29
38
  * const command = new ListCheckDetailsCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,15 @@ export interface ListCheckSummariesCommandOutput extends ListCheckSummariesOutpu
26
26
  * import { WellArchitectedClient, ListCheckSummariesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListCheckSummariesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListCheckSummariesInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * LensArn: "STRING_VALUE", // required
34
+ * PillarId: "STRING_VALUE", // required
35
+ * QuestionId: "STRING_VALUE", // required
36
+ * ChoiceId: "STRING_VALUE", // required
37
+ * };
29
38
  * const command = new ListCheckSummariesCommand(input);
30
39
  * const response = await client.send(command);
31
40
  * ```
@@ -26,6 +26,14 @@ export interface ListLensReviewImprovementsCommandOutput extends ListLensReviewI
26
26
  * import { WellArchitectedClient, ListLensReviewImprovementsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListLensReviewImprovementsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListLensReviewImprovementsInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * PillarId: "STRING_VALUE",
33
+ * MilestoneNumber: Number("int"),
34
+ * NextToken: "STRING_VALUE",
35
+ * MaxResults: Number("int"),
36
+ * };
29
37
  * const command = new ListLensReviewImprovementsCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -26,6 +26,12 @@ export interface ListLensReviewsCommandOutput extends ListLensReviewsOutput, __M
26
26
  * import { WellArchitectedClient, ListLensReviewsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListLensReviewsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListLensReviewsInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * MilestoneNumber: Number("int"),
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * };
29
35
  * const command = new ListLensReviewsCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
@@ -26,6 +26,13 @@ export interface ListLensSharesCommandOutput extends ListLensSharesOutput, __Met
26
26
  * import { WellArchitectedClient, ListLensSharesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListLensSharesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListLensSharesInput
30
+ * LensAlias: "STRING_VALUE", // required
31
+ * SharedWithPrefix: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * Status: "ACCEPTED" || "REJECTED" || "PENDING" || "REVOKED" || "EXPIRED" || "ASSOCIATING" || "ASSOCIATED" || "FAILED",
35
+ * };
29
36
  * const command = new ListLensSharesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,13 @@ export interface ListLensesCommandOutput extends ListLensesOutput, __MetadataBea
26
26
  * import { WellArchitectedClient, ListLensesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListLensesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListLensesInput
30
+ * NextToken: "STRING_VALUE",
31
+ * MaxResults: Number("int"),
32
+ * LensType: "AWS_OFFICIAL" || "CUSTOM_SHARED" || "CUSTOM_SELF",
33
+ * LensStatus: "ALL" || "DRAFT" || "PUBLISHED",
34
+ * LensName: "STRING_VALUE",
35
+ * };
29
36
  * const command = new ListLensesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,11 @@ export interface ListMilestonesCommandOutput extends ListMilestonesOutput, __Met
26
26
  * import { WellArchitectedClient, ListMilestonesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListMilestonesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListMilestonesInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListMilestonesCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,11 @@ export interface ListNotificationsCommandOutput extends ListNotificationsOutput,
26
26
  * import { WellArchitectedClient, ListNotificationsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListNotificationsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListNotificationsInput
30
+ * WorkloadId: "STRING_VALUE",
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListNotificationsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,13 @@ export interface ListShareInvitationsCommandOutput extends ListShareInvitationsO
26
26
  * import { WellArchitectedClient, ListShareInvitationsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListShareInvitationsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListShareInvitationsInput
30
+ * WorkloadNamePrefix: "STRING_VALUE",
31
+ * LensNamePrefix: "STRING_VALUE",
32
+ * ShareResourceType: "WORKLOAD" || "LENS",
33
+ * NextToken: "STRING_VALUE",
34
+ * MaxResults: Number("int"),
35
+ * };
29
36
  * const command = new ListShareInvitationsCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -29,6 +29,9 @@ export interface ListTagsForResourceCommandOutput extends ListTagsForResourceOut
29
29
  * import { WellArchitectedClient, ListTagsForResourceCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
30
30
  * // const { WellArchitectedClient, ListTagsForResourceCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
31
31
  * const client = new WellArchitectedClient(config);
32
+ * const input = { // ListTagsForResourceInput
33
+ * WorkloadArn: "STRING_VALUE", // required
34
+ * };
32
35
  * const command = new ListTagsForResourceCommand(input);
33
36
  * const response = await client.send(command);
34
37
  * ```
@@ -26,6 +26,13 @@ export interface ListWorkloadSharesCommandOutput extends ListWorkloadSharesOutpu
26
26
  * import { WellArchitectedClient, ListWorkloadSharesCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListWorkloadSharesCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListWorkloadSharesInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * SharedWithPrefix: "STRING_VALUE",
32
+ * NextToken: "STRING_VALUE",
33
+ * MaxResults: Number("int"),
34
+ * Status: "ACCEPTED" || "REJECTED" || "PENDING" || "REVOKED" || "EXPIRED" || "ASSOCIATING" || "ASSOCIATED" || "FAILED",
35
+ * };
29
36
  * const command = new ListWorkloadSharesCommand(input);
30
37
  * const response = await client.send(command);
31
38
  * ```
@@ -26,6 +26,11 @@ export interface ListWorkloadsCommandOutput extends ListWorkloadsOutput, __Metad
26
26
  * import { WellArchitectedClient, ListWorkloadsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, ListWorkloadsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // ListWorkloadsInput
30
+ * WorkloadNamePrefix: "STRING_VALUE",
31
+ * NextToken: "STRING_VALUE",
32
+ * MaxResults: Number("int"),
33
+ * };
29
34
  * const command = new ListWorkloadsCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -29,6 +29,12 @@ export interface TagResourceCommandOutput extends TagResourceOutput, __MetadataB
29
29
  * import { WellArchitectedClient, TagResourceCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
30
30
  * // const { WellArchitectedClient, TagResourceCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
31
31
  * const client = new WellArchitectedClient(config);
32
+ * const input = { // TagResourceInput
33
+ * WorkloadArn: "STRING_VALUE", // required
34
+ * Tags: { // TagMap // required
35
+ * "<keys>": "STRING_VALUE",
36
+ * },
37
+ * };
32
38
  * const command = new TagResourceCommand(input);
33
39
  * const response = await client.send(command);
34
40
  * ```
@@ -34,6 +34,12 @@ export interface UntagResourceCommandOutput extends UntagResourceOutput, __Metad
34
34
  * import { WellArchitectedClient, UntagResourceCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
35
35
  * // const { WellArchitectedClient, UntagResourceCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
36
36
  * const client = new WellArchitectedClient(config);
37
+ * const input = { // UntagResourceInput
38
+ * WorkloadArn: "STRING_VALUE", // required
39
+ * TagKeys: [ // TagKeyList // required
40
+ * "STRING_VALUE",
41
+ * ],
42
+ * };
37
43
  * const command = new UntagResourceCommand(input);
38
44
  * const response = await client.send(command);
39
45
  * ```
@@ -26,6 +26,24 @@ export interface UpdateAnswerCommandOutput extends UpdateAnswerOutput, __Metadat
26
26
  * import { WellArchitectedClient, UpdateAnswerCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpdateAnswerCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpdateAnswerInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * QuestionId: "STRING_VALUE", // required
33
+ * SelectedChoices: [ // SelectedChoices
34
+ * "STRING_VALUE",
35
+ * ],
36
+ * ChoiceUpdates: { // ChoiceUpdates
37
+ * "<keys>": { // ChoiceUpdate
38
+ * Status: "SELECTED" || "NOT_APPLICABLE" || "UNSELECTED", // required
39
+ * Reason: "OUT_OF_SCOPE" || "BUSINESS_PRIORITIES" || "ARCHITECTURE_CONSTRAINTS" || "OTHER" || "NONE",
40
+ * Notes: "STRING_VALUE",
41
+ * },
42
+ * },
43
+ * Notes: "STRING_VALUE",
44
+ * IsApplicable: true || false,
45
+ * Reason: "OUT_OF_SCOPE" || "BUSINESS_PRIORITIES" || "ARCHITECTURE_CONSTRAINTS" || "OTHER" || "NONE",
46
+ * };
29
47
  * const command = new UpdateAnswerCommand(input);
30
48
  * const response = await client.send(command);
31
49
  * ```
@@ -26,6 +26,9 @@ export interface UpdateGlobalSettingsCommandOutput extends __MetadataBearer {
26
26
  * import { WellArchitectedClient, UpdateGlobalSettingsCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpdateGlobalSettingsCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpdateGlobalSettingsInput
30
+ * OrganizationSharingStatus: "ENABLED" || "DISABLED",
31
+ * };
29
32
  * const command = new UpdateGlobalSettingsCommand(input);
30
33
  * const response = await client.send(command);
31
34
  * ```
@@ -26,6 +26,14 @@ export interface UpdateLensReviewCommandOutput extends UpdateLensReviewOutput, _
26
26
  * import { WellArchitectedClient, UpdateLensReviewCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpdateLensReviewCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpdateLensReviewInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * LensNotes: "STRING_VALUE",
33
+ * PillarNotes: { // PillarNotes
34
+ * "<keys>": "STRING_VALUE",
35
+ * },
36
+ * };
29
37
  * const command = new UpdateLensReviewCommand(input);
30
38
  * const response = await client.send(command);
31
39
  * ```
@@ -29,6 +29,10 @@ export interface UpdateShareInvitationCommandOutput extends UpdateShareInvitatio
29
29
  * import { WellArchitectedClient, UpdateShareInvitationCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
30
30
  * // const { WellArchitectedClient, UpdateShareInvitationCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
31
31
  * const client = new WellArchitectedClient(config);
32
+ * const input = { // UpdateShareInvitationInput
33
+ * ShareInvitationId: "STRING_VALUE", // required
34
+ * ShareInvitationAction: "ACCEPT" || "REJECT", // required
35
+ * };
32
36
  * const command = new UpdateShareInvitationCommand(input);
33
37
  * const response = await client.send(command);
34
38
  * ```
@@ -26,6 +26,37 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __Met
26
26
  * import { WellArchitectedClient, UpdateWorkloadCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpdateWorkloadCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpdateWorkloadInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * WorkloadName: "STRING_VALUE",
32
+ * Description: "STRING_VALUE",
33
+ * Environment: "PRODUCTION" || "PREPRODUCTION",
34
+ * AccountIds: [ // WorkloadAccountIds
35
+ * "STRING_VALUE",
36
+ * ],
37
+ * AwsRegions: [ // WorkloadAwsRegions
38
+ * "STRING_VALUE",
39
+ * ],
40
+ * NonAwsRegions: [ // WorkloadNonAwsRegions
41
+ * "STRING_VALUE",
42
+ * ],
43
+ * PillarPriorities: [ // WorkloadPillarPriorities
44
+ * "STRING_VALUE",
45
+ * ],
46
+ * ArchitecturalDesign: "STRING_VALUE",
47
+ * ReviewOwner: "STRING_VALUE",
48
+ * IsReviewOwnerUpdateAcknowledged: true || false,
49
+ * IndustryType: "STRING_VALUE",
50
+ * Industry: "STRING_VALUE",
51
+ * Notes: "STRING_VALUE",
52
+ * ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
53
+ * DiscoveryConfig: { // WorkloadDiscoveryConfig
54
+ * TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
55
+ * },
56
+ * Applications: [ // WorkloadApplications
57
+ * "STRING_VALUE",
58
+ * ],
59
+ * };
29
60
  * const command = new UpdateWorkloadCommand(input);
30
61
  * const response = await client.send(command);
31
62
  * ```
@@ -26,6 +26,11 @@ export interface UpdateWorkloadShareCommandOutput extends UpdateWorkloadShareOut
26
26
  * import { WellArchitectedClient, UpdateWorkloadShareCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpdateWorkloadShareCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpdateWorkloadShareInput
30
+ * ShareId: "STRING_VALUE", // required
31
+ * WorkloadId: "STRING_VALUE", // required
32
+ * PermissionType: "READONLY" || "CONTRIBUTOR", // required
33
+ * };
29
34
  * const command = new UpdateWorkloadShareCommand(input);
30
35
  * const response = await client.send(command);
31
36
  * ```
@@ -26,6 +26,12 @@ export interface UpgradeLensReviewCommandOutput extends __MetadataBearer {
26
26
  * import { WellArchitectedClient, UpgradeLensReviewCommand } from "@aws-sdk/client-wellarchitected"; // ES Modules import
27
27
  * // const { WellArchitectedClient, UpgradeLensReviewCommand } = require("@aws-sdk/client-wellarchitected"); // CommonJS import
28
28
  * const client = new WellArchitectedClient(config);
29
+ * const input = { // UpgradeLensReviewInput
30
+ * WorkloadId: "STRING_VALUE", // required
31
+ * LensAlias: "STRING_VALUE", // required
32
+ * MilestoneName: "STRING_VALUE", // required
33
+ * ClientRequestToken: "STRING_VALUE",
34
+ * };
29
35
  * const command = new UpgradeLensReviewCommand(input);
30
36
  * const response = await client.send(command);
31
37
  * ```
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.299.0",
4
+ "version": "3.301.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -21,9 +21,9 @@
21
21
  "dependencies": {
22
22
  "@aws-crypto/sha256-browser": "3.0.0",
23
23
  "@aws-crypto/sha256-js": "3.0.0",
24
- "@aws-sdk/client-sts": "3.299.0",
25
- "@aws-sdk/config-resolver": "3.299.0",
26
- "@aws-sdk/credential-provider-node": "3.299.0",
24
+ "@aws-sdk/client-sts": "3.301.0",
25
+ "@aws-sdk/config-resolver": "3.300.0",
26
+ "@aws-sdk/credential-provider-node": "3.301.0",
27
27
  "@aws-sdk/fetch-http-handler": "3.296.0",
28
28
  "@aws-sdk/hash-node": "3.296.0",
29
29
  "@aws-sdk/invalid-dependency": "3.296.0",
@@ -32,12 +32,12 @@
32
32
  "@aws-sdk/middleware-host-header": "3.296.0",
33
33
  "@aws-sdk/middleware-logger": "3.296.0",
34
34
  "@aws-sdk/middleware-recursion-detection": "3.296.0",
35
- "@aws-sdk/middleware-retry": "3.296.0",
35
+ "@aws-sdk/middleware-retry": "3.300.0",
36
36
  "@aws-sdk/middleware-serde": "3.296.0",
37
37
  "@aws-sdk/middleware-signing": "3.299.0",
38
38
  "@aws-sdk/middleware-stack": "3.296.0",
39
39
  "@aws-sdk/middleware-user-agent": "3.299.0",
40
- "@aws-sdk/node-config-provider": "3.296.0",
40
+ "@aws-sdk/node-config-provider": "3.300.0",
41
41
  "@aws-sdk/node-http-handler": "3.296.0",
42
42
  "@aws-sdk/protocol-http": "3.296.0",
43
43
  "@aws-sdk/smithy-client": "3.296.0",
@@ -47,11 +47,11 @@
47
47
  "@aws-sdk/util-body-length-browser": "3.295.0",
48
48
  "@aws-sdk/util-body-length-node": "3.295.0",
49
49
  "@aws-sdk/util-defaults-mode-browser": "3.296.0",
50
- "@aws-sdk/util-defaults-mode-node": "3.299.0",
50
+ "@aws-sdk/util-defaults-mode-node": "3.300.0",
51
51
  "@aws-sdk/util-endpoints": "3.296.0",
52
52
  "@aws-sdk/util-retry": "3.296.0",
53
53
  "@aws-sdk/util-user-agent-browser": "3.299.0",
54
- "@aws-sdk/util-user-agent-node": "3.299.0",
54
+ "@aws-sdk/util-user-agent-node": "3.300.0",
55
55
  "@aws-sdk/util-utf8": "3.295.0",
56
56
  "tslib": "^2.5.0",
57
57
  "uuid": "^8.3.2"