@aws-sdk/client-wellarchitected 3.974.0 → 3.978.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/index.js +60 -39
- package/dist-es/WellArchitected.js +41 -1
- package/dist-types/WellArchitected.d.ts +134 -1
- package/dist-types/ts3.4/WellArchitected.d.ts +138 -1
- package/package.json +17 -17
package/dist-cjs/index.js
CHANGED
|
@@ -2908,6 +2908,44 @@ class UpgradeReviewTemplateLensReviewCommand extends smithyClient.Command
|
|
|
2908
2908
|
.build() {
|
|
2909
2909
|
}
|
|
2910
2910
|
|
|
2911
|
+
const paginateGetConsolidatedReport = core.createPaginator(WellArchitectedClient, GetConsolidatedReportCommand, "NextToken", "NextToken", "MaxResults");
|
|
2912
|
+
|
|
2913
|
+
const paginateListAnswers = core.createPaginator(WellArchitectedClient, ListAnswersCommand, "NextToken", "NextToken", "MaxResults");
|
|
2914
|
+
|
|
2915
|
+
const paginateListCheckDetails = core.createPaginator(WellArchitectedClient, ListCheckDetailsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2916
|
+
|
|
2917
|
+
const paginateListCheckSummaries = core.createPaginator(WellArchitectedClient, ListCheckSummariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2918
|
+
|
|
2919
|
+
const paginateListLenses = core.createPaginator(WellArchitectedClient, ListLensesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2920
|
+
|
|
2921
|
+
const paginateListLensReviewImprovements = core.createPaginator(WellArchitectedClient, ListLensReviewImprovementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2922
|
+
|
|
2923
|
+
const paginateListLensReviews = core.createPaginator(WellArchitectedClient, ListLensReviewsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2924
|
+
|
|
2925
|
+
const paginateListLensShares = core.createPaginator(WellArchitectedClient, ListLensSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2926
|
+
|
|
2927
|
+
const paginateListMilestones = core.createPaginator(WellArchitectedClient, ListMilestonesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2928
|
+
|
|
2929
|
+
const paginateListNotifications = core.createPaginator(WellArchitectedClient, ListNotificationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2930
|
+
|
|
2931
|
+
const paginateListProfileNotifications = core.createPaginator(WellArchitectedClient, ListProfileNotificationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2932
|
+
|
|
2933
|
+
const paginateListProfileShares = core.createPaginator(WellArchitectedClient, ListProfileSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2934
|
+
|
|
2935
|
+
const paginateListProfiles = core.createPaginator(WellArchitectedClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2936
|
+
|
|
2937
|
+
const paginateListReviewTemplateAnswers = core.createPaginator(WellArchitectedClient, ListReviewTemplateAnswersCommand, "NextToken", "NextToken", "MaxResults");
|
|
2938
|
+
|
|
2939
|
+
const paginateListReviewTemplates = core.createPaginator(WellArchitectedClient, ListReviewTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2940
|
+
|
|
2941
|
+
const paginateListShareInvitations = core.createPaginator(WellArchitectedClient, ListShareInvitationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2942
|
+
|
|
2943
|
+
const paginateListTemplateShares = core.createPaginator(WellArchitectedClient, ListTemplateSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2944
|
+
|
|
2945
|
+
const paginateListWorkloadShares = core.createPaginator(WellArchitectedClient, ListWorkloadSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2946
|
+
|
|
2947
|
+
const paginateListWorkloads = core.createPaginator(WellArchitectedClient, ListWorkloadsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2948
|
+
|
|
2911
2949
|
const commands = {
|
|
2912
2950
|
AssociateLensesCommand,
|
|
2913
2951
|
AssociateProfilesCommand,
|
|
@@ -2982,47 +3020,30 @@ const commands = {
|
|
|
2982
3020
|
UpgradeProfileVersionCommand,
|
|
2983
3021
|
UpgradeReviewTemplateLensReviewCommand,
|
|
2984
3022
|
};
|
|
3023
|
+
const paginators = {
|
|
3024
|
+
paginateGetConsolidatedReport,
|
|
3025
|
+
paginateListAnswers,
|
|
3026
|
+
paginateListCheckDetails,
|
|
3027
|
+
paginateListCheckSummaries,
|
|
3028
|
+
paginateListLenses,
|
|
3029
|
+
paginateListLensReviewImprovements,
|
|
3030
|
+
paginateListLensReviews,
|
|
3031
|
+
paginateListLensShares,
|
|
3032
|
+
paginateListMilestones,
|
|
3033
|
+
paginateListNotifications,
|
|
3034
|
+
paginateListProfileNotifications,
|
|
3035
|
+
paginateListProfiles,
|
|
3036
|
+
paginateListProfileShares,
|
|
3037
|
+
paginateListReviewTemplateAnswers,
|
|
3038
|
+
paginateListReviewTemplates,
|
|
3039
|
+
paginateListShareInvitations,
|
|
3040
|
+
paginateListTemplateShares,
|
|
3041
|
+
paginateListWorkloads,
|
|
3042
|
+
paginateListWorkloadShares,
|
|
3043
|
+
};
|
|
2985
3044
|
class WellArchitected extends WellArchitectedClient {
|
|
2986
3045
|
}
|
|
2987
|
-
smithyClient.createAggregatedClient(commands, WellArchitected);
|
|
2988
|
-
|
|
2989
|
-
const paginateGetConsolidatedReport = core.createPaginator(WellArchitectedClient, GetConsolidatedReportCommand, "NextToken", "NextToken", "MaxResults");
|
|
2990
|
-
|
|
2991
|
-
const paginateListAnswers = core.createPaginator(WellArchitectedClient, ListAnswersCommand, "NextToken", "NextToken", "MaxResults");
|
|
2992
|
-
|
|
2993
|
-
const paginateListCheckDetails = core.createPaginator(WellArchitectedClient, ListCheckDetailsCommand, "NextToken", "NextToken", "MaxResults");
|
|
2994
|
-
|
|
2995
|
-
const paginateListCheckSummaries = core.createPaginator(WellArchitectedClient, ListCheckSummariesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2996
|
-
|
|
2997
|
-
const paginateListLenses = core.createPaginator(WellArchitectedClient, ListLensesCommand, "NextToken", "NextToken", "MaxResults");
|
|
2998
|
-
|
|
2999
|
-
const paginateListLensReviewImprovements = core.createPaginator(WellArchitectedClient, ListLensReviewImprovementsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3000
|
-
|
|
3001
|
-
const paginateListLensReviews = core.createPaginator(WellArchitectedClient, ListLensReviewsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3002
|
-
|
|
3003
|
-
const paginateListLensShares = core.createPaginator(WellArchitectedClient, ListLensSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3004
|
-
|
|
3005
|
-
const paginateListMilestones = core.createPaginator(WellArchitectedClient, ListMilestonesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3006
|
-
|
|
3007
|
-
const paginateListNotifications = core.createPaginator(WellArchitectedClient, ListNotificationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3008
|
-
|
|
3009
|
-
const paginateListProfileNotifications = core.createPaginator(WellArchitectedClient, ListProfileNotificationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3010
|
-
|
|
3011
|
-
const paginateListProfiles = core.createPaginator(WellArchitectedClient, ListProfilesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3012
|
-
|
|
3013
|
-
const paginateListProfileShares = core.createPaginator(WellArchitectedClient, ListProfileSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3014
|
-
|
|
3015
|
-
const paginateListReviewTemplateAnswers = core.createPaginator(WellArchitectedClient, ListReviewTemplateAnswersCommand, "NextToken", "NextToken", "MaxResults");
|
|
3016
|
-
|
|
3017
|
-
const paginateListReviewTemplates = core.createPaginator(WellArchitectedClient, ListReviewTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3018
|
-
|
|
3019
|
-
const paginateListShareInvitations = core.createPaginator(WellArchitectedClient, ListShareInvitationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3020
|
-
|
|
3021
|
-
const paginateListTemplateShares = core.createPaginator(WellArchitectedClient, ListTemplateSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3022
|
-
|
|
3023
|
-
const paginateListWorkloads = core.createPaginator(WellArchitectedClient, ListWorkloadsCommand, "NextToken", "NextToken", "MaxResults");
|
|
3024
|
-
|
|
3025
|
-
const paginateListWorkloadShares = core.createPaginator(WellArchitectedClient, ListWorkloadSharesCommand, "NextToken", "NextToken", "MaxResults");
|
|
3046
|
+
smithyClient.createAggregatedClient(commands, WellArchitected, { paginators });
|
|
3026
3047
|
|
|
3027
3048
|
const IntegrationStatusInput = {
|
|
3028
3049
|
NOT_CONFIGURED: "NOT_CONFIGURED",
|
|
@@ -71,6 +71,25 @@ import { UpdateWorkloadShareCommand, } from "./commands/UpdateWorkloadShareComma
|
|
|
71
71
|
import { UpgradeLensReviewCommand, } from "./commands/UpgradeLensReviewCommand";
|
|
72
72
|
import { UpgradeProfileVersionCommand, } from "./commands/UpgradeProfileVersionCommand";
|
|
73
73
|
import { UpgradeReviewTemplateLensReviewCommand, } from "./commands/UpgradeReviewTemplateLensReviewCommand";
|
|
74
|
+
import { paginateGetConsolidatedReport } from "./pagination/GetConsolidatedReportPaginator";
|
|
75
|
+
import { paginateListAnswers } from "./pagination/ListAnswersPaginator";
|
|
76
|
+
import { paginateListCheckDetails } from "./pagination/ListCheckDetailsPaginator";
|
|
77
|
+
import { paginateListCheckSummaries } from "./pagination/ListCheckSummariesPaginator";
|
|
78
|
+
import { paginateListLenses } from "./pagination/ListLensesPaginator";
|
|
79
|
+
import { paginateListLensReviewImprovements } from "./pagination/ListLensReviewImprovementsPaginator";
|
|
80
|
+
import { paginateListLensReviews } from "./pagination/ListLensReviewsPaginator";
|
|
81
|
+
import { paginateListLensShares } from "./pagination/ListLensSharesPaginator";
|
|
82
|
+
import { paginateListMilestones } from "./pagination/ListMilestonesPaginator";
|
|
83
|
+
import { paginateListNotifications } from "./pagination/ListNotificationsPaginator";
|
|
84
|
+
import { paginateListProfileNotifications } from "./pagination/ListProfileNotificationsPaginator";
|
|
85
|
+
import { paginateListProfileShares } from "./pagination/ListProfileSharesPaginator";
|
|
86
|
+
import { paginateListProfiles } from "./pagination/ListProfilesPaginator";
|
|
87
|
+
import { paginateListReviewTemplateAnswers } from "./pagination/ListReviewTemplateAnswersPaginator";
|
|
88
|
+
import { paginateListReviewTemplates } from "./pagination/ListReviewTemplatesPaginator";
|
|
89
|
+
import { paginateListShareInvitations } from "./pagination/ListShareInvitationsPaginator";
|
|
90
|
+
import { paginateListTemplateShares } from "./pagination/ListTemplateSharesPaginator";
|
|
91
|
+
import { paginateListWorkloadShares } from "./pagination/ListWorkloadSharesPaginator";
|
|
92
|
+
import { paginateListWorkloads } from "./pagination/ListWorkloadsPaginator";
|
|
74
93
|
import { WellArchitectedClient } from "./WellArchitectedClient";
|
|
75
94
|
const commands = {
|
|
76
95
|
AssociateLensesCommand,
|
|
@@ -146,6 +165,27 @@ const commands = {
|
|
|
146
165
|
UpgradeProfileVersionCommand,
|
|
147
166
|
UpgradeReviewTemplateLensReviewCommand,
|
|
148
167
|
};
|
|
168
|
+
const paginators = {
|
|
169
|
+
paginateGetConsolidatedReport,
|
|
170
|
+
paginateListAnswers,
|
|
171
|
+
paginateListCheckDetails,
|
|
172
|
+
paginateListCheckSummaries,
|
|
173
|
+
paginateListLenses,
|
|
174
|
+
paginateListLensReviewImprovements,
|
|
175
|
+
paginateListLensReviews,
|
|
176
|
+
paginateListLensShares,
|
|
177
|
+
paginateListMilestones,
|
|
178
|
+
paginateListNotifications,
|
|
179
|
+
paginateListProfileNotifications,
|
|
180
|
+
paginateListProfiles,
|
|
181
|
+
paginateListProfileShares,
|
|
182
|
+
paginateListReviewTemplateAnswers,
|
|
183
|
+
paginateListReviewTemplates,
|
|
184
|
+
paginateListShareInvitations,
|
|
185
|
+
paginateListTemplateShares,
|
|
186
|
+
paginateListWorkloads,
|
|
187
|
+
paginateListWorkloadShares,
|
|
188
|
+
};
|
|
149
189
|
export class WellArchitected extends WellArchitectedClient {
|
|
150
190
|
}
|
|
151
|
-
createAggregatedClient(commands, WellArchitected);
|
|
191
|
+
createAggregatedClient(commands, WellArchitected, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { AssociateLensesCommandInput, AssociateLensesCommandOutput } from "./commands/AssociateLensesCommand";
|
|
3
3
|
import { AssociateProfilesCommandInput, AssociateProfilesCommandOutput } from "./commands/AssociateProfilesCommand";
|
|
4
4
|
import { CreateLensShareCommandInput, CreateLensShareCommandOutput } from "./commands/CreateLensShareCommand";
|
|
@@ -515,6 +515,139 @@ export interface WellArchitected {
|
|
|
515
515
|
upgradeReviewTemplateLensReview(args: UpgradeReviewTemplateLensReviewCommandInput, options?: __HttpHandlerOptions): Promise<UpgradeReviewTemplateLensReviewCommandOutput>;
|
|
516
516
|
upgradeReviewTemplateLensReview(args: UpgradeReviewTemplateLensReviewCommandInput, cb: (err: any, data?: UpgradeReviewTemplateLensReviewCommandOutput) => void): void;
|
|
517
517
|
upgradeReviewTemplateLensReview(args: UpgradeReviewTemplateLensReviewCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpgradeReviewTemplateLensReviewCommandOutput) => void): void;
|
|
518
|
+
/**
|
|
519
|
+
* @see {@link GetConsolidatedReportCommand}
|
|
520
|
+
* @param args - command input.
|
|
521
|
+
* @param paginationConfig - optional pagination config.
|
|
522
|
+
* @returns AsyncIterable of {@link GetConsolidatedReportCommandOutput}.
|
|
523
|
+
*/
|
|
524
|
+
paginateGetConsolidatedReport(args: GetConsolidatedReportCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<GetConsolidatedReportCommandOutput>;
|
|
525
|
+
/**
|
|
526
|
+
* @see {@link ListAnswersCommand}
|
|
527
|
+
* @param args - command input.
|
|
528
|
+
* @param paginationConfig - optional pagination config.
|
|
529
|
+
* @returns AsyncIterable of {@link ListAnswersCommandOutput}.
|
|
530
|
+
*/
|
|
531
|
+
paginateListAnswers(args: ListAnswersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListAnswersCommandOutput>;
|
|
532
|
+
/**
|
|
533
|
+
* @see {@link ListCheckDetailsCommand}
|
|
534
|
+
* @param args - command input.
|
|
535
|
+
* @param paginationConfig - optional pagination config.
|
|
536
|
+
* @returns AsyncIterable of {@link ListCheckDetailsCommandOutput}.
|
|
537
|
+
*/
|
|
538
|
+
paginateListCheckDetails(args: ListCheckDetailsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCheckDetailsCommandOutput>;
|
|
539
|
+
/**
|
|
540
|
+
* @see {@link ListCheckSummariesCommand}
|
|
541
|
+
* @param args - command input.
|
|
542
|
+
* @param paginationConfig - optional pagination config.
|
|
543
|
+
* @returns AsyncIterable of {@link ListCheckSummariesCommandOutput}.
|
|
544
|
+
*/
|
|
545
|
+
paginateListCheckSummaries(args: ListCheckSummariesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListCheckSummariesCommandOutput>;
|
|
546
|
+
/**
|
|
547
|
+
* @see {@link ListLensesCommand}
|
|
548
|
+
* @param args - command input.
|
|
549
|
+
* @param paginationConfig - optional pagination config.
|
|
550
|
+
* @returns AsyncIterable of {@link ListLensesCommandOutput}.
|
|
551
|
+
*/
|
|
552
|
+
paginateListLenses(args?: ListLensesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLensesCommandOutput>;
|
|
553
|
+
/**
|
|
554
|
+
* @see {@link ListLensReviewImprovementsCommand}
|
|
555
|
+
* @param args - command input.
|
|
556
|
+
* @param paginationConfig - optional pagination config.
|
|
557
|
+
* @returns AsyncIterable of {@link ListLensReviewImprovementsCommandOutput}.
|
|
558
|
+
*/
|
|
559
|
+
paginateListLensReviewImprovements(args: ListLensReviewImprovementsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLensReviewImprovementsCommandOutput>;
|
|
560
|
+
/**
|
|
561
|
+
* @see {@link ListLensReviewsCommand}
|
|
562
|
+
* @param args - command input.
|
|
563
|
+
* @param paginationConfig - optional pagination config.
|
|
564
|
+
* @returns AsyncIterable of {@link ListLensReviewsCommandOutput}.
|
|
565
|
+
*/
|
|
566
|
+
paginateListLensReviews(args: ListLensReviewsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLensReviewsCommandOutput>;
|
|
567
|
+
/**
|
|
568
|
+
* @see {@link ListLensSharesCommand}
|
|
569
|
+
* @param args - command input.
|
|
570
|
+
* @param paginationConfig - optional pagination config.
|
|
571
|
+
* @returns AsyncIterable of {@link ListLensSharesCommandOutput}.
|
|
572
|
+
*/
|
|
573
|
+
paginateListLensShares(args: ListLensSharesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListLensSharesCommandOutput>;
|
|
574
|
+
/**
|
|
575
|
+
* @see {@link ListMilestonesCommand}
|
|
576
|
+
* @param args - command input.
|
|
577
|
+
* @param paginationConfig - optional pagination config.
|
|
578
|
+
* @returns AsyncIterable of {@link ListMilestonesCommandOutput}.
|
|
579
|
+
*/
|
|
580
|
+
paginateListMilestones(args: ListMilestonesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListMilestonesCommandOutput>;
|
|
581
|
+
/**
|
|
582
|
+
* @see {@link ListNotificationsCommand}
|
|
583
|
+
* @param args - command input.
|
|
584
|
+
* @param paginationConfig - optional pagination config.
|
|
585
|
+
* @returns AsyncIterable of {@link ListNotificationsCommandOutput}.
|
|
586
|
+
*/
|
|
587
|
+
paginateListNotifications(args?: ListNotificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListNotificationsCommandOutput>;
|
|
588
|
+
/**
|
|
589
|
+
* @see {@link ListProfileNotificationsCommand}
|
|
590
|
+
* @param args - command input.
|
|
591
|
+
* @param paginationConfig - optional pagination config.
|
|
592
|
+
* @returns AsyncIterable of {@link ListProfileNotificationsCommandOutput}.
|
|
593
|
+
*/
|
|
594
|
+
paginateListProfileNotifications(args?: ListProfileNotificationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfileNotificationsCommandOutput>;
|
|
595
|
+
/**
|
|
596
|
+
* @see {@link ListProfilesCommand}
|
|
597
|
+
* @param args - command input.
|
|
598
|
+
* @param paginationConfig - optional pagination config.
|
|
599
|
+
* @returns AsyncIterable of {@link ListProfilesCommandOutput}.
|
|
600
|
+
*/
|
|
601
|
+
paginateListProfiles(args?: ListProfilesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfilesCommandOutput>;
|
|
602
|
+
/**
|
|
603
|
+
* @see {@link ListProfileSharesCommand}
|
|
604
|
+
* @param args - command input.
|
|
605
|
+
* @param paginationConfig - optional pagination config.
|
|
606
|
+
* @returns AsyncIterable of {@link ListProfileSharesCommandOutput}.
|
|
607
|
+
*/
|
|
608
|
+
paginateListProfileShares(args: ListProfileSharesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListProfileSharesCommandOutput>;
|
|
609
|
+
/**
|
|
610
|
+
* @see {@link ListReviewTemplateAnswersCommand}
|
|
611
|
+
* @param args - command input.
|
|
612
|
+
* @param paginationConfig - optional pagination config.
|
|
613
|
+
* @returns AsyncIterable of {@link ListReviewTemplateAnswersCommandOutput}.
|
|
614
|
+
*/
|
|
615
|
+
paginateListReviewTemplateAnswers(args: ListReviewTemplateAnswersCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReviewTemplateAnswersCommandOutput>;
|
|
616
|
+
/**
|
|
617
|
+
* @see {@link ListReviewTemplatesCommand}
|
|
618
|
+
* @param args - command input.
|
|
619
|
+
* @param paginationConfig - optional pagination config.
|
|
620
|
+
* @returns AsyncIterable of {@link ListReviewTemplatesCommandOutput}.
|
|
621
|
+
*/
|
|
622
|
+
paginateListReviewTemplates(args?: ListReviewTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListReviewTemplatesCommandOutput>;
|
|
623
|
+
/**
|
|
624
|
+
* @see {@link ListShareInvitationsCommand}
|
|
625
|
+
* @param args - command input.
|
|
626
|
+
* @param paginationConfig - optional pagination config.
|
|
627
|
+
* @returns AsyncIterable of {@link ListShareInvitationsCommandOutput}.
|
|
628
|
+
*/
|
|
629
|
+
paginateListShareInvitations(args?: ListShareInvitationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListShareInvitationsCommandOutput>;
|
|
630
|
+
/**
|
|
631
|
+
* @see {@link ListTemplateSharesCommand}
|
|
632
|
+
* @param args - command input.
|
|
633
|
+
* @param paginationConfig - optional pagination config.
|
|
634
|
+
* @returns AsyncIterable of {@link ListTemplateSharesCommandOutput}.
|
|
635
|
+
*/
|
|
636
|
+
paginateListTemplateShares(args: ListTemplateSharesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTemplateSharesCommandOutput>;
|
|
637
|
+
/**
|
|
638
|
+
* @see {@link ListWorkloadsCommand}
|
|
639
|
+
* @param args - command input.
|
|
640
|
+
* @param paginationConfig - optional pagination config.
|
|
641
|
+
* @returns AsyncIterable of {@link ListWorkloadsCommandOutput}.
|
|
642
|
+
*/
|
|
643
|
+
paginateListWorkloads(args?: ListWorkloadsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkloadsCommandOutput>;
|
|
644
|
+
/**
|
|
645
|
+
* @see {@link ListWorkloadSharesCommand}
|
|
646
|
+
* @param args - command input.
|
|
647
|
+
* @param paginationConfig - optional pagination config.
|
|
648
|
+
* @returns AsyncIterable of {@link ListWorkloadSharesCommandOutput}.
|
|
649
|
+
*/
|
|
650
|
+
paginateListWorkloadShares(args: ListWorkloadSharesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListWorkloadSharesCommandOutput>;
|
|
518
651
|
}
|
|
519
652
|
/**
|
|
520
653
|
* <fullname>Well-Architected Tool</fullname>
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
AssociateLensesCommandInput,
|
|
4
8
|
AssociateLensesCommandOutput,
|
|
@@ -1235,6 +1239,139 @@ export interface WellArchitected {
|
|
|
1235
1239
|
options: __HttpHandlerOptions,
|
|
1236
1240
|
cb: (err: any, data?: UpgradeReviewTemplateLensReviewCommandOutput) => void
|
|
1237
1241
|
): void;
|
|
1242
|
+
paginateGetConsolidatedReport(
|
|
1243
|
+
args: GetConsolidatedReportCommandInput,
|
|
1244
|
+
paginationConfig?: Pick<
|
|
1245
|
+
PaginationConfiguration,
|
|
1246
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1247
|
+
>
|
|
1248
|
+
): Paginator<GetConsolidatedReportCommandOutput>;
|
|
1249
|
+
paginateListAnswers(
|
|
1250
|
+
args: ListAnswersCommandInput,
|
|
1251
|
+
paginationConfig?: Pick<
|
|
1252
|
+
PaginationConfiguration,
|
|
1253
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1254
|
+
>
|
|
1255
|
+
): Paginator<ListAnswersCommandOutput>;
|
|
1256
|
+
paginateListCheckDetails(
|
|
1257
|
+
args: ListCheckDetailsCommandInput,
|
|
1258
|
+
paginationConfig?: Pick<
|
|
1259
|
+
PaginationConfiguration,
|
|
1260
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1261
|
+
>
|
|
1262
|
+
): Paginator<ListCheckDetailsCommandOutput>;
|
|
1263
|
+
paginateListCheckSummaries(
|
|
1264
|
+
args: ListCheckSummariesCommandInput,
|
|
1265
|
+
paginationConfig?: Pick<
|
|
1266
|
+
PaginationConfiguration,
|
|
1267
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1268
|
+
>
|
|
1269
|
+
): Paginator<ListCheckSummariesCommandOutput>;
|
|
1270
|
+
paginateListLenses(
|
|
1271
|
+
args?: ListLensesCommandInput,
|
|
1272
|
+
paginationConfig?: Pick<
|
|
1273
|
+
PaginationConfiguration,
|
|
1274
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1275
|
+
>
|
|
1276
|
+
): Paginator<ListLensesCommandOutput>;
|
|
1277
|
+
paginateListLensReviewImprovements(
|
|
1278
|
+
args: ListLensReviewImprovementsCommandInput,
|
|
1279
|
+
paginationConfig?: Pick<
|
|
1280
|
+
PaginationConfiguration,
|
|
1281
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1282
|
+
>
|
|
1283
|
+
): Paginator<ListLensReviewImprovementsCommandOutput>;
|
|
1284
|
+
paginateListLensReviews(
|
|
1285
|
+
args: ListLensReviewsCommandInput,
|
|
1286
|
+
paginationConfig?: Pick<
|
|
1287
|
+
PaginationConfiguration,
|
|
1288
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1289
|
+
>
|
|
1290
|
+
): Paginator<ListLensReviewsCommandOutput>;
|
|
1291
|
+
paginateListLensShares(
|
|
1292
|
+
args: ListLensSharesCommandInput,
|
|
1293
|
+
paginationConfig?: Pick<
|
|
1294
|
+
PaginationConfiguration,
|
|
1295
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1296
|
+
>
|
|
1297
|
+
): Paginator<ListLensSharesCommandOutput>;
|
|
1298
|
+
paginateListMilestones(
|
|
1299
|
+
args: ListMilestonesCommandInput,
|
|
1300
|
+
paginationConfig?: Pick<
|
|
1301
|
+
PaginationConfiguration,
|
|
1302
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1303
|
+
>
|
|
1304
|
+
): Paginator<ListMilestonesCommandOutput>;
|
|
1305
|
+
paginateListNotifications(
|
|
1306
|
+
args?: ListNotificationsCommandInput,
|
|
1307
|
+
paginationConfig?: Pick<
|
|
1308
|
+
PaginationConfiguration,
|
|
1309
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1310
|
+
>
|
|
1311
|
+
): Paginator<ListNotificationsCommandOutput>;
|
|
1312
|
+
paginateListProfileNotifications(
|
|
1313
|
+
args?: ListProfileNotificationsCommandInput,
|
|
1314
|
+
paginationConfig?: Pick<
|
|
1315
|
+
PaginationConfiguration,
|
|
1316
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1317
|
+
>
|
|
1318
|
+
): Paginator<ListProfileNotificationsCommandOutput>;
|
|
1319
|
+
paginateListProfiles(
|
|
1320
|
+
args?: ListProfilesCommandInput,
|
|
1321
|
+
paginationConfig?: Pick<
|
|
1322
|
+
PaginationConfiguration,
|
|
1323
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1324
|
+
>
|
|
1325
|
+
): Paginator<ListProfilesCommandOutput>;
|
|
1326
|
+
paginateListProfileShares(
|
|
1327
|
+
args: ListProfileSharesCommandInput,
|
|
1328
|
+
paginationConfig?: Pick<
|
|
1329
|
+
PaginationConfiguration,
|
|
1330
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1331
|
+
>
|
|
1332
|
+
): Paginator<ListProfileSharesCommandOutput>;
|
|
1333
|
+
paginateListReviewTemplateAnswers(
|
|
1334
|
+
args: ListReviewTemplateAnswersCommandInput,
|
|
1335
|
+
paginationConfig?: Pick<
|
|
1336
|
+
PaginationConfiguration,
|
|
1337
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1338
|
+
>
|
|
1339
|
+
): Paginator<ListReviewTemplateAnswersCommandOutput>;
|
|
1340
|
+
paginateListReviewTemplates(
|
|
1341
|
+
args?: ListReviewTemplatesCommandInput,
|
|
1342
|
+
paginationConfig?: Pick<
|
|
1343
|
+
PaginationConfiguration,
|
|
1344
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1345
|
+
>
|
|
1346
|
+
): Paginator<ListReviewTemplatesCommandOutput>;
|
|
1347
|
+
paginateListShareInvitations(
|
|
1348
|
+
args?: ListShareInvitationsCommandInput,
|
|
1349
|
+
paginationConfig?: Pick<
|
|
1350
|
+
PaginationConfiguration,
|
|
1351
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1352
|
+
>
|
|
1353
|
+
): Paginator<ListShareInvitationsCommandOutput>;
|
|
1354
|
+
paginateListTemplateShares(
|
|
1355
|
+
args: ListTemplateSharesCommandInput,
|
|
1356
|
+
paginationConfig?: Pick<
|
|
1357
|
+
PaginationConfiguration,
|
|
1358
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1359
|
+
>
|
|
1360
|
+
): Paginator<ListTemplateSharesCommandOutput>;
|
|
1361
|
+
paginateListWorkloads(
|
|
1362
|
+
args?: ListWorkloadsCommandInput,
|
|
1363
|
+
paginationConfig?: Pick<
|
|
1364
|
+
PaginationConfiguration,
|
|
1365
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1366
|
+
>
|
|
1367
|
+
): Paginator<ListWorkloadsCommandOutput>;
|
|
1368
|
+
paginateListWorkloadShares(
|
|
1369
|
+
args: ListWorkloadSharesCommandInput,
|
|
1370
|
+
paginationConfig?: Pick<
|
|
1371
|
+
PaginationConfiguration,
|
|
1372
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
1373
|
+
>
|
|
1374
|
+
): Paginator<ListWorkloadSharesCommandOutput>;
|
|
1238
1375
|
}
|
|
1239
1376
|
export declare class WellArchitected
|
|
1240
1377
|
extends WellArchitectedClient
|
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.978.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-wellarchitected",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|