@aws-sdk/client-wellarchitected 3.300.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.
- package/dist-types/commands/AssociateLensesCommand.d.ts +2 -2
- package/dist-types/commands/CreateLensShareCommand.d.ts +1 -1
- package/dist-types/commands/CreateLensVersionCommand.d.ts +1 -1
- package/dist-types/commands/CreateMilestoneCommand.d.ts +1 -1
- package/dist-types/commands/CreateWorkloadCommand.d.ts +9 -9
- package/dist-types/commands/CreateWorkloadShareCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLensCommand.d.ts +1 -1
- package/dist-types/commands/DeleteLensShareCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkloadCommand.d.ts +1 -1
- package/dist-types/commands/DeleteWorkloadShareCommand.d.ts +1 -1
- package/dist-types/commands/DisassociateLensesCommand.d.ts +2 -2
- package/dist-types/commands/ExportLensCommand.d.ts +1 -1
- package/dist-types/commands/GetAnswerCommand.d.ts +1 -1
- package/dist-types/commands/GetLensCommand.d.ts +1 -1
- package/dist-types/commands/GetLensReviewCommand.d.ts +1 -1
- package/dist-types/commands/GetLensReviewReportCommand.d.ts +1 -1
- package/dist-types/commands/GetLensVersionDifferenceCommand.d.ts +1 -1
- package/dist-types/commands/GetMilestoneCommand.d.ts +1 -1
- package/dist-types/commands/GetWorkloadCommand.d.ts +1 -1
- package/dist-types/commands/ImportLensCommand.d.ts +2 -2
- package/dist-types/commands/ListAnswersCommand.d.ts +1 -1
- package/dist-types/commands/ListCheckDetailsCommand.d.ts +1 -1
- package/dist-types/commands/ListCheckSummariesCommand.d.ts +1 -1
- package/dist-types/commands/ListLensReviewImprovementsCommand.d.ts +1 -1
- package/dist-types/commands/ListLensReviewsCommand.d.ts +1 -1
- package/dist-types/commands/ListLensSharesCommand.d.ts +1 -1
- package/dist-types/commands/ListLensesCommand.d.ts +1 -1
- package/dist-types/commands/ListMilestonesCommand.d.ts +1 -1
- package/dist-types/commands/ListNotificationsCommand.d.ts +1 -1
- package/dist-types/commands/ListShareInvitationsCommand.d.ts +1 -1
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkloadSharesCommand.d.ts +1 -1
- package/dist-types/commands/ListWorkloadsCommand.d.ts +1 -1
- package/dist-types/commands/TagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UntagResourceCommand.d.ts +2 -2
- package/dist-types/commands/UpdateAnswerCommand.d.ts +4 -4
- package/dist-types/commands/UpdateGlobalSettingsCommand.d.ts +1 -1
- package/dist-types/commands/UpdateLensReviewCommand.d.ts +2 -2
- package/dist-types/commands/UpdateShareInvitationCommand.d.ts +1 -1
- package/dist-types/commands/UpdateWorkloadCommand.d.ts +7 -7
- package/dist-types/commands/UpdateWorkloadShareCommand.d.ts +1 -1
- package/dist-types/commands/UpgradeLensReviewCommand.d.ts +1 -1
- package/package.json +3 -3
|
@@ -36,9 +36,9 @@ 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 = {
|
|
39
|
+
* const input = { // AssociateLensesInput
|
|
40
40
|
* WorkloadId: "STRING_VALUE", // required
|
|
41
|
-
* LensAliases: [ // required
|
|
41
|
+
* LensAliases: [ // LensAliases // required
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
44
|
* };
|
|
@@ -40,7 +40,7 @@ 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 = {
|
|
43
|
+
* const input = { // CreateLensShareInput
|
|
44
44
|
* LensAlias: "STRING_VALUE", // required
|
|
45
45
|
* SharedWith: "STRING_VALUE", // required
|
|
46
46
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
@@ -30,7 +30,7 @@ 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 = {
|
|
33
|
+
* const input = { // CreateLensVersionInput
|
|
34
34
|
* LensAlias: "STRING_VALUE", // required
|
|
35
35
|
* LensVersion: "STRING_VALUE", // required
|
|
36
36
|
* IsMajorVersion: true || false,
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // CreateMilestoneInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* MilestoneName: "STRING_VALUE", // required
|
|
32
32
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
@@ -31,38 +31,38 @@ 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 = {
|
|
34
|
+
* const input = { // CreateWorkloadInput
|
|
35
35
|
* WorkloadName: "STRING_VALUE", // required
|
|
36
36
|
* Description: "STRING_VALUE", // required
|
|
37
37
|
* Environment: "PRODUCTION" || "PREPRODUCTION", // required
|
|
38
|
-
* AccountIds: [
|
|
38
|
+
* AccountIds: [ // WorkloadAccountIds
|
|
39
39
|
* "STRING_VALUE",
|
|
40
40
|
* ],
|
|
41
|
-
* AwsRegions: [
|
|
41
|
+
* AwsRegions: [ // WorkloadAwsRegions
|
|
42
42
|
* "STRING_VALUE",
|
|
43
43
|
* ],
|
|
44
|
-
* NonAwsRegions: [
|
|
44
|
+
* NonAwsRegions: [ // WorkloadNonAwsRegions
|
|
45
45
|
* "STRING_VALUE",
|
|
46
46
|
* ],
|
|
47
|
-
* PillarPriorities: [
|
|
47
|
+
* PillarPriorities: [ // WorkloadPillarPriorities
|
|
48
48
|
* "STRING_VALUE",
|
|
49
49
|
* ],
|
|
50
50
|
* ArchitecturalDesign: "STRING_VALUE",
|
|
51
51
|
* ReviewOwner: "STRING_VALUE",
|
|
52
52
|
* IndustryType: "STRING_VALUE",
|
|
53
53
|
* Industry: "STRING_VALUE",
|
|
54
|
-
* Lenses: [ // required
|
|
54
|
+
* Lenses: [ // WorkloadLenses // required
|
|
55
55
|
* "STRING_VALUE",
|
|
56
56
|
* ],
|
|
57
57
|
* Notes: "STRING_VALUE",
|
|
58
58
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
59
|
-
* Tags: {
|
|
59
|
+
* Tags: { // TagMap
|
|
60
60
|
* "<keys>": "STRING_VALUE",
|
|
61
61
|
* },
|
|
62
|
-
* DiscoveryConfig: {
|
|
62
|
+
* DiscoveryConfig: { // WorkloadDiscoveryConfig
|
|
63
63
|
* TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
|
|
64
64
|
* },
|
|
65
|
-
* Applications: [
|
|
65
|
+
* Applications: [ // WorkloadApplications
|
|
66
66
|
* "STRING_VALUE",
|
|
67
67
|
* ],
|
|
68
68
|
* };
|
|
@@ -31,7 +31,7 @@ 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 = {
|
|
34
|
+
* const input = { // CreateWorkloadShareInput
|
|
35
35
|
* WorkloadId: "STRING_VALUE", // required
|
|
36
36
|
* SharedWith: "STRING_VALUE", // required
|
|
37
37
|
* PermissionType: "READONLY" || "CONTRIBUTOR", // required
|
|
@@ -40,7 +40,7 @@ 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 = {
|
|
43
|
+
* const input = { // DeleteLensInput
|
|
44
44
|
* LensAlias: "STRING_VALUE", // required
|
|
45
45
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
46
46
|
* LensStatus: "ALL" || "DRAFT" || "PUBLISHED", // required
|
|
@@ -40,7 +40,7 @@ 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 = {
|
|
43
|
+
* const input = { // DeleteLensShareInput
|
|
44
44
|
* ShareId: "STRING_VALUE", // required
|
|
45
45
|
* LensAlias: "STRING_VALUE", // required
|
|
46
46
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteWorkloadInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // DeleteWorkloadShareInput
|
|
30
30
|
* ShareId: "STRING_VALUE", // required
|
|
31
31
|
* WorkloadId: "STRING_VALUE", // required
|
|
32
32
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
@@ -31,9 +31,9 @@ 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 = {
|
|
34
|
+
* const input = { // DisassociateLensesInput
|
|
35
35
|
* WorkloadId: "STRING_VALUE", // required
|
|
36
|
-
* LensAliases: [ // required
|
|
36
|
+
* LensAliases: [ // LensAliases // required
|
|
37
37
|
* "STRING_VALUE",
|
|
38
38
|
* ],
|
|
39
39
|
* };
|
|
@@ -40,7 +40,7 @@ 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 = {
|
|
43
|
+
* const input = { // ExportLensInput
|
|
44
44
|
* LensAlias: "STRING_VALUE", // required
|
|
45
45
|
* LensVersion: "STRING_VALUE",
|
|
46
46
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetAnswerInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* QuestionId: "STRING_VALUE", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetLensInput
|
|
30
30
|
* LensAlias: "STRING_VALUE", // required
|
|
31
31
|
* LensVersion: "STRING_VALUE",
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetLensReviewInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* MilestoneNumber: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetLensReviewReportInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* MilestoneNumber: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetLensVersionDifferenceInput
|
|
30
30
|
* LensAlias: "STRING_VALUE", // required
|
|
31
31
|
* BaseLensVersion: "STRING_VALUE",
|
|
32
32
|
* TargetLensVersion: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetMilestoneInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* MilestoneNumber: Number("int"), // required
|
|
32
32
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // GetWorkloadInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* };
|
|
32
32
|
* const command = new GetWorkloadCommand(input);
|
|
@@ -44,11 +44,11 @@ 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 = {
|
|
47
|
+
* const input = { // ImportLensInput
|
|
48
48
|
* LensAlias: "STRING_VALUE",
|
|
49
49
|
* JSONString: "STRING_VALUE", // required
|
|
50
50
|
* ClientRequestToken: "STRING_VALUE", // required
|
|
51
|
-
* Tags: {
|
|
51
|
+
* Tags: { // TagMap
|
|
52
52
|
* "<keys>": "STRING_VALUE",
|
|
53
53
|
* },
|
|
54
54
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListAnswersInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* PillarId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListCheckDetailsInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListCheckSummariesInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListLensReviewImprovementsInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* PillarId: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListLensReviewsInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* MilestoneNumber: Number("int"),
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListLensSharesInput
|
|
30
30
|
* LensAlias: "STRING_VALUE", // required
|
|
31
31
|
* SharedWithPrefix: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListLensesInput
|
|
30
30
|
* NextToken: "STRING_VALUE",
|
|
31
31
|
* MaxResults: Number("int"),
|
|
32
32
|
* LensType: "AWS_OFFICIAL" || "CUSTOM_SHARED" || "CUSTOM_SELF",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListMilestonesInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListNotificationsInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE",
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListShareInvitationsInput
|
|
30
30
|
* WorkloadNamePrefix: "STRING_VALUE",
|
|
31
31
|
* LensNamePrefix: "STRING_VALUE",
|
|
32
32
|
* ShareResourceType: "WORKLOAD" || "LENS",
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // ListTagsForResourceInput
|
|
33
33
|
* WorkloadArn: "STRING_VALUE", // required
|
|
34
34
|
* };
|
|
35
35
|
* const command = new ListTagsForResourceCommand(input);
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListWorkloadSharesInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* SharedWithPrefix: "STRING_VALUE",
|
|
32
32
|
* NextToken: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // ListWorkloadsInput
|
|
30
30
|
* WorkloadNamePrefix: "STRING_VALUE",
|
|
31
31
|
* NextToken: "STRING_VALUE",
|
|
32
32
|
* MaxResults: Number("int"),
|
|
@@ -29,9 +29,9 @@ 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 = {
|
|
32
|
+
* const input = { // TagResourceInput
|
|
33
33
|
* WorkloadArn: "STRING_VALUE", // required
|
|
34
|
-
* Tags: { // required
|
|
34
|
+
* Tags: { // TagMap // required
|
|
35
35
|
* "<keys>": "STRING_VALUE",
|
|
36
36
|
* },
|
|
37
37
|
* };
|
|
@@ -34,9 +34,9 @@ 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 = {
|
|
37
|
+
* const input = { // UntagResourceInput
|
|
38
38
|
* WorkloadArn: "STRING_VALUE", // required
|
|
39
|
-
* TagKeys: [ // required
|
|
39
|
+
* TagKeys: [ // TagKeyList // required
|
|
40
40
|
* "STRING_VALUE",
|
|
41
41
|
* ],
|
|
42
42
|
* };
|
|
@@ -26,15 +26,15 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateAnswerInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* QuestionId: "STRING_VALUE", // required
|
|
33
|
-
* SelectedChoices: [
|
|
33
|
+
* SelectedChoices: [ // SelectedChoices
|
|
34
34
|
* "STRING_VALUE",
|
|
35
35
|
* ],
|
|
36
|
-
* ChoiceUpdates: {
|
|
37
|
-
* "<keys>": {
|
|
36
|
+
* ChoiceUpdates: { // ChoiceUpdates
|
|
37
|
+
* "<keys>": { // ChoiceUpdate
|
|
38
38
|
* Status: "SELECTED" || "NOT_APPLICABLE" || "UNSELECTED", // required
|
|
39
39
|
* Reason: "OUT_OF_SCOPE" || "BUSINESS_PRIORITIES" || "ARCHITECTURE_CONSTRAINTS" || "OTHER" || "NONE",
|
|
40
40
|
* Notes: "STRING_VALUE",
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateGlobalSettingsInput
|
|
30
30
|
* OrganizationSharingStatus: "ENABLED" || "DISABLED",
|
|
31
31
|
* };
|
|
32
32
|
* const command = new UpdateGlobalSettingsCommand(input);
|
|
@@ -26,11 +26,11 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateLensReviewInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* LensNotes: "STRING_VALUE",
|
|
33
|
-
* PillarNotes: {
|
|
33
|
+
* PillarNotes: { // PillarNotes
|
|
34
34
|
* "<keys>": "STRING_VALUE",
|
|
35
35
|
* },
|
|
36
36
|
* };
|
|
@@ -29,7 +29,7 @@ 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 = {
|
|
32
|
+
* const input = { // UpdateShareInvitationInput
|
|
33
33
|
* ShareInvitationId: "STRING_VALUE", // required
|
|
34
34
|
* ShareInvitationAction: "ACCEPT" || "REJECT", // required
|
|
35
35
|
* };
|
|
@@ -26,21 +26,21 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateWorkloadInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* WorkloadName: "STRING_VALUE",
|
|
32
32
|
* Description: "STRING_VALUE",
|
|
33
33
|
* Environment: "PRODUCTION" || "PREPRODUCTION",
|
|
34
|
-
* AccountIds: [
|
|
34
|
+
* AccountIds: [ // WorkloadAccountIds
|
|
35
35
|
* "STRING_VALUE",
|
|
36
36
|
* ],
|
|
37
|
-
* AwsRegions: [
|
|
37
|
+
* AwsRegions: [ // WorkloadAwsRegions
|
|
38
38
|
* "STRING_VALUE",
|
|
39
39
|
* ],
|
|
40
|
-
* NonAwsRegions: [
|
|
40
|
+
* NonAwsRegions: [ // WorkloadNonAwsRegions
|
|
41
41
|
* "STRING_VALUE",
|
|
42
42
|
* ],
|
|
43
|
-
* PillarPriorities: [
|
|
43
|
+
* PillarPriorities: [ // WorkloadPillarPriorities
|
|
44
44
|
* "STRING_VALUE",
|
|
45
45
|
* ],
|
|
46
46
|
* ArchitecturalDesign: "STRING_VALUE",
|
|
@@ -50,10 +50,10 @@ export interface UpdateWorkloadCommandOutput extends UpdateWorkloadOutput, __Met
|
|
|
50
50
|
* Industry: "STRING_VALUE",
|
|
51
51
|
* Notes: "STRING_VALUE",
|
|
52
52
|
* ImprovementStatus: "NOT_APPLICABLE" || "NOT_STARTED" || "IN_PROGRESS" || "COMPLETE" || "RISK_ACKNOWLEDGED",
|
|
53
|
-
* DiscoveryConfig: {
|
|
53
|
+
* DiscoveryConfig: { // WorkloadDiscoveryConfig
|
|
54
54
|
* TrustedAdvisorIntegrationStatus: "ENABLED" || "DISABLED",
|
|
55
55
|
* },
|
|
56
|
-
* Applications: [
|
|
56
|
+
* Applications: [ // WorkloadApplications
|
|
57
57
|
* "STRING_VALUE",
|
|
58
58
|
* ],
|
|
59
59
|
* };
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpdateWorkloadShareInput
|
|
30
30
|
* ShareId: "STRING_VALUE", // required
|
|
31
31
|
* WorkloadId: "STRING_VALUE", // required
|
|
32
32
|
* PermissionType: "READONLY" || "CONTRIBUTOR", // required
|
|
@@ -26,7 +26,7 @@ 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 = {
|
|
29
|
+
* const input = { // UpgradeLensReviewInput
|
|
30
30
|
* WorkloadId: "STRING_VALUE", // required
|
|
31
31
|
* LensAlias: "STRING_VALUE", // required
|
|
32
32
|
* MilestoneName: "STRING_VALUE", // required
|
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.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.
|
|
24
|
+
"@aws-sdk/client-sts": "3.301.0",
|
|
25
25
|
"@aws-sdk/config-resolver": "3.300.0",
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
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",
|