@aws-sdk/client-apprunner 3.58.0 → 3.72.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/README.md +2 -2
- 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 +6 -6
|
@@ -245,7 +245,7 @@ export interface AutoScalingConfiguration {
|
|
|
245
245
|
AutoScalingConfigurationRevision?: number;
|
|
246
246
|
/**
|
|
247
247
|
* <p>It's set to <code>true</code> for the configuration with the highest <code>Revision</code> among all configurations that share the same
|
|
248
|
-
* <code>
|
|
248
|
+
* <code>AutoScalingConfigurationName</code>. It's set to <code>false</code> otherwise.</p>
|
|
249
249
|
*/
|
|
250
250
|
Latest?: boolean;
|
|
251
251
|
/**
|
|
@@ -382,6 +382,117 @@ export declare namespace CreateConnectionResponse {
|
|
|
382
382
|
*/
|
|
383
383
|
const filterSensitiveLog: (obj: CreateConnectionResponse) => any;
|
|
384
384
|
}
|
|
385
|
+
export declare enum TracingVendor {
|
|
386
|
+
AWSXRAY = "AWSXRAY"
|
|
387
|
+
}
|
|
388
|
+
/**
|
|
389
|
+
* <p>Describes the configuration of the tracing feature within an App Runner observability configuration.</p>
|
|
390
|
+
*/
|
|
391
|
+
export interface TraceConfiguration {
|
|
392
|
+
/**
|
|
393
|
+
* <p>The implementation provider chosen for tracing App Runner services.</p>
|
|
394
|
+
*/
|
|
395
|
+
Vendor: TracingVendor | string | undefined;
|
|
396
|
+
}
|
|
397
|
+
export declare namespace TraceConfiguration {
|
|
398
|
+
/**
|
|
399
|
+
* @internal
|
|
400
|
+
*/
|
|
401
|
+
const filterSensitiveLog: (obj: TraceConfiguration) => any;
|
|
402
|
+
}
|
|
403
|
+
export interface CreateObservabilityConfigurationRequest {
|
|
404
|
+
/**
|
|
405
|
+
* <p>A name for the observability configuration. When you use it for the first time in an Amazon Web Services Region, App Runner creates revision number
|
|
406
|
+
* <code>1</code> of this name. When you use the same name in subsequent calls, App Runner creates incremental revisions of the configuration.</p>
|
|
407
|
+
* <note>
|
|
408
|
+
* <p>The name <code>DefaultConfiguration</code> is reserved. You can't use it to create a new observability configuration, and you can't create a
|
|
409
|
+
* revision of it.</p>
|
|
410
|
+
* <p>When you want to use your own observability configuration for your App Runner service, <i>create a configuration with a different name</i>,
|
|
411
|
+
* and then provide it when you create or update your service.</p>
|
|
412
|
+
* </note>
|
|
413
|
+
*/
|
|
414
|
+
ObservabilityConfigurationName: string | undefined;
|
|
415
|
+
/**
|
|
416
|
+
* <p>The configuration of the tracing feature within this observability configuration. If you don't specify it, App Runner doesn't enable tracing.</p>
|
|
417
|
+
*/
|
|
418
|
+
TraceConfiguration?: TraceConfiguration;
|
|
419
|
+
/**
|
|
420
|
+
* <p>A list of metadata items that you can associate with your observability configuration resource. A tag is a key-value pair.</p>
|
|
421
|
+
*/
|
|
422
|
+
Tags?: Tag[];
|
|
423
|
+
}
|
|
424
|
+
export declare namespace CreateObservabilityConfigurationRequest {
|
|
425
|
+
/**
|
|
426
|
+
* @internal
|
|
427
|
+
*/
|
|
428
|
+
const filterSensitiveLog: (obj: CreateObservabilityConfigurationRequest) => any;
|
|
429
|
+
}
|
|
430
|
+
export declare enum ObservabilityConfigurationStatus {
|
|
431
|
+
ACTIVE = "ACTIVE",
|
|
432
|
+
INACTIVE = "INACTIVE"
|
|
433
|
+
}
|
|
434
|
+
/**
|
|
435
|
+
* <p>Describes an App Runner observability configuration resource. Multiple revisions of a configuration have the same
|
|
436
|
+
* <code>ObservabilityConfigurationName</code> and different <code>ObservabilityConfigurationRevision</code> values.</p>
|
|
437
|
+
* <p>The resource is designed to configure multiple features (currently one feature, tracing). This type contains optional members that describe the
|
|
438
|
+
* configuration of these features (currently one member, <code>TraceConfiguration</code>). If a feature member isn't specified, the feature isn't
|
|
439
|
+
* enabled.</p>
|
|
440
|
+
*/
|
|
441
|
+
export interface ObservabilityConfiguration {
|
|
442
|
+
/**
|
|
443
|
+
* <p>The Amazon Resource Name (ARN) of this observability configuration.</p>
|
|
444
|
+
*/
|
|
445
|
+
ObservabilityConfigurationArn?: string;
|
|
446
|
+
/**
|
|
447
|
+
* <p>The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
448
|
+
*/
|
|
449
|
+
ObservabilityConfigurationName?: string;
|
|
450
|
+
/**
|
|
451
|
+
* <p>The configuration of the tracing feature within this observability configuration. If not specified, tracing isn't enabled.</p>
|
|
452
|
+
*/
|
|
453
|
+
TraceConfiguration?: TraceConfiguration;
|
|
454
|
+
/**
|
|
455
|
+
* <p>The revision of this observability configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) that share the
|
|
456
|
+
* same <code>ObservabilityConfigurationName</code>.</p>
|
|
457
|
+
*/
|
|
458
|
+
ObservabilityConfigurationRevision?: number;
|
|
459
|
+
/**
|
|
460
|
+
* <p>It's set to <code>true</code> for the configuration with the highest <code>Revision</code> among all configurations that share the same
|
|
461
|
+
* <code>ObservabilityConfigurationName</code>. It's set to <code>false</code> otherwise.</p>
|
|
462
|
+
*/
|
|
463
|
+
Latest?: boolean;
|
|
464
|
+
/**
|
|
465
|
+
* <p>The current state of the observability configuration. If the status of a configuration revision is <code>INACTIVE</code>, it was deleted and can't be
|
|
466
|
+
* used. Inactive configuration revisions are permanently removed some time after they are deleted.</p>
|
|
467
|
+
*/
|
|
468
|
+
Status?: ObservabilityConfigurationStatus | string;
|
|
469
|
+
/**
|
|
470
|
+
* <p>The time when the observability configuration was created. It's in Unix time stamp format.</p>
|
|
471
|
+
*/
|
|
472
|
+
CreatedAt?: Date;
|
|
473
|
+
/**
|
|
474
|
+
* <p>The time when the observability configuration was deleted. It's in Unix time stamp format.</p>
|
|
475
|
+
*/
|
|
476
|
+
DeletedAt?: Date;
|
|
477
|
+
}
|
|
478
|
+
export declare namespace ObservabilityConfiguration {
|
|
479
|
+
/**
|
|
480
|
+
* @internal
|
|
481
|
+
*/
|
|
482
|
+
const filterSensitiveLog: (obj: ObservabilityConfiguration) => any;
|
|
483
|
+
}
|
|
484
|
+
export interface CreateObservabilityConfigurationResponse {
|
|
485
|
+
/**
|
|
486
|
+
* <p>A description of the App Runner observability configuration that's created by this request.</p>
|
|
487
|
+
*/
|
|
488
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
489
|
+
}
|
|
490
|
+
export declare namespace CreateObservabilityConfigurationResponse {
|
|
491
|
+
/**
|
|
492
|
+
* @internal
|
|
493
|
+
*/
|
|
494
|
+
const filterSensitiveLog: (obj: CreateObservabilityConfigurationResponse) => any;
|
|
495
|
+
}
|
|
385
496
|
/**
|
|
386
497
|
* <p>Describes a custom encryption key that App Runner uses to encrypt copies of the source repository and service logs.</p>
|
|
387
498
|
*/
|
|
@@ -521,6 +632,34 @@ export declare namespace NetworkConfiguration {
|
|
|
521
632
|
*/
|
|
522
633
|
const filterSensitiveLog: (obj: NetworkConfiguration) => any;
|
|
523
634
|
}
|
|
635
|
+
/**
|
|
636
|
+
* <p>Describes the observability configuration of an App Runner service. These are additional observability features, like tracing, that you choose to
|
|
637
|
+
* enable. They're configured in a separate resource that you associate with your service.</p>
|
|
638
|
+
*/
|
|
639
|
+
export interface ServiceObservabilityConfiguration {
|
|
640
|
+
/**
|
|
641
|
+
* <p>When <code>true</code>, an observability configuration resource is associated with the service, and an <code>ObservabilityConfigurationArn</code> is
|
|
642
|
+
* specified.</p>
|
|
643
|
+
*/
|
|
644
|
+
ObservabilityEnabled: boolean | undefined;
|
|
645
|
+
/**
|
|
646
|
+
* <p>The Amazon Resource Name (ARN) of the observability configuration that is associated with the service. Specified only when
|
|
647
|
+
* <code>ObservabilityEnabled</code> is <code>true</code>.</p>
|
|
648
|
+
* <p>Specify an ARN with a name and a revision number to associate that revision. For example:
|
|
649
|
+
* <code>arn:aws:apprunner:us-east-1:123456789012:observabilityconfiguration/xray-tracing/3</code>
|
|
650
|
+
* </p>
|
|
651
|
+
* <p>Specify just the name to associate the latest revision. For example:
|
|
652
|
+
* <code>arn:aws:apprunner:us-east-1:123456789012:observabilityconfiguration/xray-tracing</code>
|
|
653
|
+
* </p>
|
|
654
|
+
*/
|
|
655
|
+
ObservabilityConfigurationArn?: string;
|
|
656
|
+
}
|
|
657
|
+
export declare namespace ServiceObservabilityConfiguration {
|
|
658
|
+
/**
|
|
659
|
+
* @internal
|
|
660
|
+
*/
|
|
661
|
+
const filterSensitiveLog: (obj: ServiceObservabilityConfiguration) => any;
|
|
662
|
+
}
|
|
524
663
|
/**
|
|
525
664
|
* <p>Describes resources needed to authenticate access to some source repositories. The specific resource depends on the repository provider.</p>
|
|
526
665
|
*/
|
|
@@ -771,7 +910,7 @@ export interface CreateServiceRequest {
|
|
|
771
910
|
*/
|
|
772
911
|
SourceConfiguration: SourceConfiguration | undefined;
|
|
773
912
|
/**
|
|
774
|
-
* <p>The runtime configuration of instances (scaling units) of
|
|
913
|
+
* <p>The runtime configuration of instances (scaling units) of your service.</p>
|
|
775
914
|
*/
|
|
776
915
|
InstanceConfiguration?: InstanceConfiguration;
|
|
777
916
|
/**
|
|
@@ -788,14 +927,24 @@ export interface CreateServiceRequest {
|
|
|
788
927
|
*/
|
|
789
928
|
HealthCheckConfiguration?: HealthCheckConfiguration;
|
|
790
929
|
/**
|
|
791
|
-
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with
|
|
792
|
-
*
|
|
930
|
+
* <p>The Amazon Resource Name (ARN) of an App Runner automatic scaling configuration resource that you want to associate with your service. If not provided, App Runner
|
|
931
|
+
* associates the latest revision of a default auto scaling configuration.</p>
|
|
932
|
+
* <p>Specify an ARN with a name and a revision number to associate that revision. For example:
|
|
933
|
+
* <code>arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability/3</code>
|
|
934
|
+
* </p>
|
|
935
|
+
* <p>Specify just the name to associate the latest revision. For example:
|
|
936
|
+
* <code>arn:aws:apprunner:us-east-1:123456789012:autoscalingconfiguration/high-availability</code>
|
|
937
|
+
* </p>
|
|
793
938
|
*/
|
|
794
939
|
AutoScalingConfigurationArn?: string;
|
|
795
940
|
/**
|
|
796
941
|
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
797
942
|
*/
|
|
798
943
|
NetworkConfiguration?: NetworkConfiguration;
|
|
944
|
+
/**
|
|
945
|
+
* <p>The observability configuration of your service.</p>
|
|
946
|
+
*/
|
|
947
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
799
948
|
}
|
|
800
949
|
export declare namespace CreateServiceRequest {
|
|
801
950
|
/**
|
|
@@ -914,6 +1063,10 @@ export interface Service {
|
|
|
914
1063
|
* <p>Configuration settings related to network traffic of the web application that this service runs.</p>
|
|
915
1064
|
*/
|
|
916
1065
|
NetworkConfiguration: NetworkConfiguration | undefined;
|
|
1066
|
+
/**
|
|
1067
|
+
* <p>The observability configuration of this service.</p>
|
|
1068
|
+
*/
|
|
1069
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
917
1070
|
}
|
|
918
1071
|
export declare namespace Service {
|
|
919
1072
|
/**
|
|
@@ -1097,6 +1250,34 @@ export declare namespace DeleteConnectionResponse {
|
|
|
1097
1250
|
*/
|
|
1098
1251
|
const filterSensitiveLog: (obj: DeleteConnectionResponse) => any;
|
|
1099
1252
|
}
|
|
1253
|
+
export interface DeleteObservabilityConfigurationRequest {
|
|
1254
|
+
/**
|
|
1255
|
+
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want to delete.</p>
|
|
1256
|
+
* <p>The ARN can be a full observability configuration ARN, or a partial ARN ending with either <code>.../<i>name</i>
|
|
1257
|
+
* </code> or
|
|
1258
|
+
* <code>.../<i>name</i>/<i>revision</i>
|
|
1259
|
+
* </code>. If a revision isn't specified, the latest active revision is deleted.</p>
|
|
1260
|
+
*/
|
|
1261
|
+
ObservabilityConfigurationArn: string | undefined;
|
|
1262
|
+
}
|
|
1263
|
+
export declare namespace DeleteObservabilityConfigurationRequest {
|
|
1264
|
+
/**
|
|
1265
|
+
* @internal
|
|
1266
|
+
*/
|
|
1267
|
+
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationRequest) => any;
|
|
1268
|
+
}
|
|
1269
|
+
export interface DeleteObservabilityConfigurationResponse {
|
|
1270
|
+
/**
|
|
1271
|
+
* <p>A description of the App Runner observability configuration that this request just deleted.</p>
|
|
1272
|
+
*/
|
|
1273
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1274
|
+
}
|
|
1275
|
+
export declare namespace DeleteObservabilityConfigurationResponse {
|
|
1276
|
+
/**
|
|
1277
|
+
* @internal
|
|
1278
|
+
*/
|
|
1279
|
+
const filterSensitiveLog: (obj: DeleteObservabilityConfigurationResponse) => any;
|
|
1280
|
+
}
|
|
1100
1281
|
export interface DeleteServiceRequest {
|
|
1101
1282
|
/**
|
|
1102
1283
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want to delete.</p>
|
|
@@ -1228,6 +1409,35 @@ export declare namespace DescribeCustomDomainsResponse {
|
|
|
1228
1409
|
*/
|
|
1229
1410
|
const filterSensitiveLog: (obj: DescribeCustomDomainsResponse) => any;
|
|
1230
1411
|
}
|
|
1412
|
+
export interface DescribeObservabilityConfigurationRequest {
|
|
1413
|
+
/**
|
|
1414
|
+
* <p>The Amazon Resource Name (ARN) of the App Runner observability configuration that you want a description for.</p>
|
|
1415
|
+
* <p>The ARN can be a full observability configuration ARN, or a partial ARN ending with either <code>.../<i>name</i>
|
|
1416
|
+
* </code> or
|
|
1417
|
+
* <code>.../<i>name</i>/<i>revision</i>
|
|
1418
|
+
* </code>. If a revision isn't specified, the latest active revision is
|
|
1419
|
+
* described.</p>
|
|
1420
|
+
*/
|
|
1421
|
+
ObservabilityConfigurationArn: string | undefined;
|
|
1422
|
+
}
|
|
1423
|
+
export declare namespace DescribeObservabilityConfigurationRequest {
|
|
1424
|
+
/**
|
|
1425
|
+
* @internal
|
|
1426
|
+
*/
|
|
1427
|
+
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationRequest) => any;
|
|
1428
|
+
}
|
|
1429
|
+
export interface DescribeObservabilityConfigurationResponse {
|
|
1430
|
+
/**
|
|
1431
|
+
* <p>A full description of the App Runner observability configuration that you specified in this request.</p>
|
|
1432
|
+
*/
|
|
1433
|
+
ObservabilityConfiguration: ObservabilityConfiguration | undefined;
|
|
1434
|
+
}
|
|
1435
|
+
export declare namespace DescribeObservabilityConfigurationResponse {
|
|
1436
|
+
/**
|
|
1437
|
+
* @internal
|
|
1438
|
+
*/
|
|
1439
|
+
const filterSensitiveLog: (obj: DescribeObservabilityConfigurationResponse) => any;
|
|
1440
|
+
}
|
|
1231
1441
|
export interface DescribeServiceRequest {
|
|
1232
1442
|
/**
|
|
1233
1443
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a description for.</p>
|
|
@@ -1316,13 +1526,13 @@ export declare namespace DisassociateCustomDomainResponse {
|
|
|
1316
1526
|
export interface ListAutoScalingConfigurationsRequest {
|
|
1317
1527
|
/**
|
|
1318
1528
|
* <p>The name of the App Runner auto scaling configuration that you want to list. If specified, App Runner lists revisions that share this name. If not specified, App Runner
|
|
1319
|
-
* returns revisions of all configurations.</p>
|
|
1529
|
+
* returns revisions of all active configurations.</p>
|
|
1320
1530
|
*/
|
|
1321
1531
|
AutoScalingConfigurationName?: string;
|
|
1322
1532
|
/**
|
|
1323
1533
|
* <p>Set to <code>true</code> to list only the latest revision for each requested configuration name.</p>
|
|
1324
|
-
* <p>
|
|
1325
|
-
* <p>Default: <code>
|
|
1534
|
+
* <p>Set to <code>false</code> to list all revisions for each requested configuration name.</p>
|
|
1535
|
+
* <p>Default: <code>true</code>
|
|
1326
1536
|
* </p>
|
|
1327
1537
|
*/
|
|
1328
1538
|
LatestOnly?: boolean;
|
|
@@ -1432,6 +1642,81 @@ export declare namespace ListConnectionsResponse {
|
|
|
1432
1642
|
*/
|
|
1433
1643
|
const filterSensitiveLog: (obj: ListConnectionsResponse) => any;
|
|
1434
1644
|
}
|
|
1645
|
+
export interface ListObservabilityConfigurationsRequest {
|
|
1646
|
+
/**
|
|
1647
|
+
* <p>The name of the App Runner observability configuration that you want to list. If specified, App Runner lists revisions that share this name. If not specified,
|
|
1648
|
+
* App Runner returns revisions of all active configurations.</p>
|
|
1649
|
+
*/
|
|
1650
|
+
ObservabilityConfigurationName?: string;
|
|
1651
|
+
/**
|
|
1652
|
+
* <p>Set to <code>true</code> to list only the latest revision for each requested configuration name.</p>
|
|
1653
|
+
* <p>Set to <code>false</code> to list all revisions for each requested configuration name.</p>
|
|
1654
|
+
* <p>Default: <code>true</code>
|
|
1655
|
+
* </p>
|
|
1656
|
+
*/
|
|
1657
|
+
LatestOnly?: boolean;
|
|
1658
|
+
/**
|
|
1659
|
+
* <p>The maximum number of results to include in each response (result page). It's used for a paginated request.</p>
|
|
1660
|
+
* <p>If you don't specify <code>MaxResults</code>, the request retrieves all available results in a single response.</p>
|
|
1661
|
+
*/
|
|
1662
|
+
MaxResults?: number;
|
|
1663
|
+
/**
|
|
1664
|
+
* <p>A token from a previous result page. It's used for a paginated request. The request retrieves the next result page. All other parameter values must be
|
|
1665
|
+
* identical to the ones that are specified in the initial request.</p>
|
|
1666
|
+
* <p>If you don't specify <code>NextToken</code>, the request retrieves the first result page.</p>
|
|
1667
|
+
*/
|
|
1668
|
+
NextToken?: string;
|
|
1669
|
+
}
|
|
1670
|
+
export declare namespace ListObservabilityConfigurationsRequest {
|
|
1671
|
+
/**
|
|
1672
|
+
* @internal
|
|
1673
|
+
*/
|
|
1674
|
+
const filterSensitiveLog: (obj: ListObservabilityConfigurationsRequest) => any;
|
|
1675
|
+
}
|
|
1676
|
+
/**
|
|
1677
|
+
* <p>Provides summary information about an App Runner observability configuration resource.</p>
|
|
1678
|
+
* <p>This type contains limited information about an observability configuration. It includes only identification information, without configuration
|
|
1679
|
+
* details. It's returned by the <a>ListObservabilityConfigurations</a> action. Complete configuration information is returned by the <a>CreateObservabilityConfiguration</a>, <a>DescribeObservabilityConfiguration</a>, and <a>DeleteObservabilityConfiguration</a>
|
|
1680
|
+
* actions using the <a>ObservabilityConfiguration</a> type.</p>
|
|
1681
|
+
*/
|
|
1682
|
+
export interface ObservabilityConfigurationSummary {
|
|
1683
|
+
/**
|
|
1684
|
+
* <p>The Amazon Resource Name (ARN) of this observability configuration.</p>
|
|
1685
|
+
*/
|
|
1686
|
+
ObservabilityConfigurationArn?: string;
|
|
1687
|
+
/**
|
|
1688
|
+
* <p>The customer-provided observability configuration name. It can be used in multiple revisions of a configuration.</p>
|
|
1689
|
+
*/
|
|
1690
|
+
ObservabilityConfigurationName?: string;
|
|
1691
|
+
/**
|
|
1692
|
+
* <p>The revision of this observability configuration. It's unique among all the active configurations (<code>"Status": "ACTIVE"</code>) that share the
|
|
1693
|
+
* same <code>ObservabilityConfigurationName</code>.</p>
|
|
1694
|
+
*/
|
|
1695
|
+
ObservabilityConfigurationRevision?: number;
|
|
1696
|
+
}
|
|
1697
|
+
export declare namespace ObservabilityConfigurationSummary {
|
|
1698
|
+
/**
|
|
1699
|
+
* @internal
|
|
1700
|
+
*/
|
|
1701
|
+
const filterSensitiveLog: (obj: ObservabilityConfigurationSummary) => any;
|
|
1702
|
+
}
|
|
1703
|
+
export interface ListObservabilityConfigurationsResponse {
|
|
1704
|
+
/**
|
|
1705
|
+
* <p>A list of summary information records for observability configurations. In a paginated request, the request returns up to <code>MaxResults</code>
|
|
1706
|
+
* records for each call.</p>
|
|
1707
|
+
*/
|
|
1708
|
+
ObservabilityConfigurationSummaryList: ObservabilityConfigurationSummary[] | undefined;
|
|
1709
|
+
/**
|
|
1710
|
+
* <p>The token that you can pass in a subsequent request to get the next result page. It's returned in a paginated request.</p>
|
|
1711
|
+
*/
|
|
1712
|
+
NextToken?: string;
|
|
1713
|
+
}
|
|
1714
|
+
export declare namespace ListObservabilityConfigurationsResponse {
|
|
1715
|
+
/**
|
|
1716
|
+
* @internal
|
|
1717
|
+
*/
|
|
1718
|
+
const filterSensitiveLog: (obj: ListObservabilityConfigurationsResponse) => any;
|
|
1719
|
+
}
|
|
1435
1720
|
export interface ListOperationsRequest {
|
|
1436
1721
|
/**
|
|
1437
1722
|
* <p>The Amazon Resource Name (ARN) of the App Runner service that you want a list of operations for.</p>
|
|
@@ -1824,7 +2109,7 @@ export interface UpdateServiceRequest {
|
|
|
1824
2109
|
*/
|
|
1825
2110
|
SourceConfiguration?: SourceConfiguration;
|
|
1826
2111
|
/**
|
|
1827
|
-
* <p>The runtime configuration to apply to instances (scaling units) of
|
|
2112
|
+
* <p>The runtime configuration to apply to instances (scaling units) of your service.</p>
|
|
1828
2113
|
*/
|
|
1829
2114
|
InstanceConfiguration?: InstanceConfiguration;
|
|
1830
2115
|
/**
|
|
@@ -1839,6 +2124,10 @@ export interface UpdateServiceRequest {
|
|
|
1839
2124
|
* <p>Configuration settings related to network traffic of the web application that the App Runner service runs.</p>
|
|
1840
2125
|
*/
|
|
1841
2126
|
NetworkConfiguration?: NetworkConfiguration;
|
|
2127
|
+
/**
|
|
2128
|
+
* <p>The observability configuration of your service.</p>
|
|
2129
|
+
*/
|
|
2130
|
+
ObservabilityConfiguration?: ServiceObservabilityConfiguration;
|
|
1842
2131
|
}
|
|
1843
2132
|
export declare namespace UpdateServiceRequest {
|
|
1844
2133
|
/**
|
|
@@ -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>;
|
|
@@ -3,19 +3,23 @@ import { AppRunnerClient } from "./AppRunnerClient";
|
|
|
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";
|
|
@@ -41,6 +45,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
41
45
|
createConnection(args: CreateConnectionCommandInput, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
42
46
|
createConnection(args: CreateConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateConnectionCommandOutput) => void): void;
|
|
43
47
|
|
|
48
|
+
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<CreateObservabilityConfigurationCommandOutput>;
|
|
49
|
+
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
50
|
+
createObservabilityConfiguration(args: CreateObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateObservabilityConfigurationCommandOutput) => void): void;
|
|
51
|
+
|
|
44
52
|
createService(args: CreateServiceCommandInput, options?: __HttpHandlerOptions): Promise<CreateServiceCommandOutput>;
|
|
45
53
|
createService(args: CreateServiceCommandInput, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
46
54
|
createService(args: CreateServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateServiceCommandOutput) => void): void;
|
|
@@ -57,6 +65,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
57
65
|
deleteConnection(args: DeleteConnectionCommandInput, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
58
66
|
deleteConnection(args: DeleteConnectionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteConnectionCommandOutput) => void): void;
|
|
59
67
|
|
|
68
|
+
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteObservabilityConfigurationCommandOutput>;
|
|
69
|
+
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
70
|
+
deleteObservabilityConfiguration(args: DeleteObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteObservabilityConfigurationCommandOutput) => void): void;
|
|
71
|
+
|
|
60
72
|
deleteService(args: DeleteServiceCommandInput, options?: __HttpHandlerOptions): Promise<DeleteServiceCommandOutput>;
|
|
61
73
|
deleteService(args: DeleteServiceCommandInput, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
62
74
|
deleteService(args: DeleteServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteServiceCommandOutput) => void): void;
|
|
@@ -73,6 +85,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
73
85
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
74
86
|
describeCustomDomains(args: DescribeCustomDomainsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeCustomDomainsCommandOutput) => void): void;
|
|
75
87
|
|
|
88
|
+
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options?: __HttpHandlerOptions): Promise<DescribeObservabilityConfigurationCommandOutput>;
|
|
89
|
+
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
90
|
+
describeObservabilityConfiguration(args: DescribeObservabilityConfigurationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeObservabilityConfigurationCommandOutput) => void): void;
|
|
91
|
+
|
|
76
92
|
describeService(args: DescribeServiceCommandInput, options?: __HttpHandlerOptions): Promise<DescribeServiceCommandOutput>;
|
|
77
93
|
describeService(args: DescribeServiceCommandInput, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
78
94
|
describeService(args: DescribeServiceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DescribeServiceCommandOutput) => void): void;
|
|
@@ -93,6 +109,10 @@ export declare class AppRunner extends AppRunnerClient {
|
|
|
93
109
|
listConnections(args: ListConnectionsCommandInput, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
94
110
|
listConnections(args: ListConnectionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListConnectionsCommandOutput) => void): void;
|
|
95
111
|
|
|
112
|
+
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options?: __HttpHandlerOptions): Promise<ListObservabilityConfigurationsCommandOutput>;
|
|
113
|
+
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
114
|
+
listObservabilityConfigurations(args: ListObservabilityConfigurationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListObservabilityConfigurationsCommandOutput) => void): void;
|
|
115
|
+
|
|
96
116
|
listOperations(args: ListOperationsCommandInput, options?: __HttpHandlerOptions): Promise<ListOperationsCommandOutput>;
|
|
97
117
|
listOperations(args: ListOperationsCommandInput, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
98
118
|
listOperations(args: ListOperationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListOperationsCommandOutput) => void): void;
|
|
@@ -9,19 +9,23 @@ import { BodyLengthCalculator as __BodyLengthCalculator, Credentials as __Creden
|
|
|
9
9
|
import { AssociateCustomDomainCommandInput, AssociateCustomDomainCommandOutput } from "./commands/AssociateCustomDomainCommand";
|
|
10
10
|
import { CreateAutoScalingConfigurationCommandInput, CreateAutoScalingConfigurationCommandOutput } from "./commands/CreateAutoScalingConfigurationCommand";
|
|
11
11
|
import { CreateConnectionCommandInput, CreateConnectionCommandOutput } from "./commands/CreateConnectionCommand";
|
|
12
|
+
import { CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput } from "./commands/CreateObservabilityConfigurationCommand";
|
|
12
13
|
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
13
14
|
import { CreateVpcConnectorCommandInput, CreateVpcConnectorCommandOutput } from "./commands/CreateVpcConnectorCommand";
|
|
14
15
|
import { DeleteAutoScalingConfigurationCommandInput, DeleteAutoScalingConfigurationCommandOutput } from "./commands/DeleteAutoScalingConfigurationCommand";
|
|
15
16
|
import { DeleteConnectionCommandInput, DeleteConnectionCommandOutput } from "./commands/DeleteConnectionCommand";
|
|
17
|
+
import { DeleteObservabilityConfigurationCommandInput, DeleteObservabilityConfigurationCommandOutput } from "./commands/DeleteObservabilityConfigurationCommand";
|
|
16
18
|
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
17
19
|
import { DeleteVpcConnectorCommandInput, DeleteVpcConnectorCommandOutput } from "./commands/DeleteVpcConnectorCommand";
|
|
18
20
|
import { DescribeAutoScalingConfigurationCommandInput, DescribeAutoScalingConfigurationCommandOutput } from "./commands/DescribeAutoScalingConfigurationCommand";
|
|
19
21
|
import { DescribeCustomDomainsCommandInput, DescribeCustomDomainsCommandOutput } from "./commands/DescribeCustomDomainsCommand";
|
|
22
|
+
import { DescribeObservabilityConfigurationCommandInput, DescribeObservabilityConfigurationCommandOutput } from "./commands/DescribeObservabilityConfigurationCommand";
|
|
20
23
|
import { DescribeServiceCommandInput, DescribeServiceCommandOutput } from "./commands/DescribeServiceCommand";
|
|
21
24
|
import { DescribeVpcConnectorCommandInput, DescribeVpcConnectorCommandOutput } from "./commands/DescribeVpcConnectorCommand";
|
|
22
25
|
import { DisassociateCustomDomainCommandInput, DisassociateCustomDomainCommandOutput } from "./commands/DisassociateCustomDomainCommand";
|
|
23
26
|
import { ListAutoScalingConfigurationsCommandInput, ListAutoScalingConfigurationsCommandOutput } from "./commands/ListAutoScalingConfigurationsCommand";
|
|
24
27
|
import { ListConnectionsCommandInput, ListConnectionsCommandOutput } from "./commands/ListConnectionsCommand";
|
|
28
|
+
import { ListObservabilityConfigurationsCommandInput, ListObservabilityConfigurationsCommandOutput } from "./commands/ListObservabilityConfigurationsCommand";
|
|
25
29
|
import { ListOperationsCommandInput, ListOperationsCommandOutput } from "./commands/ListOperationsCommand";
|
|
26
30
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
27
31
|
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
@@ -32,8 +36,8 @@ import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./com
|
|
|
32
36
|
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
33
37
|
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
34
38
|
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
35
|
-
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
36
|
-
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
39
|
+
export declare type ServiceInputTypes = AssociateCustomDomainCommandInput | CreateAutoScalingConfigurationCommandInput | CreateConnectionCommandInput | CreateObservabilityConfigurationCommandInput | CreateServiceCommandInput | CreateVpcConnectorCommandInput | DeleteAutoScalingConfigurationCommandInput | DeleteConnectionCommandInput | DeleteObservabilityConfigurationCommandInput | DeleteServiceCommandInput | DeleteVpcConnectorCommandInput | DescribeAutoScalingConfigurationCommandInput | DescribeCustomDomainsCommandInput | DescribeObservabilityConfigurationCommandInput | DescribeServiceCommandInput | DescribeVpcConnectorCommandInput | DisassociateCustomDomainCommandInput | ListAutoScalingConfigurationsCommandInput | ListConnectionsCommandInput | ListObservabilityConfigurationsCommandInput | ListOperationsCommandInput | ListServicesCommandInput | ListTagsForResourceCommandInput | ListVpcConnectorsCommandInput | PauseServiceCommandInput | ResumeServiceCommandInput | StartDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateServiceCommandInput;
|
|
40
|
+
export declare type ServiceOutputTypes = AssociateCustomDomainCommandOutput | CreateAutoScalingConfigurationCommandOutput | CreateConnectionCommandOutput | CreateObservabilityConfigurationCommandOutput | CreateServiceCommandOutput | CreateVpcConnectorCommandOutput | DeleteAutoScalingConfigurationCommandOutput | DeleteConnectionCommandOutput | DeleteObservabilityConfigurationCommandOutput | DeleteServiceCommandOutput | DeleteVpcConnectorCommandOutput | DescribeAutoScalingConfigurationCommandOutput | DescribeCustomDomainsCommandOutput | DescribeObservabilityConfigurationCommandOutput | DescribeServiceCommandOutput | DescribeVpcConnectorCommandOutput | DisassociateCustomDomainCommandOutput | ListAutoScalingConfigurationsCommandOutput | ListConnectionsCommandOutput | ListObservabilityConfigurationsCommandOutput | ListOperationsCommandOutput | ListServicesCommandOutput | ListTagsForResourceCommandOutput | ListVpcConnectorsCommandOutput | PauseServiceCommandOutput | ResumeServiceCommandOutput | StartDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateServiceCommandOutput;
|
|
37
41
|
export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
|
|
38
42
|
|
|
39
43
|
requestHandler?: __HttpHandler;
|
|
@@ -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 { CreateObservabilityConfigurationRequest, CreateObservabilityConfigurationResponse } from "../models/models_0";
|
|
5
|
+
export interface CreateObservabilityConfigurationCommandInput extends CreateObservabilityConfigurationRequest {
|
|
6
|
+
}
|
|
7
|
+
export interface CreateObservabilityConfigurationCommandOutput extends CreateObservabilityConfigurationResponse, __MetadataBearer {
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
export declare class CreateObservabilityConfigurationCommand extends $Command<CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput, AppRunnerClientResolvedConfig> {
|
|
11
|
+
readonly input: CreateObservabilityConfigurationCommandInput;
|
|
12
|
+
constructor(input: CreateObservabilityConfigurationCommandInput);
|
|
13
|
+
|
|
14
|
+
resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppRunnerClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateObservabilityConfigurationCommandInput, CreateObservabilityConfigurationCommandOutput>;
|
|
15
|
+
private serialize;
|
|
16
|
+
private deserialize;
|
|
17
|
+
}
|