@aws-sdk/client-apprunner 3.67.0 → 3.74.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 +27 -0
- package/dist-cjs/AppRunner.js +60 -0
- package/dist-cjs/commands/CreateObservabilityConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DeleteObservabilityConfigurationCommand.js +36 -0
- package/dist-cjs/commands/DescribeObservabilityConfigurationCommand.js +36 -0
- package/dist-cjs/commands/ListObservabilityConfigurationsCommand.js +36 -0
- package/dist-cjs/commands/index.js +4 -0
- package/dist-cjs/models/models_0.js +84 -2
- package/dist-cjs/pagination/ListObservabilityConfigurationsPaginator.js +35 -0
- package/dist-cjs/pagination/index.js +1 -0
- package/dist-cjs/protocols/Aws_json1_0.js +350 -2
- package/dist-es/AppRunner.js +60 -0
- package/dist-es/commands/CreateObservabilityConfigurationCommand.js +39 -0
- package/dist-es/commands/DeleteObservabilityConfigurationCommand.js +39 -0
- package/dist-es/commands/DescribeObservabilityConfigurationCommand.js +39 -0
- package/dist-es/commands/ListObservabilityConfigurationsCommand.js +39 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/models_0.js +57 -0
- package/dist-es/pagination/ListObservabilityConfigurationsPaginator.js +74 -0
- package/dist-es/pagination/index.js +1 -0
- package/dist-es/protocols/Aws_json1_0.js +397 -2
- package/dist-types/AppRunner.d.ts +51 -7
- package/dist-types/AppRunnerClient.d.ts +6 -2
- package/dist-types/commands/CreateAutoScalingConfigurationCommand.d.ts +5 -5
- package/dist-types/commands/CreateObservabilityConfigurationCommand.d.ts +43 -0
- package/dist-types/commands/DeleteObservabilityConfigurationCommand.d.ts +36 -0
- package/dist-types/commands/DescribeObservabilityConfigurationCommand.d.ts +35 -0
- package/dist-types/commands/ListAutoScalingConfigurationsCommand.d.ts +5 -2
- package/dist-types/commands/ListObservabilityConfigurationsCommand.d.ts +39 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/models_0.d.ts +297 -8
- package/dist-types/pagination/ListObservabilityConfigurationsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +1 -0
- package/dist-types/protocols/Aws_json1_0.d.ts +12 -0
- package/dist-types/ts3.4/AppRunner.d.ts +20 -0
- package/dist-types/ts3.4/AppRunnerClient.d.ts +6 -2
- package/dist-types/ts3.4/commands/CreateObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DescribeObservabilityConfigurationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListObservabilityConfigurationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/models_0.d.ts +145 -0
- package/dist-types/ts3.4/pagination/ListObservabilityConfigurationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +1 -0
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +12 -0
- package/package.json +7 -7
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { DeleteObservabilityConfigurationRequest, DeleteObservabilityConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface DeleteObservabilityConfigurationCommandInput extends DeleteObservabilityConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DeleteObservabilityConfigurationCommandOutput extends DeleteObservabilityConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DeleteObservabilityConfigurationCommand extends $Command<DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DeleteObservabilityConfigurationCommandInput;
|
|
12
|
+
constructor(input: DeleteObservabilityConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { DescribeObservabilityConfigurationRequest, DescribeObservabilityConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface DescribeObservabilityConfigurationCommandInput extends DescribeObservabilityConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface DescribeObservabilityConfigurationCommandOutput extends DescribeObservabilityConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class DescribeObservabilityConfigurationCommand extends $Command<DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: DescribeObservabilityConfigurationCommandInput;
|
|
12
|
+
constructor(input: DescribeObservabilityConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { Command as $Command } from "@aws-sdk/smithy-client";
|
|
2
|
+
import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
|
|
3
|
+
import { AppRunnerClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppRunnerClient";
|
|
4
|
+
import { ListObservabilityConfigurationsRequest, ListObservabilityConfigurationsResponse } from "../models/models_0";
|
|
5
|
+
export interface ListObservabilityConfigurationsCommandInput extends ListObservabilityConfigurationsRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface ListObservabilityConfigurationsCommandOutput extends ListObservabilityConfigurationsResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class ListObservabilityConfigurationsCommand extends $Command<ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: ListObservabilityConfigurationsCommandInput;
|
|
12
|
+
constructor(input: ListObservabilityConfigurationsCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|
|
@@ -1,19 +1,23 @@
|
|
|
1
1
|
export * from "./AssociateCustomDomainCommand";
|
|
2
2
|
export * from "./CreateAutoScalingConfigurationCommand";
|
|
3
3
|
export * from "./CreateConnectionCommand";
|
|
4
|
+
export * from "./CreateObservabilityConfigurationCommand";
|
|
4
5
|
export * from "./CreateServiceCommand";
|
|
5
6
|
export * from "./CreateVpcConnectorCommand";
|
|
6
7
|
export * from "./DeleteAutoScalingConfigurationCommand";
|
|
7
8
|
export * from "./DeleteConnectionCommand";
|
|
9
|
+
export * from "./DeleteObservabilityConfigurationCommand";
|
|
8
10
|
export * from "./DeleteServiceCommand";
|
|
9
11
|
export * from "./DeleteVpcConnectorCommand";
|
|
10
12
|
export * from "./DescribeAutoScalingConfigurationCommand";
|
|
11
13
|
export * from "./DescribeCustomDomainsCommand";
|
|
14
|
+
export * from "./DescribeObservabilityConfigurationCommand";
|
|
12
15
|
export * from "./DescribeServiceCommand";
|
|
13
16
|
export * from "./DescribeVpcConnectorCommand";
|
|
14
17
|
export * from "./DisassociateCustomDomainCommand";
|
|
15
18
|
export * from "./ListAutoScalingConfigurationsCommand";
|
|
16
19
|
export * from "./ListConnectionsCommand";
|
|
20
|
+
export * from "./ListObservabilityConfigurationsCommand";
|
|
17
21
|
export * from "./ListOperationsCommand";
|
|
18
22
|
export * from "./ListServicesCommand";
|
|
19
23
|
export * from "./ListTagsForResourceCommand";
|
|
@@ -212,6 +212,65 @@ export declare namespace CreateConnectionResponse {
|
|
|
212
212
|
|
|
213
213
|
const filterSensitiveLog: (obj: CreateConnectionResponse) => any;
|
|
214
214
|
}
|
|
215
|
+
export declare enum TracingVendor {
|
|
216
|
+
AWSXRAY = "AWSXRAY"
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
export interface TraceConfiguration {
|
|
220
|
+
|
|
221
|
+
Vendor: TracingVendor | string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export declare namespace TraceConfiguration {
|
|
224
|
+
|
|
225
|
+
const filterSensitiveLog: (obj: TraceConfiguration) => any;
|
|
226
|
+
}
|
|
227
|
+
export interface CreateObservabilityConfigurationRequest {
|
|
228
|
+
|
|
229
|
+
ObservabilityConfigurationName: string | undefined;
|
|
230
|
+
|
|
231
|
+
TraceConfiguration?: TraceConfiguration;
|
|
232
|
+
|
|
233
|
+
Tags?: Tag[];
|
|
234
|
+
}
|
|
235
|
+
export declare namespace CreateObservabilityConfigurationRequest {
|
|
236
|
+
|
|
237
|
+
const filterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
|
|
238
|
+
}
|
|
239
|
+
export declare enum ObservabilityConfigurationStatus {
|
|
240
|
+
ACTIVE = "ACTIVE",
|
|
241
|
+
INACTIVE = "INACTIVE"
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export interface ObservabilityConfiguration {
|
|
245
|
+
|
|
246
|
+
ObservabilityConfigurationArn?: string;
|
|
247
|
+
|
|
248
|
+
ObservabilityConfigurationName?: string;
|
|
249
|
+
|
|
250
|
+
TraceConfiguration?: TraceConfiguration;
|
|
251
|
+
|
|
252
|
+
ObservabilityConfigurationRevision?: number;
|
|
253
|
+
|
|
254
|
+
Latest?: boolean;
|
|
255
|
+
|
|
256
|
+
Status?: ObservabilityConfigurationStatus | string;
|
|
257
|
+
|
|
258
|
+
CreatedAt?: Date;
|
|
259
|
+
|
|
260
|
+
DeletedAt?: Date;
|
|
261
|
+
}
|
|
262
|
+
export declare namespace ObservabilityConfiguration {
|
|
263
|
+
|
|
264
|
+
const filterSensitiveLog: (obj: ObservabilityConfiguration) => any;
|
|
265
|
+
}
|
|
266
|
+
export interface CreateObservabilityConfigurationResponse {
|
|
267
|
+
|
|
268
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
269
|
+
}
|
|
270
|
+
export declare namespace CreateObservabilityConfigurationResponse {
|
|
271
|
+
|
|
272
|
+
const filterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
|
|
273
|
+
}
|
|
215
274
|
|
|
216
275
|
export interface EncryptionConfiguration {
|
|
217
276
|
|
|
@@ -282,6 +341,17 @@ export declare namespace NetworkConfiguration {
|
|
|
282
341
|
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
283
342
|
}
|
|
284
343
|
|
|
344
|
+
export interface ServiceObservabilityConfiguration {
|
|
345
|
+
|
|
346
|
+
ObservabilityEnabled: boolean | undefined;
|
|
347
|
+
|
|
348
|
+
ObservabilityConfigurationArn?: string;
|
|
349
|
+
}
|
|
350
|
+
export declare namespace ServiceObservabilityConfiguration {
|
|
351
|
+
|
|
352
|
+
const filterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
|
|
353
|
+
}
|
|
354
|
+
|
|
285
355
|
export interface AuthenticationConfiguration {
|
|
286
356
|
|
|
287
357
|
ConnectionArn?: string;
|
|
@@ -424,6 +494,8 @@ export interface CreateServiceRequest {
|
|
|
424
494
|
AutoScalingConfigurationArn?: string;
|
|
425
495
|
|
|
426
496
|
NetworkConfiguration?: NetworkConfiguration;
|
|
497
|
+
|
|
498
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
427
499
|
}
|
|
428
500
|
export declare namespace CreateServiceRequest {
|
|
429
501
|
|
|
@@ -480,6 +552,8 @@ export interface Service {
|
|
|
480
552
|
AutoScalingConfigurationSummary: AutoScalingConfigurationSummary | undefined;
|
|
481
553
|
|
|
482
554
|
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
555
|
+
|
|
556
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
483
557
|
}
|
|
484
558
|
export declare namespace Service {
|
|
485
559
|
|
|
@@ -584,6 +658,22 @@ export declare namespace DeleteConnectionResponse {
|
|
|
584
658
|
|
|
585
659
|
const filterSensitiveLog: (obj: DeleteConnectionResponse) => any;
|
|
586
660
|
}
|
|
661
|
+
export interface DeleteObservabilityConfigurationRequest {
|
|
662
|
+
|
|
663
|
+
ObservabilityConfigurationArn: string | undefined;
|
|
664
|
+
}
|
|
665
|
+
export declare namespace DeleteObservabilityConfigurationRequest {
|
|
666
|
+
|
|
667
|
+
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
|
|
668
|
+
}
|
|
669
|
+
export interface DeleteObservabilityConfigurationResponse {
|
|
670
|
+
|
|
671
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
672
|
+
}
|
|
673
|
+
export declare namespace DeleteObservabilityConfigurationResponse {
|
|
674
|
+
|
|
675
|
+
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
|
|
676
|
+
}
|
|
587
677
|
export interface DeleteServiceRequest {
|
|
588
678
|
|
|
589
679
|
ServiceArn: string | undefined;
|
|
@@ -660,6 +750,22 @@ export declare namespace DescribeCustomDomainsResponse {
|
|
|
660
750
|
|
|
661
751
|
const filterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
|
|
662
752
|
}
|
|
753
|
+
export interface DescribeObservabilityConfigurationRequest {
|
|
754
|
+
|
|
755
|
+
ObservabilityConfigurationArn: string | undefined;
|
|
756
|
+
}
|
|
757
|
+
export declare namespace DescribeObservabilityConfigurationRequest {
|
|
758
|
+
|
|
759
|
+
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
|
|
760
|
+
}
|
|
761
|
+
export interface DescribeObservabilityConfigurationResponse {
|
|
762
|
+
|
|
763
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
764
|
+
}
|
|
765
|
+
export declare namespace DescribeObservabilityConfigurationResponse {
|
|
766
|
+
|
|
767
|
+
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
|
|
768
|
+
}
|
|
663
769
|
export interface DescribeServiceRequest {
|
|
664
770
|
|
|
665
771
|
ServiceArn: string | undefined;
|
|
@@ -777,6 +883,43 @@ export declare namespace ListConnectionsResponse {
|
|
|
777
883
|
|
|
778
884
|
const filterSensitiveLog: (obj: ListConnectionsResponse) => any;
|
|
779
885
|
}
|
|
886
|
+
export interface ListObservabilityConfigurationsRequest {
|
|
887
|
+
|
|
888
|
+
ObservabilityConfigurationName?: string;
|
|
889
|
+
|
|
890
|
+
LatestOnly?: boolean;
|
|
891
|
+
|
|
892
|
+
MaxResults?: number;
|
|
893
|
+
|
|
894
|
+
NextToken?: string;
|
|
895
|
+
}
|
|
896
|
+
export declare namespace ListObservabilityConfigurationsRequest {
|
|
897
|
+
|
|
898
|
+
const filterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
|
|
899
|
+
}
|
|
900
|
+
|
|
901
|
+
export interface ObservabilityConfigurationSummary {
|
|
902
|
+
|
|
903
|
+
ObservabilityConfigurationArn?: string;
|
|
904
|
+
|
|
905
|
+
ObservabilityConfigurationName?: string;
|
|
906
|
+
|
|
907
|
+
ObservabilityConfigurationRevision?: number;
|
|
908
|
+
}
|
|
909
|
+
export declare namespace ObservabilityConfigurationSummary {
|
|
910
|
+
|
|
911
|
+
const filterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
|
|
912
|
+
}
|
|
913
|
+
export interface ListObservabilityConfigurationsResponse {
|
|
914
|
+
|
|
915
|
+
ObservabilityConfigurationSummaryList: ObservabilityConfigurationSummary[] | undefined;
|
|
916
|
+
|
|
917
|
+
NextToken?: string;
|
|
918
|
+
}
|
|
919
|
+
export declare namespace ListObservabilityConfigurationsResponse {
|
|
920
|
+
|
|
921
|
+
const filterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
|
|
922
|
+
}
|
|
780
923
|
export interface ListOperationsRequest {
|
|
781
924
|
|
|
782
925
|
ServiceArn: string | undefined;
|
|
@@ -1010,6 +1153,8 @@ export interface UpdateServiceRequest {
|
|
|
1010
1153
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
1011
1154
|
|
|
1012
1155
|
NetworkConfiguration?: NetworkConfiguration;
|
|
1156
|
+
|
|
1157
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1013
1158
|
}
|
|
1014
1159
|
export declare namespace UpdateServiceRequest {
|
|
1015
1160
|
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { Paginator } from "@aws-sdk/types";
|
|
2
|
+
import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput } from "../commands/ListObservabilityConfigurationsCommand";
|
|
3
|
+
import { AppRunnerPaginationConfiguration } from "./Interfaces";
|
|
4
|
+
export declare function paginateListObservabilityConfigurations(config: AppRunnerPaginationConfiguration, input: ListObservabilityConfigurationsCommandInput, ...additionalArguments: any): Paginator<ListObservabilityConfigurationsCommandOutput>;
|
|
@@ -2,6 +2,7 @@ export * from "./DescribeCustomDomainsPaginator";
|
|
|
2
2
|
export * from "./Interfaces";
|
|
3
3
|
export * from "./ListAutoScalingConfigurationsPaginator";
|
|
4
4
|
export * from "./ListConnectionsPaginator";
|
|
5
|
+
export * from "./ListObservabilityConfigurationsPaginator";
|
|
5
6
|
export * from "./ListOperationsPaginator";
|
|
6
7
|
export * from "./ListServicesPaginator";
|
|
7
8
|
export * from "./ListVpcConnectorsPaginator";
|
|
@@ -3,19 +3,23 @@ import { SerdeContext as __SerdeContext } from "@aws-sdk/types";
|
|
|
3
3
|
import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "../commands/AssociateCustomDomainCommand";
|
|
4
4
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "../commands/CreateAutoScalingConfigurationCommand";
|
|
5
5
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "../commands/CreateConnectionCommand";
|
|
6
|
+
import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput } from "../commands/CreateObservabilityConfigurationCommand";
|
|
6
7
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "../commands/CreateServiceCommand";
|
|
7
8
|
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "../commands/CreateVpcConnectorCommand";
|
|
8
9
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "../commands/DeleteAutoScalingConfigurationCommand";
|
|
9
10
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "../commands/DeleteConnectionCommand";
|
|
11
|
+
import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput } from "../commands/DeleteObservabilityConfigurationCommand";
|
|
10
12
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "../commands/DeleteServiceCommand";
|
|
11
13
|
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "../commands/DeleteVpcConnectorCommand";
|
|
12
14
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "../commands/DescribeAutoScalingConfigurationCommand";
|
|
13
15
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "../commands/DescribeCustomDomainsCommand";
|
|
16
|
+
import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput } from "../commands/DescribeObservabilityConfigurationCommand";
|
|
14
17
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "../commands/DescribeServiceCommand";
|
|
15
18
|
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "../commands/DescribeVpcConnectorCommand";
|
|
16
19
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "../commands/DisassociateCustomDomainCommand";
|
|
17
20
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "../commands/ListAutoScalingConfigurationsCommand";
|
|
18
21
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "../commands/ListConnectionsCommand";
|
|
22
|
+
import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput } from "../commands/ListObservabilityConfigurationsCommand";
|
|
19
23
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "../commands/ListOperationsCommand";
|
|
20
24
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
21
25
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
|
|
@@ -29,19 +33,23 @@ import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "../comman
|
|
|
29
33
|
export declare const serializeAws_json1_0AssociateCustomDomainCommand: (input: AssociateCustomDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
30
34
|
export declare const serializeAws_json1_0CreateAutoScalingConfigurationCommand: (input: CreateAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
31
35
|
export declare const serializeAws_json1_0CreateConnectionCommand: (input: CreateConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
|
+
export declare const serializeAws_json1_0CreateObservabilityConfigurationCommand: (input: CreateObservabilityConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
32
37
|
export declare const serializeAws_json1_0CreateServiceCommand: (input: CreateServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
33
38
|
export declare const serializeAws_json1_0CreateVpcConnectorCommand: (input: CreateVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
34
39
|
export declare const serializeAws_json1_0DeleteAutoScalingConfigurationCommand: (input: DeleteAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
35
40
|
export declare const serializeAws_json1_0DeleteConnectionCommand: (input: DeleteConnectionCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
|
+
export declare const serializeAws_json1_0DeleteObservabilityConfigurationCommand: (input: DeleteObservabilityConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
36
42
|
export declare const serializeAws_json1_0DeleteServiceCommand: (input: DeleteServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
37
43
|
export declare const serializeAws_json1_0DeleteVpcConnectorCommand: (input: DeleteVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
38
44
|
export declare const serializeAws_json1_0DescribeAutoScalingConfigurationCommand: (input: DescribeAutoScalingConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
39
45
|
export declare const serializeAws_json1_0DescribeCustomDomainsCommand: (input: DescribeCustomDomainsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
|
+
export declare const serializeAws_json1_0DescribeObservabilityConfigurationCommand: (input: DescribeObservabilityConfigurationCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
40
47
|
export declare const serializeAws_json1_0DescribeServiceCommand: (input: DescribeServiceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
41
48
|
export declare const serializeAws_json1_0DescribeVpcConnectorCommand: (input: DescribeVpcConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
42
49
|
export declare const serializeAws_json1_0DisassociateCustomDomainCommand: (input: DisassociateCustomDomainCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
43
50
|
export declare const serializeAws_json1_0ListAutoScalingConfigurationsCommand: (input: ListAutoScalingConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
44
51
|
export declare const serializeAws_json1_0ListConnectionsCommand: (input: ListConnectionsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
52
|
+
export declare const serializeAws_json1_0ListObservabilityConfigurationsCommand: (input: ListObservabilityConfigurationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
45
53
|
export declare const serializeAws_json1_0ListOperationsCommand: (input: ListOperationsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
46
54
|
export declare const serializeAws_json1_0ListServicesCommand: (input: ListServicesCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
47
55
|
export declare const serializeAws_json1_0ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
|
|
@@ -55,19 +63,23 @@ export declare const serializeAws_json1_0UpdateServiceCommand: (input: UpdateSer
|
|
|
55
63
|
export declare const deserializeAws_json1_0AssociateCustomDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<AssociateCustomDomainCommandOutput>;
|
|
56
64
|
export declare const deserializeAws_json1_0CreateAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateAutoScalingConfigurationCommandOutput>;
|
|
57
65
|
export declare const deserializeAws_json1_0CreateConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectionCommandOutput>;
|
|
66
|
+
export declare const deserializeAws_json1_0CreateObservabilityConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateObservabilityConfigurationCommandOutput>;
|
|
58
67
|
export declare const deserializeAws_json1_0CreateServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateServiceCommandOutput>;
|
|
59
68
|
export declare const deserializeAws_json1_0CreateVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateVpcConnectorCommandOutput>;
|
|
60
69
|
export declare const deserializeAws_json1_0DeleteAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteAutoScalingConfigurationCommandOutput>;
|
|
61
70
|
export declare const deserializeAws_json1_0DeleteConnectionCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectionCommandOutput>;
|
|
71
|
+
export declare const deserializeAws_json1_0DeleteObservabilityConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteObservabilityConfigurationCommandOutput>;
|
|
62
72
|
export declare const deserializeAws_json1_0DeleteServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteServiceCommandOutput>;
|
|
63
73
|
export declare const deserializeAws_json1_0DeleteVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteVpcConnectorCommandOutput>;
|
|
64
74
|
export declare const deserializeAws_json1_0DescribeAutoScalingConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeAutoScalingConfigurationCommandOutput>;
|
|
65
75
|
export declare const deserializeAws_json1_0DescribeCustomDomainsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeCustomDomainsCommandOutput>;
|
|
76
|
+
export declare const deserializeAws_json1_0DescribeObservabilityConfigurationCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
66
77
|
export declare const deserializeAws_json1_0DescribeServiceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeServiceCommandOutput>;
|
|
67
78
|
export declare const deserializeAws_json1_0DescribeVpcConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DescribeVpcConnectorCommandOutput>;
|
|
68
79
|
export declare const deserializeAws_json1_0DisassociateCustomDomainCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DisassociateCustomDomainCommandOutput>;
|
|
69
80
|
export declare const deserializeAws_json1_0ListAutoScalingConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListAutoScalingConfigurationsCommandOutput>;
|
|
70
81
|
export declare const deserializeAws_json1_0ListConnectionsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectionsCommandOutput>;
|
|
82
|
+
export declare const deserializeAws_json1_0ListObservabilityConfigurationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
71
83
|
export declare const deserializeAws_json1_0ListOperationsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListOperationsCommandOutput>;
|
|
72
84
|
export declare const deserializeAws_json1_0ListServicesCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListServicesCommandOutput>;
|
|
73
85
|
export declare const deserializeAws_json1_0ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-apprunner",
|
|
3
3
|
"description": "AWS SDK for JavaScript Apprunner Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.74.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",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
20
20
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
21
|
-
"@aws-sdk/client-sts": "3.
|
|
21
|
+
"@aws-sdk/client-sts": "3.74.0",
|
|
22
22
|
"@aws-sdk/config-resolver": "3.58.0",
|
|
23
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/credential-provider-node": "3.74.0",
|
|
24
24
|
"@aws-sdk/fetch-http-handler": "3.58.0",
|
|
25
25
|
"@aws-sdk/hash-node": "3.55.0",
|
|
26
26
|
"@aws-sdk/invalid-dependency": "3.55.0",
|
|
@@ -33,17 +33,17 @@
|
|
|
33
33
|
"@aws-sdk/middleware-stack": "3.55.0",
|
|
34
34
|
"@aws-sdk/middleware-user-agent": "3.58.0",
|
|
35
35
|
"@aws-sdk/node-config-provider": "3.58.0",
|
|
36
|
-
"@aws-sdk/node-http-handler": "3.
|
|
36
|
+
"@aws-sdk/node-http-handler": "3.74.0",
|
|
37
37
|
"@aws-sdk/protocol-http": "3.58.0",
|
|
38
|
-
"@aws-sdk/smithy-client": "3.
|
|
38
|
+
"@aws-sdk/smithy-client": "3.72.0",
|
|
39
39
|
"@aws-sdk/types": "3.55.0",
|
|
40
40
|
"@aws-sdk/url-parser": "3.55.0",
|
|
41
41
|
"@aws-sdk/util-base64-browser": "3.58.0",
|
|
42
42
|
"@aws-sdk/util-base64-node": "3.55.0",
|
|
43
43
|
"@aws-sdk/util-body-length-browser": "3.55.0",
|
|
44
44
|
"@aws-sdk/util-body-length-node": "3.55.0",
|
|
45
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
46
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
45
|
+
"@aws-sdk/util-defaults-mode-browser": "3.72.0",
|
|
46
|
+
"@aws-sdk/util-defaults-mode-node": "3.72.0",
|
|
47
47
|
"@aws-sdk/util-user-agent-browser": "3.58.0",
|
|
48
48
|
"@aws-sdk/util-user-agent-node": "3.58.0",
|
|
49
49
|
"@aws-sdk/util-utf8-browser": "3.55.0",
|