@aws-sdk/client-wellarchitected 3.202.0 → 3.205.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/CHANGELOG.md +22 -0
- package/dist-cjs/WellArchitected.js +30 -0
- package/dist-cjs/commands/ListCheckDetailsCommand.js +46 -0
- package/dist-cjs/commands/ListCheckSummariesCommand.js +46 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/models/models_0.js +55 -3
- package/dist-cjs/pagination/ListCheckDetailsPaginator.js +36 -0
- package/dist-cjs/pagination/ListCheckSummariesPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +269 -2
- package/dist-cjs/runtimeConfig.browser.js +0 -3
- package/dist-cjs/runtimeConfig.js +0 -3
- package/dist-cjs/runtimeConfig.shared.js +3 -0
- package/dist-es/WellArchitected.js +30 -0
- package/dist-es/commands/ListCheckDetailsCommand.js +42 -0
- package/dist-es/commands/ListCheckSummariesCommand.js +42 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/models/models_0.js +45 -0
- package/dist-es/pagination/ListCheckDetailsPaginator.js +32 -0
- package/dist-es/pagination/ListCheckSummariesPaginator.js +32 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +263 -0
- package/dist-es/runtimeConfig.browser.js +0 -3
- package/dist-es/runtimeConfig.js +0 -3
- package/dist-es/runtimeConfig.shared.js +3 -0
- package/dist-types/WellArchitected.d.ts +24 -4
- package/dist-types/WellArchitectedClient.d.ts +4 -2
- package/dist-types/commands/CreateLensShareCommand.d.ts +2 -1
- package/dist-types/commands/CreateWorkloadCommand.d.ts +2 -1
- package/dist-types/commands/DeleteLensShareCommand.d.ts +2 -1
- package/dist-types/commands/ListCheckDetailsCommand.d.ts +37 -0
- package/dist-types/commands/ListCheckSummariesCommand.d.ts +37 -0
- package/dist-types/commands/UpdateShareInvitationCommand.d.ts +4 -1
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +280 -9
- package/dist-types/pagination/ListCheckDetailsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListCheckSummariesPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +6 -0
- package/dist-types/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/runtimeConfig.d.ts +2 -2
- package/dist-types/runtimeConfig.shared.d.ts +2 -0
- package/dist-types/ts3.4/WellArchitected.d.ts +34 -0
- package/dist-types/ts3.4/WellArchitectedClient.d.ts +12 -0
- package/dist-types/ts3.4/commands/ListCheckDetailsCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/ListCheckSummariesCommand.d.ts +38 -0
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +100 -0
- package/dist-types/ts3.4/pagination/ListCheckDetailsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListCheckSummariesPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +24 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.d.ts +2 -2
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +2 -0
- package/package.json +5 -4
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListCheckDetailsInput,
|
|
11
|
+
ListCheckDetailsOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WellArchitectedClientResolvedConfig,
|
|
17
|
+
} from "../WellArchitectedClient";
|
|
18
|
+
export interface ListCheckDetailsCommandInput extends ListCheckDetailsInput {}
|
|
19
|
+
export interface ListCheckDetailsCommandOutput
|
|
20
|
+
extends ListCheckDetailsOutput,
|
|
21
|
+
__MetadataBearer {}
|
|
22
|
+
export declare class ListCheckDetailsCommand extends $Command<
|
|
23
|
+
ListCheckDetailsCommandInput,
|
|
24
|
+
ListCheckDetailsCommandOutput,
|
|
25
|
+
WellArchitectedClientResolvedConfig
|
|
26
|
+
> {
|
|
27
|
+
readonly input: ListCheckDetailsCommandInput;
|
|
28
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
29
|
+
constructor(input: ListCheckDetailsCommandInput);
|
|
30
|
+
resolveMiddleware(
|
|
31
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
32
|
+
configuration: WellArchitectedClientResolvedConfig,
|
|
33
|
+
options?: __HttpHandlerOptions
|
|
34
|
+
): Handler<ListCheckDetailsCommandInput, ListCheckDetailsCommandOutput>;
|
|
35
|
+
private serialize;
|
|
36
|
+
private deserialize;
|
|
37
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
|
|
2
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
3
|
+
import {
|
|
4
|
+
Handler,
|
|
5
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
6
|
+
MetadataBearer as __MetadataBearer,
|
|
7
|
+
MiddlewareStack,
|
|
8
|
+
} from "@aws-sdk/types";
|
|
9
|
+
import {
|
|
10
|
+
ListCheckSummariesInput,
|
|
11
|
+
ListCheckSummariesOutput,
|
|
12
|
+
} from "../models/models_0";
|
|
13
|
+
import {
|
|
14
|
+
ServiceInputTypes,
|
|
15
|
+
ServiceOutputTypes,
|
|
16
|
+
WellArchitectedClientResolvedConfig,
|
|
17
|
+
} from "../WellArchitectedClient";
|
|
18
|
+
export interface ListCheckSummariesCommandInput
|
|
19
|
+
extends ListCheckSummariesInput {}
|
|
20
|
+
export interface ListCheckSummariesCommandOutput
|
|
21
|
+
extends ListCheckSummariesOutput,
|
|
22
|
+
__MetadataBearer {}
|
|
23
|
+
export declare class ListCheckSummariesCommand extends $Command<
|
|
24
|
+
ListCheckSummariesCommandInput,
|
|
25
|
+
ListCheckSummariesCommandOutput,
|
|
26
|
+
WellArchitectedClientResolvedConfig
|
|
27
|
+
> {
|
|
28
|
+
readonly input: ListCheckSummariesCommandInput;
|
|
29
|
+
static getEndpointParameterInstructions(): EndpointParameterInstructions;
|
|
30
|
+
constructor(input: ListCheckSummariesCommandInput);
|
|
31
|
+
resolveMiddleware(
|
|
32
|
+
clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
|
|
33
|
+
configuration: WellArchitectedClientResolvedConfig,
|
|
34
|
+
options?: __HttpHandlerOptions
|
|
35
|
+
): Handler<ListCheckSummariesCommandInput, ListCheckSummariesCommandOutput>;
|
|
36
|
+
private serialize;
|
|
37
|
+
private deserialize;
|
|
38
|
+
}
|
|
@@ -19,6 +19,8 @@ export * from "./GetMilestoneCommand";
|
|
|
19
19
|
export * from "./GetWorkloadCommand";
|
|
20
20
|
export * from "./ImportLensCommand";
|
|
21
21
|
export * from "./ListAnswersCommand";
|
|
22
|
+
export * from "./ListCheckDetailsCommand";
|
|
23
|
+
export * from "./ListCheckSummariesCommand";
|
|
22
24
|
export * from "./ListLensReviewImprovementsCommand";
|
|
23
25
|
export * from "./ListLensReviewsCommand";
|
|
24
26
|
export * from "./ListLensSharesCommand";
|
|
@@ -8,6 +8,13 @@ export declare class AccessDeniedException extends __BaseException {
|
|
|
8
8
|
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
9
|
);
|
|
10
10
|
}
|
|
11
|
+
export declare enum CheckStatus {
|
|
12
|
+
ERROR = "ERROR",
|
|
13
|
+
FETCH_FAILED = "FETCH_FAILED",
|
|
14
|
+
NOT_AVAILABLE = "NOT_AVAILABLE",
|
|
15
|
+
OKAY = "OKAY",
|
|
16
|
+
WARNING = "WARNING",
|
|
17
|
+
}
|
|
11
18
|
export interface ChoiceContent {
|
|
12
19
|
DisplayText?: string;
|
|
13
20
|
Url?: string;
|
|
@@ -152,6 +159,43 @@ export declare class ValidationException extends __BaseException {
|
|
|
152
159
|
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
153
160
|
);
|
|
154
161
|
}
|
|
162
|
+
export declare enum CheckProvider {
|
|
163
|
+
TRUSTED_ADVISOR = "TRUSTED_ADVISOR",
|
|
164
|
+
}
|
|
165
|
+
export declare enum CheckFailureReason {
|
|
166
|
+
ACCESS_DENIED = "ACCESS_DENIED",
|
|
167
|
+
ASSUME_ROLE_ERROR = "ASSUME_ROLE_ERROR",
|
|
168
|
+
PREMIUM_SUPPORT_REQUIRED = "PREMIUM_SUPPORT_REQUIRED",
|
|
169
|
+
UNKNOWN_ERROR = "UNKNOWN_ERROR",
|
|
170
|
+
}
|
|
171
|
+
export interface CheckDetail {
|
|
172
|
+
Id?: string;
|
|
173
|
+
Name?: string;
|
|
174
|
+
Description?: string;
|
|
175
|
+
Provider?: CheckProvider | string;
|
|
176
|
+
LensArn?: string;
|
|
177
|
+
PillarId?: string;
|
|
178
|
+
QuestionId?: string;
|
|
179
|
+
ChoiceId?: string;
|
|
180
|
+
Status?: CheckStatus | string;
|
|
181
|
+
AccountId?: string;
|
|
182
|
+
FlaggedResources?: number;
|
|
183
|
+
Reason?: CheckFailureReason | string;
|
|
184
|
+
UpdatedAt?: Date;
|
|
185
|
+
}
|
|
186
|
+
export interface CheckSummary {
|
|
187
|
+
Id?: string;
|
|
188
|
+
Name?: string;
|
|
189
|
+
Provider?: CheckProvider | string;
|
|
190
|
+
Description?: string;
|
|
191
|
+
UpdatedAt?: Date;
|
|
192
|
+
LensArn?: string;
|
|
193
|
+
PillarId?: string;
|
|
194
|
+
QuestionId?: string;
|
|
195
|
+
ChoiceId?: string;
|
|
196
|
+
Status?: CheckStatus | string;
|
|
197
|
+
AccountSummary?: Record<string, number>;
|
|
198
|
+
}
|
|
155
199
|
export interface ChoiceImprovementPlan {
|
|
156
200
|
ChoiceId?: string;
|
|
157
201
|
DisplayText?: string;
|
|
@@ -201,6 +245,13 @@ export interface CreateMilestoneOutput {
|
|
|
201
245
|
WorkloadId?: string;
|
|
202
246
|
MilestoneNumber?: number;
|
|
203
247
|
}
|
|
248
|
+
export declare enum TrustedAdvisorIntegrationStatus {
|
|
249
|
+
DISABLED = "DISABLED",
|
|
250
|
+
ENABLED = "ENABLED",
|
|
251
|
+
}
|
|
252
|
+
export interface WorkloadDiscoveryConfig {
|
|
253
|
+
TrustedAdvisorIntegrationStatus?: TrustedAdvisorIntegrationStatus | string;
|
|
254
|
+
}
|
|
204
255
|
export declare enum WorkloadEnvironment {
|
|
205
256
|
PREPRODUCTION = "PREPRODUCTION",
|
|
206
257
|
PRODUCTION = "PRODUCTION",
|
|
@@ -221,6 +272,8 @@ export interface CreateWorkloadInput {
|
|
|
221
272
|
Notes?: string;
|
|
222
273
|
ClientRequestToken?: string;
|
|
223
274
|
Tags?: Record<string, string>;
|
|
275
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
276
|
+
Applications?: string[];
|
|
224
277
|
}
|
|
225
278
|
export interface CreateWorkloadOutput {
|
|
226
279
|
WorkloadId?: string;
|
|
@@ -421,6 +474,8 @@ export interface Workload {
|
|
|
421
474
|
Owner?: string;
|
|
422
475
|
ShareInvitationId?: string;
|
|
423
476
|
Tags?: Record<string, string>;
|
|
477
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
478
|
+
Applications?: string[];
|
|
424
479
|
}
|
|
425
480
|
export interface Milestone {
|
|
426
481
|
MilestoneNumber?: number;
|
|
@@ -527,6 +582,32 @@ export interface ListAnswersOutput {
|
|
|
527
582
|
AnswerSummaries?: AnswerSummary[];
|
|
528
583
|
NextToken?: string;
|
|
529
584
|
}
|
|
585
|
+
export interface ListCheckDetailsInput {
|
|
586
|
+
WorkloadId: string | undefined;
|
|
587
|
+
NextToken?: string;
|
|
588
|
+
MaxResults?: number;
|
|
589
|
+
LensArn: string | undefined;
|
|
590
|
+
PillarId: string | undefined;
|
|
591
|
+
QuestionId: string | undefined;
|
|
592
|
+
ChoiceId: string | undefined;
|
|
593
|
+
}
|
|
594
|
+
export interface ListCheckDetailsOutput {
|
|
595
|
+
CheckDetails?: CheckDetail[];
|
|
596
|
+
NextToken?: string;
|
|
597
|
+
}
|
|
598
|
+
export interface ListCheckSummariesInput {
|
|
599
|
+
WorkloadId: string | undefined;
|
|
600
|
+
NextToken?: string;
|
|
601
|
+
MaxResults?: number;
|
|
602
|
+
LensArn: string | undefined;
|
|
603
|
+
PillarId: string | undefined;
|
|
604
|
+
QuestionId: string | undefined;
|
|
605
|
+
ChoiceId: string | undefined;
|
|
606
|
+
}
|
|
607
|
+
export interface ListCheckSummariesOutput {
|
|
608
|
+
CheckSummaries?: CheckSummary[];
|
|
609
|
+
NextToken?: string;
|
|
610
|
+
}
|
|
530
611
|
export interface ListLensesInput {
|
|
531
612
|
NextToken?: string;
|
|
532
613
|
MaxResults?: number;
|
|
@@ -757,6 +838,8 @@ export interface UpdateWorkloadInput {
|
|
|
757
838
|
Industry?: string;
|
|
758
839
|
Notes?: string;
|
|
759
840
|
ImprovementStatus?: WorkloadImprovementStatus | string;
|
|
841
|
+
DiscoveryConfig?: WorkloadDiscoveryConfig;
|
|
842
|
+
Applications?: string[];
|
|
760
843
|
}
|
|
761
844
|
export interface UpdateWorkloadOutput {
|
|
762
845
|
Workload?: Workload;
|
|
@@ -806,6 +889,8 @@ export declare const AssociateLensesInputFilterSensitiveLog: (
|
|
|
806
889
|
export declare const ValidationExceptionFieldFilterSensitiveLog: (
|
|
807
890
|
obj: ValidationExceptionField
|
|
808
891
|
) => any;
|
|
892
|
+
export declare const CheckDetailFilterSensitiveLog: (obj: CheckDetail) => any;
|
|
893
|
+
export declare const CheckSummaryFilterSensitiveLog: (obj: CheckSummary) => any;
|
|
809
894
|
export declare const ChoiceImprovementPlanFilterSensitiveLog: (
|
|
810
895
|
obj: ChoiceImprovementPlan
|
|
811
896
|
) => any;
|
|
@@ -828,6 +913,9 @@ export declare const CreateMilestoneInputFilterSensitiveLog: (
|
|
|
828
913
|
export declare const CreateMilestoneOutputFilterSensitiveLog: (
|
|
829
914
|
obj: CreateMilestoneOutput
|
|
830
915
|
) => any;
|
|
916
|
+
export declare const WorkloadDiscoveryConfigFilterSensitiveLog: (
|
|
917
|
+
obj: WorkloadDiscoveryConfig
|
|
918
|
+
) => any;
|
|
831
919
|
export declare const CreateWorkloadInputFilterSensitiveLog: (
|
|
832
920
|
obj: CreateWorkloadInput
|
|
833
921
|
) => any;
|
|
@@ -945,6 +1033,18 @@ export declare const ListAnswersInputFilterSensitiveLog: (
|
|
|
945
1033
|
export declare const ListAnswersOutputFilterSensitiveLog: (
|
|
946
1034
|
obj: ListAnswersOutput
|
|
947
1035
|
) => any;
|
|
1036
|
+
export declare const ListCheckDetailsInputFilterSensitiveLog: (
|
|
1037
|
+
obj: ListCheckDetailsInput
|
|
1038
|
+
) => any;
|
|
1039
|
+
export declare const ListCheckDetailsOutputFilterSensitiveLog: (
|
|
1040
|
+
obj: ListCheckDetailsOutput
|
|
1041
|
+
) => any;
|
|
1042
|
+
export declare const ListCheckSummariesInputFilterSensitiveLog: (
|
|
1043
|
+
obj: ListCheckSummariesInput
|
|
1044
|
+
) => any;
|
|
1045
|
+
export declare const ListCheckSummariesOutputFilterSensitiveLog: (
|
|
1046
|
+
obj: ListCheckSummariesOutput
|
|
1047
|
+
) => any;
|
|
948
1048
|
export declare const ListLensesInputFilterSensitiveLog: (
|
|
949
1049
|
obj: ListLensesInput
|
|
950
1050
|
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCheckDetailsCommandInput,
|
|
4
|
+
ListCheckDetailsCommandOutput,
|
|
5
|
+
} from "../commands/ListCheckDetailsCommand";
|
|
6
|
+
import { WellArchitectedPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCheckDetails(
|
|
8
|
+
config: WellArchitectedPaginationConfiguration,
|
|
9
|
+
input: ListCheckDetailsCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCheckDetailsCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import {
|
|
3
|
+
ListCheckSummariesCommandInput,
|
|
4
|
+
ListCheckSummariesCommandOutput,
|
|
5
|
+
} from "../commands/ListCheckSummariesCommand";
|
|
6
|
+
import { WellArchitectedPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare function paginateListCheckSummaries(
|
|
8
|
+
config: WellArchitectedPaginationConfiguration,
|
|
9
|
+
input: ListCheckSummariesCommandInput,
|
|
10
|
+
...additionalArguments: any
|
|
11
|
+
): Paginator<ListCheckSummariesCommandOutput>;
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
export * from "./Interfaces";
|
|
2
2
|
export * from "./ListAnswersPaginator";
|
|
3
|
+
export * from "./ListCheckDetailsPaginator";
|
|
4
|
+
export * from "./ListCheckSummariesPaginator";
|
|
3
5
|
export * from "./ListLensReviewImprovementsPaginator";
|
|
4
6
|
export * from "./ListLensReviewsPaginator";
|
|
5
7
|
export * from "./ListLensSharesPaginator";
|
|
@@ -87,6 +87,14 @@ import {
|
|
|
87
87
|
ListAnswersCommandInput,
|
|
88
88
|
ListAnswersCommandOutput,
|
|
89
89
|
} from "../commands/ListAnswersCommand";
|
|
90
|
+
import {
|
|
91
|
+
ListCheckDetailsCommandInput,
|
|
92
|
+
ListCheckDetailsCommandOutput,
|
|
93
|
+
} from "../commands/ListCheckDetailsCommand";
|
|
94
|
+
import {
|
|
95
|
+
ListCheckSummariesCommandInput,
|
|
96
|
+
ListCheckSummariesCommandOutput,
|
|
97
|
+
} from "../commands/ListCheckSummariesCommand";
|
|
90
98
|
import {
|
|
91
99
|
ListLensesCommandInput,
|
|
92
100
|
ListLensesCommandOutput,
|
|
@@ -247,6 +255,14 @@ export declare const serializeAws_restJson1ListAnswersCommand: (
|
|
|
247
255
|
input: ListAnswersCommandInput,
|
|
248
256
|
context: __SerdeContext
|
|
249
257
|
) => Promise<__HttpRequest>;
|
|
258
|
+
export declare const serializeAws_restJson1ListCheckDetailsCommand: (
|
|
259
|
+
input: ListCheckDetailsCommandInput,
|
|
260
|
+
context: __SerdeContext
|
|
261
|
+
) => Promise<__HttpRequest>;
|
|
262
|
+
export declare const serializeAws_restJson1ListCheckSummariesCommand: (
|
|
263
|
+
input: ListCheckSummariesCommandInput,
|
|
264
|
+
context: __SerdeContext
|
|
265
|
+
) => Promise<__HttpRequest>;
|
|
250
266
|
export declare const serializeAws_restJson1ListLensesCommand: (
|
|
251
267
|
input: ListLensesCommandInput,
|
|
252
268
|
context: __SerdeContext
|
|
@@ -407,6 +423,14 @@ export declare const deserializeAws_restJson1ListAnswersCommand: (
|
|
|
407
423
|
output: __HttpResponse,
|
|
408
424
|
context: __SerdeContext
|
|
409
425
|
) => Promise<ListAnswersCommandOutput>;
|
|
426
|
+
export declare const deserializeAws_restJson1ListCheckDetailsCommand: (
|
|
427
|
+
output: __HttpResponse,
|
|
428
|
+
context: __SerdeContext
|
|
429
|
+
) => Promise<ListCheckDetailsCommandOutput>;
|
|
430
|
+
export declare const deserializeAws_restJson1ListCheckSummariesCommand: (
|
|
431
|
+
output: __HttpResponse,
|
|
432
|
+
context: __SerdeContext
|
|
433
|
+
) => Promise<ListCheckSummariesCommandOutput>;
|
|
410
434
|
export declare const deserializeAws_restJson1ListLensesCommand: (
|
|
411
435
|
output: __HttpResponse,
|
|
412
436
|
context: __SerdeContext
|
|
@@ -7,8 +7,6 @@ export declare const getRuntimeConfig: (
|
|
|
7
7
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
8
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
10
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
11
|
credentialDefaultProvider: (
|
|
14
12
|
input: any
|
|
@@ -35,6 +33,8 @@ export declare const getRuntimeConfig: (
|
|
|
35
33
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
34
|
apiVersion: string;
|
|
37
35
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
37
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
@@ -7,8 +7,6 @@ export declare const getRuntimeConfig: (
|
|
|
7
7
|
defaultsMode: import("@aws-sdk/types").Provider<
|
|
8
8
|
import("@aws-sdk/smithy-client").ResolvedDefaultsMode
|
|
9
9
|
>;
|
|
10
|
-
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
11
|
-
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
12
10
|
bodyLengthChecker: import("@aws-sdk/types").BodyLengthCalculator;
|
|
13
11
|
credentialDefaultProvider: (
|
|
14
12
|
input: any
|
|
@@ -35,6 +33,8 @@ export declare const getRuntimeConfig: (
|
|
|
35
33
|
utf8Encoder: import("@aws-sdk/types").Encoder;
|
|
36
34
|
apiVersion: string;
|
|
37
35
|
urlParser: import("@aws-sdk/types").UrlParser;
|
|
36
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
37
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
38
38
|
disableHostPrefix: boolean;
|
|
39
39
|
logger: import("@aws-sdk/types").Logger;
|
|
40
40
|
serviceId: string;
|
|
@@ -4,6 +4,8 @@ export declare const getRuntimeConfig: (
|
|
|
4
4
|
config: WellArchitectedClientConfig
|
|
5
5
|
) => {
|
|
6
6
|
apiVersion: string;
|
|
7
|
+
base64Decoder: import("@aws-sdk/types").Decoder;
|
|
8
|
+
base64Encoder: import("@aws-sdk/types").Encoder;
|
|
7
9
|
disableHostPrefix: boolean;
|
|
8
10
|
endpointProvider: (
|
|
9
11
|
endpointParams: import("./endpoint/EndpointParameters").EndpointParameters,
|
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.205.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",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.204.0",
|
|
23
23
|
"@aws-sdk/config-resolver": "3.201.0",
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.204.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.204.0",
|
|
26
26
|
"@aws-sdk/hash-node": "3.201.0",
|
|
27
27
|
"@aws-sdk/invalid-dependency": "3.201.0",
|
|
28
28
|
"@aws-sdk/middleware-content-length": "3.201.0",
|
|
@@ -41,6 +41,7 @@
|
|
|
41
41
|
"@aws-sdk/smithy-client": "3.201.0",
|
|
42
42
|
"@aws-sdk/types": "3.201.0",
|
|
43
43
|
"@aws-sdk/url-parser": "3.201.0",
|
|
44
|
+
"@aws-sdk/util-base64": "3.202.0",
|
|
44
45
|
"@aws-sdk/util-base64-browser": "3.188.0",
|
|
45
46
|
"@aws-sdk/util-base64-node": "3.201.0",
|
|
46
47
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|