@aws-sdk/client-ecs 3.935.0 → 3.937.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/README.md +32 -0
- package/dist-cjs/index.js +526 -45
- package/dist-es/ECS.js +8 -0
- package/dist-es/commands/CreateExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/DeleteExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/DescribeExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/UpdateExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/models/errors.js +8 -8
- package/dist-es/schemas/schemas_0.js +429 -37
- package/dist-types/ECS.d.ts +28 -0
- package/dist-types/ECSClient.d.ts +6 -2
- package/dist-types/commands/CreateExpressGatewayServiceCommand.d.ts +240 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteExpressGatewayServiceCommand.d.ts +187 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +10 -0
- package/dist-types/commands/DescribeExpressGatewayServiceCommand.d.ts +184 -0
- package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +105 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +10 -0
- package/dist-types/commands/ListServicesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateExpressGatewayServiceCommand.d.ts +222 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +10 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +76 -0
- package/dist-types/models/errors.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +3808 -2758
- package/dist-types/schemas/schemas_0.d.ts +46 -0
- package/dist-types/ts3.4/ECS.d.ts +68 -0
- package/dist-types/ts3.4/ECSClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -6
- package/dist-types/ts3.4/models/models_0.d.ts +229 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
- package/package.json +12 -12
|
@@ -30,6 +30,11 @@ export declare const AcceleratorType: {
|
|
|
30
30
|
};
|
|
31
31
|
export type AcceleratorType =
|
|
32
32
|
(typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
33
|
+
export declare const AccessType: {
|
|
34
|
+
readonly PRIVATE: "PRIVATE";
|
|
35
|
+
readonly PUBLIC: "PUBLIC";
|
|
36
|
+
};
|
|
37
|
+
export type AccessType = (typeof AccessType)[keyof typeof AccessType];
|
|
33
38
|
export declare const AgentUpdateStatus: {
|
|
34
39
|
readonly FAILED: "FAILED";
|
|
35
40
|
readonly PENDING: "PENDING";
|
|
@@ -149,6 +154,20 @@ export declare const ClusterSettingName: {
|
|
|
149
154
|
};
|
|
150
155
|
export type ClusterSettingName =
|
|
151
156
|
(typeof ClusterSettingName)[keyof typeof ClusterSettingName];
|
|
157
|
+
export declare const ExpressGatewayServiceScalingMetric: {
|
|
158
|
+
readonly AverageCPUUtilization: "AVERAGE_CPU";
|
|
159
|
+
readonly AverageMemoryUtilization: "AVERAGE_MEMORY";
|
|
160
|
+
readonly RequestCountPerTarget: "REQUEST_COUNT_PER_TARGET";
|
|
161
|
+
};
|
|
162
|
+
export type ExpressGatewayServiceScalingMetric =
|
|
163
|
+
(typeof ExpressGatewayServiceScalingMetric)[keyof typeof ExpressGatewayServiceScalingMetric];
|
|
164
|
+
export declare const ExpressGatewayServiceStatusCode: {
|
|
165
|
+
readonly ACTIVE: "ACTIVE";
|
|
166
|
+
readonly DRAINING: "DRAINING";
|
|
167
|
+
readonly INACTIVE: "INACTIVE";
|
|
168
|
+
};
|
|
169
|
+
export type ExpressGatewayServiceStatusCode =
|
|
170
|
+
(typeof ExpressGatewayServiceStatusCode)[keyof typeof ExpressGatewayServiceStatusCode];
|
|
152
171
|
export declare const AvailabilityZoneRebalancing: {
|
|
153
172
|
readonly DISABLED: "DISABLED";
|
|
154
173
|
readonly ENABLED: "ENABLED";
|
|
@@ -262,6 +281,12 @@ export declare const DeploymentRolloutState: {
|
|
|
262
281
|
};
|
|
263
282
|
export type DeploymentRolloutState =
|
|
264
283
|
(typeof DeploymentRolloutState)[keyof typeof DeploymentRolloutState];
|
|
284
|
+
export declare const ResourceManagementType: {
|
|
285
|
+
readonly CUSTOMER: "CUSTOMER";
|
|
286
|
+
readonly ECS: "ECS";
|
|
287
|
+
};
|
|
288
|
+
export type ResourceManagementType =
|
|
289
|
+
(typeof ResourceManagementType)[keyof typeof ResourceManagementType];
|
|
265
290
|
export declare const ScaleUnit: {
|
|
266
291
|
readonly PERCENT: "PERCENT";
|
|
267
292
|
};
|
|
@@ -472,6 +497,11 @@ export declare const ContainerInstanceField: {
|
|
|
472
497
|
};
|
|
473
498
|
export type ContainerInstanceField =
|
|
474
499
|
(typeof ContainerInstanceField)[keyof typeof ContainerInstanceField];
|
|
500
|
+
export declare const ExpressGatewayServiceInclude: {
|
|
501
|
+
readonly TAGS: "TAGS";
|
|
502
|
+
};
|
|
503
|
+
export type ExpressGatewayServiceInclude =
|
|
504
|
+
(typeof ExpressGatewayServiceInclude)[keyof typeof ExpressGatewayServiceInclude];
|
|
475
505
|
export declare const ServiceDeploymentRollbackMonitorsStatus: {
|
|
476
506
|
readonly DISABLED: "DISABLED";
|
|
477
507
|
readonly MONITORING: "MONITORING";
|
|
@@ -507,6 +537,15 @@ export declare const ServiceDeploymentStatus: {
|
|
|
507
537
|
};
|
|
508
538
|
export type ServiceDeploymentStatus =
|
|
509
539
|
(typeof ServiceDeploymentStatus)[keyof typeof ServiceDeploymentStatus];
|
|
540
|
+
export declare const ManagedResourceStatus: {
|
|
541
|
+
readonly ACTIVE: "ACTIVE";
|
|
542
|
+
readonly DELETED: "DELETED";
|
|
543
|
+
readonly DEPROVISIONING: "DEPROVISIONING";
|
|
544
|
+
readonly FAILED: "FAILED";
|
|
545
|
+
readonly PROVISIONING: "PROVISIONING";
|
|
546
|
+
};
|
|
547
|
+
export type ManagedResourceStatus =
|
|
548
|
+
(typeof ManagedResourceStatus)[keyof typeof ManagedResourceStatus];
|
|
510
549
|
export declare const ServiceField: {
|
|
511
550
|
readonly TAGS: "TAGS";
|
|
512
551
|
};
|
|
@@ -141,18 +141,18 @@ export declare class TaskSetNotFoundException extends __BaseException {
|
|
|
141
141
|
opts: __ExceptionOptionType<TaskSetNotFoundException, __BaseException>
|
|
142
142
|
);
|
|
143
143
|
}
|
|
144
|
-
export declare class
|
|
145
|
-
readonly name: "
|
|
144
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
145
|
+
readonly name: "ResourceNotFoundException";
|
|
146
146
|
readonly $fault: "client";
|
|
147
147
|
constructor(
|
|
148
|
-
opts: __ExceptionOptionType<
|
|
148
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
149
149
|
);
|
|
150
150
|
}
|
|
151
|
-
export declare class
|
|
152
|
-
readonly name: "
|
|
151
|
+
export declare class TargetNotConnectedException extends __BaseException {
|
|
152
|
+
readonly name: "TargetNotConnectedException";
|
|
153
153
|
readonly $fault: "client";
|
|
154
154
|
constructor(
|
|
155
|
-
opts: __ExceptionOptionType<
|
|
155
|
+
opts: __ExceptionOptionType<TargetNotConnectedException, __BaseException>
|
|
156
156
|
);
|
|
157
157
|
}
|
|
158
158
|
export declare class AttributeLimitExceededException extends __BaseException {
|
|
@@ -3,6 +3,7 @@ import {
|
|
|
3
3
|
AcceleratorManufacturer,
|
|
4
4
|
AcceleratorName,
|
|
5
5
|
AcceleratorType,
|
|
6
|
+
AccessType,
|
|
6
7
|
AgentUpdateStatus,
|
|
7
8
|
ApplicationProtocol,
|
|
8
9
|
AssignPublicIp,
|
|
@@ -33,6 +34,9 @@ import {
|
|
|
33
34
|
EFSTransitEncryption,
|
|
34
35
|
EnvironmentFileType,
|
|
35
36
|
ExecuteCommandLogging,
|
|
37
|
+
ExpressGatewayServiceInclude,
|
|
38
|
+
ExpressGatewayServiceScalingMetric,
|
|
39
|
+
ExpressGatewayServiceStatusCode,
|
|
36
40
|
FirelensConfigurationType,
|
|
37
41
|
HealthStatus,
|
|
38
42
|
InstanceGeneration,
|
|
@@ -46,6 +50,7 @@ import {
|
|
|
46
50
|
ManagedAgentName,
|
|
47
51
|
ManagedDraining,
|
|
48
52
|
ManagedInstancesMonitoringOptions,
|
|
53
|
+
ManagedResourceStatus,
|
|
49
54
|
ManagedScalingStatus,
|
|
50
55
|
ManagedTerminationProtection,
|
|
51
56
|
NetworkMode,
|
|
@@ -57,6 +62,7 @@ import {
|
|
|
57
62
|
PropagateMITags,
|
|
58
63
|
PropagateTags,
|
|
59
64
|
ProxyConfigurationType,
|
|
65
|
+
ResourceManagementType,
|
|
60
66
|
ResourceType,
|
|
61
67
|
ScaleUnit,
|
|
62
68
|
SchedulingStrategy,
|
|
@@ -298,6 +304,86 @@ export interface Cluster {
|
|
|
298
304
|
export interface CreateClusterResponse {
|
|
299
305
|
cluster?: Cluster | undefined;
|
|
300
306
|
}
|
|
307
|
+
export interface ExpressGatewayServiceNetworkConfiguration {
|
|
308
|
+
securityGroups?: string[] | undefined;
|
|
309
|
+
subnets?: string[] | undefined;
|
|
310
|
+
}
|
|
311
|
+
export interface ExpressGatewayServiceAwsLogsConfiguration {
|
|
312
|
+
logGroup: string | undefined;
|
|
313
|
+
logStreamPrefix: string | undefined;
|
|
314
|
+
}
|
|
315
|
+
export interface ExpressGatewayRepositoryCredentials {
|
|
316
|
+
credentialsParameter?: string | undefined;
|
|
317
|
+
}
|
|
318
|
+
export interface Secret {
|
|
319
|
+
name: string | undefined;
|
|
320
|
+
valueFrom: string | undefined;
|
|
321
|
+
}
|
|
322
|
+
export interface ExpressGatewayContainer {
|
|
323
|
+
image: string | undefined;
|
|
324
|
+
containerPort?: number | undefined;
|
|
325
|
+
awsLogsConfiguration?: ExpressGatewayServiceAwsLogsConfiguration | undefined;
|
|
326
|
+
repositoryCredentials?: ExpressGatewayRepositoryCredentials | undefined;
|
|
327
|
+
command?: string[] | undefined;
|
|
328
|
+
environment?: KeyValuePair[] | undefined;
|
|
329
|
+
secrets?: Secret[] | undefined;
|
|
330
|
+
}
|
|
331
|
+
export interface ExpressGatewayScalingTarget {
|
|
332
|
+
minTaskCount?: number | undefined;
|
|
333
|
+
maxTaskCount?: number | undefined;
|
|
334
|
+
autoScalingMetric?: ExpressGatewayServiceScalingMetric | undefined;
|
|
335
|
+
autoScalingTargetValue?: number | undefined;
|
|
336
|
+
}
|
|
337
|
+
export interface CreateExpressGatewayServiceRequest {
|
|
338
|
+
executionRoleArn: string | undefined;
|
|
339
|
+
infrastructureRoleArn: string | undefined;
|
|
340
|
+
serviceName?: string | undefined;
|
|
341
|
+
cluster?: string | undefined;
|
|
342
|
+
healthCheckPath?: string | undefined;
|
|
343
|
+
primaryContainer: ExpressGatewayContainer | undefined;
|
|
344
|
+
taskRoleArn?: string | undefined;
|
|
345
|
+
networkConfiguration?: ExpressGatewayServiceNetworkConfiguration | undefined;
|
|
346
|
+
cpu?: string | undefined;
|
|
347
|
+
memory?: string | undefined;
|
|
348
|
+
scalingTarget?: ExpressGatewayScalingTarget | undefined;
|
|
349
|
+
tags?: Tag[] | undefined;
|
|
350
|
+
}
|
|
351
|
+
export interface IngressPathSummary {
|
|
352
|
+
accessType: AccessType | undefined;
|
|
353
|
+
endpoint: string | undefined;
|
|
354
|
+
}
|
|
355
|
+
export interface ExpressGatewayServiceConfiguration {
|
|
356
|
+
serviceRevisionArn?: string | undefined;
|
|
357
|
+
executionRoleArn?: string | undefined;
|
|
358
|
+
taskRoleArn?: string | undefined;
|
|
359
|
+
cpu?: string | undefined;
|
|
360
|
+
memory?: string | undefined;
|
|
361
|
+
networkConfiguration?: ExpressGatewayServiceNetworkConfiguration | undefined;
|
|
362
|
+
healthCheckPath?: string | undefined;
|
|
363
|
+
primaryContainer?: ExpressGatewayContainer | undefined;
|
|
364
|
+
scalingTarget?: ExpressGatewayScalingTarget | undefined;
|
|
365
|
+
ingressPaths?: IngressPathSummary[] | undefined;
|
|
366
|
+
createdAt?: Date | undefined;
|
|
367
|
+
}
|
|
368
|
+
export interface ExpressGatewayServiceStatus {
|
|
369
|
+
statusCode?: ExpressGatewayServiceStatusCode | undefined;
|
|
370
|
+
statusReason?: string | undefined;
|
|
371
|
+
}
|
|
372
|
+
export interface ECSExpressGatewayService {
|
|
373
|
+
cluster?: string | undefined;
|
|
374
|
+
serviceName?: string | undefined;
|
|
375
|
+
serviceArn?: string | undefined;
|
|
376
|
+
infrastructureRoleArn?: string | undefined;
|
|
377
|
+
status?: ExpressGatewayServiceStatus | undefined;
|
|
378
|
+
currentDeployment?: string | undefined;
|
|
379
|
+
activeConfigurations?: ExpressGatewayServiceConfiguration[] | undefined;
|
|
380
|
+
tags?: Tag[] | undefined;
|
|
381
|
+
createdAt?: Date | undefined;
|
|
382
|
+
updatedAt?: Date | undefined;
|
|
383
|
+
}
|
|
384
|
+
export interface CreateExpressGatewayServiceResponse {
|
|
385
|
+
service?: ECSExpressGatewayService | undefined;
|
|
386
|
+
}
|
|
301
387
|
export interface DeploymentAlarms {
|
|
302
388
|
alarmNames: string[] | undefined;
|
|
303
389
|
rollback: boolean | undefined;
|
|
@@ -362,10 +448,6 @@ export interface ServiceConnectAccessLogConfiguration {
|
|
|
362
448
|
format: ServiceConnectAccessLoggingFormat | undefined;
|
|
363
449
|
includeQueryParameters?: ServiceConnectIncludeQueryParameters | undefined;
|
|
364
450
|
}
|
|
365
|
-
export interface Secret {
|
|
366
|
-
name: string | undefined;
|
|
367
|
-
valueFrom: string | undefined;
|
|
368
|
-
}
|
|
369
451
|
export interface LogConfiguration {
|
|
370
452
|
logDriver: LogDriver | undefined;
|
|
371
453
|
options?: Record<string, string> | undefined;
|
|
@@ -474,6 +556,12 @@ export interface CreateServiceRequest {
|
|
|
474
556
|
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
475
557
|
vpcLatticeConfigurations?: VpcLatticeConfiguration[] | undefined;
|
|
476
558
|
}
|
|
559
|
+
export interface ServiceCurrentRevisionSummary {
|
|
560
|
+
arn?: string | undefined;
|
|
561
|
+
requestedTaskCount?: number | undefined;
|
|
562
|
+
runningTaskCount?: number | undefined;
|
|
563
|
+
pendingTaskCount?: number | undefined;
|
|
564
|
+
}
|
|
477
565
|
export interface DeploymentEphemeralStorage {
|
|
478
566
|
kmsKeyId?: string | undefined;
|
|
479
567
|
}
|
|
@@ -561,6 +649,8 @@ export interface Service {
|
|
|
561
649
|
roleArn?: string | undefined;
|
|
562
650
|
events?: ServiceEvent[] | undefined;
|
|
563
651
|
createdAt?: Date | undefined;
|
|
652
|
+
currentServiceDeployment?: string | undefined;
|
|
653
|
+
currentServiceRevisions?: ServiceCurrentRevisionSummary[] | undefined;
|
|
564
654
|
placementConstraints?: PlacementConstraint[] | undefined;
|
|
565
655
|
placementStrategy?: PlacementStrategy[] | undefined;
|
|
566
656
|
networkConfiguration?: NetworkConfiguration | undefined;
|
|
@@ -573,6 +663,7 @@ export interface Service {
|
|
|
573
663
|
propagateTags?: PropagateTags | undefined;
|
|
574
664
|
enableExecuteCommand?: boolean | undefined;
|
|
575
665
|
availabilityZoneRebalancing?: AvailabilityZoneRebalancing | undefined;
|
|
666
|
+
resourceManagementType?: ResourceManagementType | undefined;
|
|
576
667
|
}
|
|
577
668
|
export interface CreateServiceResponse {
|
|
578
669
|
service?: Service | undefined;
|
|
@@ -634,6 +725,12 @@ export interface DeleteClusterRequest {
|
|
|
634
725
|
export interface DeleteClusterResponse {
|
|
635
726
|
cluster?: Cluster | undefined;
|
|
636
727
|
}
|
|
728
|
+
export interface DeleteExpressGatewayServiceRequest {
|
|
729
|
+
serviceArn: string | undefined;
|
|
730
|
+
}
|
|
731
|
+
export interface DeleteExpressGatewayServiceResponse {
|
|
732
|
+
service?: ECSExpressGatewayService | undefined;
|
|
733
|
+
}
|
|
637
734
|
export interface DeleteServiceRequest {
|
|
638
735
|
cluster?: string | undefined;
|
|
639
736
|
service: string | undefined;
|
|
@@ -964,6 +1061,13 @@ export interface DescribeContainerInstancesResponse {
|
|
|
964
1061
|
containerInstances?: ContainerInstance[] | undefined;
|
|
965
1062
|
failures?: Failure[] | undefined;
|
|
966
1063
|
}
|
|
1064
|
+
export interface DescribeExpressGatewayServiceRequest {
|
|
1065
|
+
serviceArn: string | undefined;
|
|
1066
|
+
include?: ExpressGatewayServiceInclude[] | undefined;
|
|
1067
|
+
}
|
|
1068
|
+
export interface DescribeExpressGatewayServiceResponse {
|
|
1069
|
+
service?: ECSExpressGatewayService | undefined;
|
|
1070
|
+
}
|
|
967
1071
|
export interface DescribeServiceDeploymentsRequest {
|
|
968
1072
|
serviceDeploymentArns: string[] | undefined;
|
|
969
1073
|
}
|
|
@@ -1021,6 +1125,102 @@ export interface ContainerImage {
|
|
|
1021
1125
|
imageDigest?: string | undefined;
|
|
1022
1126
|
image?: string | undefined;
|
|
1023
1127
|
}
|
|
1128
|
+
export interface ManagedApplicationAutoScalingPolicy {
|
|
1129
|
+
arn?: string | undefined;
|
|
1130
|
+
status: ManagedResourceStatus | undefined;
|
|
1131
|
+
statusReason?: string | undefined;
|
|
1132
|
+
updatedAt: Date | undefined;
|
|
1133
|
+
policyType: string | undefined;
|
|
1134
|
+
targetValue: number | undefined;
|
|
1135
|
+
metric: string | undefined;
|
|
1136
|
+
}
|
|
1137
|
+
export interface ManagedScalableTarget {
|
|
1138
|
+
arn?: string | undefined;
|
|
1139
|
+
status: ManagedResourceStatus | undefined;
|
|
1140
|
+
statusReason?: string | undefined;
|
|
1141
|
+
updatedAt: Date | undefined;
|
|
1142
|
+
minCapacity: number | undefined;
|
|
1143
|
+
maxCapacity: number | undefined;
|
|
1144
|
+
}
|
|
1145
|
+
export interface ManagedAutoScaling {
|
|
1146
|
+
scalableTarget?: ManagedScalableTarget | undefined;
|
|
1147
|
+
applicationAutoScalingPolicies?:
|
|
1148
|
+
| ManagedApplicationAutoScalingPolicy[]
|
|
1149
|
+
| undefined;
|
|
1150
|
+
}
|
|
1151
|
+
export interface ManagedCertificate {
|
|
1152
|
+
arn?: string | undefined;
|
|
1153
|
+
status: ManagedResourceStatus | undefined;
|
|
1154
|
+
statusReason?: string | undefined;
|
|
1155
|
+
updatedAt: Date | undefined;
|
|
1156
|
+
domainName: string | undefined;
|
|
1157
|
+
}
|
|
1158
|
+
export interface ManagedListener {
|
|
1159
|
+
arn?: string | undefined;
|
|
1160
|
+
status: ManagedResourceStatus | undefined;
|
|
1161
|
+
statusReason?: string | undefined;
|
|
1162
|
+
updatedAt: Date | undefined;
|
|
1163
|
+
}
|
|
1164
|
+
export interface ManagedLoadBalancer {
|
|
1165
|
+
arn?: string | undefined;
|
|
1166
|
+
status: ManagedResourceStatus | undefined;
|
|
1167
|
+
statusReason?: string | undefined;
|
|
1168
|
+
updatedAt: Date | undefined;
|
|
1169
|
+
scheme: string | undefined;
|
|
1170
|
+
subnetIds?: string[] | undefined;
|
|
1171
|
+
securityGroupIds?: string[] | undefined;
|
|
1172
|
+
}
|
|
1173
|
+
export interface ManagedSecurityGroup {
|
|
1174
|
+
arn?: string | undefined;
|
|
1175
|
+
status: ManagedResourceStatus | undefined;
|
|
1176
|
+
statusReason?: string | undefined;
|
|
1177
|
+
updatedAt: Date | undefined;
|
|
1178
|
+
}
|
|
1179
|
+
export interface ManagedListenerRule {
|
|
1180
|
+
arn?: string | undefined;
|
|
1181
|
+
status: ManagedResourceStatus | undefined;
|
|
1182
|
+
statusReason?: string | undefined;
|
|
1183
|
+
updatedAt: Date | undefined;
|
|
1184
|
+
}
|
|
1185
|
+
export interface ManagedTargetGroup {
|
|
1186
|
+
arn?: string | undefined;
|
|
1187
|
+
status: ManagedResourceStatus | undefined;
|
|
1188
|
+
statusReason?: string | undefined;
|
|
1189
|
+
updatedAt: Date | undefined;
|
|
1190
|
+
healthCheckPath: string | undefined;
|
|
1191
|
+
healthCheckPort: number | undefined;
|
|
1192
|
+
port: number | undefined;
|
|
1193
|
+
}
|
|
1194
|
+
export interface ManagedIngressPath {
|
|
1195
|
+
accessType: AccessType | undefined;
|
|
1196
|
+
endpoint: string | undefined;
|
|
1197
|
+
loadBalancer?: ManagedLoadBalancer | undefined;
|
|
1198
|
+
loadBalancerSecurityGroups?: ManagedSecurityGroup[] | undefined;
|
|
1199
|
+
certificate?: ManagedCertificate | undefined;
|
|
1200
|
+
listener?: ManagedListener | undefined;
|
|
1201
|
+
rule?: ManagedListenerRule | undefined;
|
|
1202
|
+
targetGroups?: ManagedTargetGroup[] | undefined;
|
|
1203
|
+
}
|
|
1204
|
+
export interface ManagedLogGroup {
|
|
1205
|
+
arn?: string | undefined;
|
|
1206
|
+
status: ManagedResourceStatus | undefined;
|
|
1207
|
+
statusReason?: string | undefined;
|
|
1208
|
+
updatedAt: Date | undefined;
|
|
1209
|
+
logGroupName: string | undefined;
|
|
1210
|
+
}
|
|
1211
|
+
export interface ManagedMetricAlarm {
|
|
1212
|
+
arn?: string | undefined;
|
|
1213
|
+
status: ManagedResourceStatus | undefined;
|
|
1214
|
+
statusReason?: string | undefined;
|
|
1215
|
+
updatedAt: Date | undefined;
|
|
1216
|
+
}
|
|
1217
|
+
export interface ECSManagedResources {
|
|
1218
|
+
ingressPaths?: ManagedIngressPath[] | undefined;
|
|
1219
|
+
autoScaling?: ManagedAutoScaling | undefined;
|
|
1220
|
+
metricAlarms?: ManagedMetricAlarm[] | undefined;
|
|
1221
|
+
serviceSecurityGroups?: ManagedSecurityGroup[] | undefined;
|
|
1222
|
+
logGroups?: ManagedLogGroup[] | undefined;
|
|
1223
|
+
}
|
|
1024
1224
|
export interface ServiceRevisionLoadBalancer {
|
|
1025
1225
|
targetGroupArn?: string | undefined;
|
|
1026
1226
|
productionListenerRule?: string | undefined;
|
|
@@ -1048,6 +1248,7 @@ export interface ServiceRevision {
|
|
|
1048
1248
|
createdAt?: Date | undefined;
|
|
1049
1249
|
vpcLatticeConfigurations?: VpcLatticeConfiguration[] | undefined;
|
|
1050
1250
|
resolvedConfiguration?: ResolvedConfiguration | undefined;
|
|
1251
|
+
ecsManagedResources?: ECSManagedResources | undefined;
|
|
1051
1252
|
}
|
|
1052
1253
|
export interface DescribeServiceRevisionsResponse {
|
|
1053
1254
|
serviceRevisions?: ServiceRevision[] | undefined;
|
|
@@ -1311,6 +1512,7 @@ export interface ListServicesRequest {
|
|
|
1311
1512
|
maxResults?: number | undefined;
|
|
1312
1513
|
launchType?: LaunchType | undefined;
|
|
1313
1514
|
schedulingStrategy?: SchedulingStrategy | undefined;
|
|
1515
|
+
resourceManagementType?: ResourceManagementType | undefined;
|
|
1314
1516
|
}
|
|
1315
1517
|
export interface ListServicesResponse {
|
|
1316
1518
|
serviceArns?: string[] | undefined;
|
|
@@ -1644,6 +1846,29 @@ export interface UpdateContainerInstancesStateResponse {
|
|
|
1644
1846
|
containerInstances?: ContainerInstance[] | undefined;
|
|
1645
1847
|
failures?: Failure[] | undefined;
|
|
1646
1848
|
}
|
|
1849
|
+
export interface UpdateExpressGatewayServiceRequest {
|
|
1850
|
+
serviceArn: string | undefined;
|
|
1851
|
+
executionRoleArn?: string | undefined;
|
|
1852
|
+
healthCheckPath?: string | undefined;
|
|
1853
|
+
primaryContainer?: ExpressGatewayContainer | undefined;
|
|
1854
|
+
taskRoleArn?: string | undefined;
|
|
1855
|
+
networkConfiguration?: ExpressGatewayServiceNetworkConfiguration | undefined;
|
|
1856
|
+
cpu?: string | undefined;
|
|
1857
|
+
memory?: string | undefined;
|
|
1858
|
+
scalingTarget?: ExpressGatewayScalingTarget | undefined;
|
|
1859
|
+
}
|
|
1860
|
+
export interface UpdatedExpressGatewayService {
|
|
1861
|
+
serviceArn?: string | undefined;
|
|
1862
|
+
cluster?: string | undefined;
|
|
1863
|
+
serviceName?: string | undefined;
|
|
1864
|
+
status?: ExpressGatewayServiceStatus | undefined;
|
|
1865
|
+
targetConfiguration?: ExpressGatewayServiceConfiguration | undefined;
|
|
1866
|
+
createdAt?: Date | undefined;
|
|
1867
|
+
updatedAt?: Date | undefined;
|
|
1868
|
+
}
|
|
1869
|
+
export interface UpdateExpressGatewayServiceResponse {
|
|
1870
|
+
service?: UpdatedExpressGatewayService | undefined;
|
|
1871
|
+
}
|
|
1647
1872
|
export interface UpdateServiceRequest {
|
|
1648
1873
|
cluster?: string | undefined;
|
|
1649
1874
|
service: string | undefined;
|
|
@@ -48,6 +48,8 @@ export declare var CreateCapacityProviderResponse: StaticStructureSchema;
|
|
|
48
48
|
export declare var CreateClusterRequest: StaticStructureSchema;
|
|
49
49
|
export declare var CreateClusterResponse: StaticStructureSchema;
|
|
50
50
|
export declare var CreatedAt: StaticStructureSchema;
|
|
51
|
+
export declare var CreateExpressGatewayServiceRequest: StaticStructureSchema;
|
|
52
|
+
export declare var CreateExpressGatewayServiceResponse: StaticStructureSchema;
|
|
51
53
|
export declare var CreateManagedInstancesProviderConfiguration: StaticStructureSchema;
|
|
52
54
|
export declare var CreateServiceRequest: StaticStructureSchema;
|
|
53
55
|
export declare var CreateServiceResponse: StaticStructureSchema;
|
|
@@ -61,6 +63,8 @@ export declare var DeleteCapacityProviderRequest: StaticStructureSchema;
|
|
|
61
63
|
export declare var DeleteCapacityProviderResponse: StaticStructureSchema;
|
|
62
64
|
export declare var DeleteClusterRequest: StaticStructureSchema;
|
|
63
65
|
export declare var DeleteClusterResponse: StaticStructureSchema;
|
|
66
|
+
export declare var DeleteExpressGatewayServiceRequest: StaticStructureSchema;
|
|
67
|
+
export declare var DeleteExpressGatewayServiceResponse: StaticStructureSchema;
|
|
64
68
|
export declare var DeleteServiceRequest: StaticStructureSchema;
|
|
65
69
|
export declare var DeleteServiceResponse: StaticStructureSchema;
|
|
66
70
|
export declare var DeleteTaskDefinitionsRequest: StaticStructureSchema;
|
|
@@ -84,6 +88,8 @@ export declare var DescribeClustersRequest: StaticStructureSchema;
|
|
|
84
88
|
export declare var DescribeClustersResponse: StaticStructureSchema;
|
|
85
89
|
export declare var DescribeContainerInstancesRequest: StaticStructureSchema;
|
|
86
90
|
export declare var DescribeContainerInstancesResponse: StaticStructureSchema;
|
|
91
|
+
export declare var DescribeExpressGatewayServiceRequest: StaticStructureSchema;
|
|
92
|
+
export declare var DescribeExpressGatewayServiceResponse: StaticStructureSchema;
|
|
87
93
|
export declare var DescribeServiceDeploymentsRequest: StaticStructureSchema;
|
|
88
94
|
export declare var DescribeServiceDeploymentsResponse: StaticStructureSchema;
|
|
89
95
|
export declare var DescribeServiceRevisionsRequest: StaticStructureSchema;
|
|
@@ -101,6 +107,8 @@ export declare var DiscoverPollEndpointRequest: StaticStructureSchema;
|
|
|
101
107
|
export declare var DiscoverPollEndpointResponse: StaticStructureSchema;
|
|
102
108
|
export declare var DockerVolumeConfiguration: StaticStructureSchema;
|
|
103
109
|
export declare var EBSTagSpecification: StaticStructureSchema;
|
|
110
|
+
export declare var ECSExpressGatewayService: StaticStructureSchema;
|
|
111
|
+
export declare var ECSManagedResources: StaticStructureSchema;
|
|
104
112
|
export declare var EFSAuthorizationConfig: StaticStructureSchema;
|
|
105
113
|
export declare var EFSVolumeConfiguration: StaticStructureSchema;
|
|
106
114
|
export declare var EnvironmentFile: StaticStructureSchema;
|
|
@@ -109,6 +117,13 @@ export declare var ExecuteCommandConfiguration: StaticStructureSchema;
|
|
|
109
117
|
export declare var ExecuteCommandLogConfiguration: StaticStructureSchema;
|
|
110
118
|
export declare var ExecuteCommandRequest: StaticStructureSchema;
|
|
111
119
|
export declare var ExecuteCommandResponse: StaticStructureSchema;
|
|
120
|
+
export declare var ExpressGatewayContainer: StaticStructureSchema;
|
|
121
|
+
export declare var ExpressGatewayRepositoryCredentials: StaticStructureSchema;
|
|
122
|
+
export declare var ExpressGatewayScalingTarget: StaticStructureSchema;
|
|
123
|
+
export declare var ExpressGatewayServiceAwsLogsConfiguration: StaticStructureSchema;
|
|
124
|
+
export declare var ExpressGatewayServiceConfiguration: StaticStructureSchema;
|
|
125
|
+
export declare var ExpressGatewayServiceNetworkConfiguration: StaticStructureSchema;
|
|
126
|
+
export declare var ExpressGatewayServiceStatus: StaticStructureSchema;
|
|
112
127
|
export declare var Failure: StaticStructureSchema;
|
|
113
128
|
export declare var FirelensConfiguration: StaticStructureSchema;
|
|
114
129
|
export declare var FSxWindowsFileServerAuthorizationConfig: StaticStructureSchema;
|
|
@@ -121,6 +136,7 @@ export declare var HostVolumeProperties: StaticStructureSchema;
|
|
|
121
136
|
export declare var InferenceAccelerator: StaticStructureSchema;
|
|
122
137
|
export declare var InferenceAcceleratorOverride: StaticStructureSchema;
|
|
123
138
|
export declare var InfrastructureOptimization: StaticStructureSchema;
|
|
139
|
+
export declare var IngressPathSummary: StaticStructureSchema;
|
|
124
140
|
export declare var InstanceHealthCheckResult: StaticStructureSchema;
|
|
125
141
|
export declare var InstanceLaunchTemplate: StaticStructureSchema;
|
|
126
142
|
export declare var InstanceLaunchTemplateUpdate: StaticStructureSchema;
|
|
@@ -157,11 +173,23 @@ export declare var LoadBalancer: StaticStructureSchema;
|
|
|
157
173
|
export declare var LogConfiguration: StaticStructureSchema;
|
|
158
174
|
export declare var ManagedAgent: StaticStructureSchema;
|
|
159
175
|
export declare var ManagedAgentStateChange: StaticStructureSchema;
|
|
176
|
+
export declare var ManagedApplicationAutoScalingPolicy: StaticStructureSchema;
|
|
177
|
+
export declare var ManagedAutoScaling: StaticStructureSchema;
|
|
178
|
+
export declare var ManagedCertificate: StaticStructureSchema;
|
|
179
|
+
export declare var ManagedIngressPath: StaticStructureSchema;
|
|
160
180
|
export declare var ManagedInstancesNetworkConfiguration: StaticStructureSchema;
|
|
161
181
|
export declare var ManagedInstancesProvider: StaticStructureSchema;
|
|
162
182
|
export declare var ManagedInstancesStorageConfiguration: StaticStructureSchema;
|
|
183
|
+
export declare var ManagedListener: StaticStructureSchema;
|
|
184
|
+
export declare var ManagedListenerRule: StaticStructureSchema;
|
|
185
|
+
export declare var ManagedLoadBalancer: StaticStructureSchema;
|
|
186
|
+
export declare var ManagedLogGroup: StaticStructureSchema;
|
|
187
|
+
export declare var ManagedMetricAlarm: StaticStructureSchema;
|
|
188
|
+
export declare var ManagedScalableTarget: StaticStructureSchema;
|
|
163
189
|
export declare var ManagedScaling: StaticStructureSchema;
|
|
190
|
+
export declare var ManagedSecurityGroup: StaticStructureSchema;
|
|
164
191
|
export declare var ManagedStorageConfiguration: StaticStructureSchema;
|
|
192
|
+
export declare var ManagedTargetGroup: StaticStructureSchema;
|
|
165
193
|
export declare var MemoryGiBPerVCpuRequest: StaticStructureSchema;
|
|
166
194
|
export declare var MemoryMiBRequest: StaticStructureSchema;
|
|
167
195
|
export declare var MissingVersionException: StaticErrorSchema;
|
|
@@ -217,6 +245,7 @@ export declare var ServiceConnectTestTrafficHeaderRules: StaticStructureSchema;
|
|
|
217
245
|
export declare var ServiceConnectTestTrafficRules: StaticStructureSchema;
|
|
218
246
|
export declare var ServiceConnectTlsCertificateAuthority: StaticStructureSchema;
|
|
219
247
|
export declare var ServiceConnectTlsConfiguration: StaticStructureSchema;
|
|
248
|
+
export declare var ServiceCurrentRevisionSummary: StaticStructureSchema;
|
|
220
249
|
export declare var ServiceDeployment: StaticStructureSchema;
|
|
221
250
|
export declare var ServiceDeploymentAlarms: StaticStructureSchema;
|
|
222
251
|
export declare var ServiceDeploymentBrief: StaticStructureSchema;
|
|
@@ -278,6 +307,9 @@ export declare var UpdateContainerAgentRequest: StaticStructureSchema;
|
|
|
278
307
|
export declare var UpdateContainerAgentResponse: StaticStructureSchema;
|
|
279
308
|
export declare var UpdateContainerInstancesStateRequest: StaticStructureSchema;
|
|
280
309
|
export declare var UpdateContainerInstancesStateResponse: StaticStructureSchema;
|
|
310
|
+
export declare var UpdatedExpressGatewayService: StaticStructureSchema;
|
|
311
|
+
export declare var UpdateExpressGatewayServiceRequest: StaticStructureSchema;
|
|
312
|
+
export declare var UpdateExpressGatewayServiceResponse: StaticStructureSchema;
|
|
281
313
|
export declare var UpdateInProgressException: StaticErrorSchema;
|
|
282
314
|
export declare var UpdateManagedInstancesProviderConfiguration: StaticStructureSchema;
|
|
283
315
|
export declare var UpdateServicePrimaryTaskSetRequest: StaticStructureSchema;
|
|
@@ -328,11 +360,14 @@ export declare var EBSTagSpecifications: StaticListSchema;
|
|
|
328
360
|
export declare var EnvironmentFiles: StaticListSchema;
|
|
329
361
|
export declare var EnvironmentVariables: StaticListSchema;
|
|
330
362
|
export declare var ExcludedInstanceTypeSet: StaticListSchema;
|
|
363
|
+
export declare var ExpressGatewayServiceConfigurations: StaticListSchema;
|
|
364
|
+
export declare var ExpressGatewayServiceIncludeList: number;
|
|
331
365
|
export declare var Failures: StaticListSchema;
|
|
332
366
|
export declare var GpuIds: number;
|
|
333
367
|
export declare var HostEntryList: StaticListSchema;
|
|
334
368
|
export declare var InferenceAcceleratorOverrides: StaticListSchema;
|
|
335
369
|
export declare var InferenceAccelerators: StaticListSchema;
|
|
370
|
+
export declare var IngressPathSummaries: StaticListSchema;
|
|
336
371
|
export declare var InstanceGenerationSet: StaticListSchema;
|
|
337
372
|
export declare var InstanceHealthCheckResultList: StaticListSchema;
|
|
338
373
|
export declare var IntegerList: number;
|
|
@@ -340,6 +375,12 @@ export declare var LoadBalancers: StaticListSchema;
|
|
|
340
375
|
export declare var LocalStorageTypeSet: StaticListSchema;
|
|
341
376
|
export declare var ManagedAgents: StaticListSchema;
|
|
342
377
|
export declare var ManagedAgentStateChanges: StaticListSchema;
|
|
378
|
+
export declare var ManagedApplicationAutoScalingPolicies: StaticListSchema;
|
|
379
|
+
export declare var ManagedIngressPaths: StaticListSchema;
|
|
380
|
+
export declare var ManagedLogGroups: StaticListSchema;
|
|
381
|
+
export declare var ManagedMetricAlarms: StaticListSchema;
|
|
382
|
+
export declare var ManagedSecurityGroups: StaticListSchema;
|
|
383
|
+
export declare var ManagedTargetGroups: StaticListSchema;
|
|
343
384
|
export declare var MountPointList: StaticListSchema;
|
|
344
385
|
export declare var NetworkBindings: StaticListSchema;
|
|
345
386
|
export declare var NetworkInterfaces: StaticListSchema;
|
|
@@ -357,6 +398,7 @@ export declare var SecretList: StaticListSchema;
|
|
|
357
398
|
export declare var ServiceConnectClientAliasList: StaticListSchema;
|
|
358
399
|
export declare var ServiceConnectServiceList: StaticListSchema;
|
|
359
400
|
export declare var ServiceConnectServiceResourceList: StaticListSchema;
|
|
401
|
+
export declare var ServiceCurrentRevisionSummaryList: StaticListSchema;
|
|
360
402
|
export declare var ServiceDeployments: StaticListSchema;
|
|
361
403
|
export declare var ServiceDeploymentsBrief: StaticListSchema;
|
|
362
404
|
export declare var ServiceDeploymentStatusList: number;
|
|
@@ -393,12 +435,14 @@ export declare var LogConfigurationOptionsMap: number;
|
|
|
393
435
|
export declare var StringMap: number;
|
|
394
436
|
export declare var CreateCapacityProvider: StaticOperationSchema;
|
|
395
437
|
export declare var CreateCluster: StaticOperationSchema;
|
|
438
|
+
export declare var CreateExpressGatewayService: StaticOperationSchema;
|
|
396
439
|
export declare var CreateService: StaticOperationSchema;
|
|
397
440
|
export declare var CreateTaskSet: StaticOperationSchema;
|
|
398
441
|
export declare var DeleteAccountSetting: StaticOperationSchema;
|
|
399
442
|
export declare var DeleteAttributes: StaticOperationSchema;
|
|
400
443
|
export declare var DeleteCapacityProvider: StaticOperationSchema;
|
|
401
444
|
export declare var DeleteCluster: StaticOperationSchema;
|
|
445
|
+
export declare var DeleteExpressGatewayService: StaticOperationSchema;
|
|
402
446
|
export declare var DeleteService: StaticOperationSchema;
|
|
403
447
|
export declare var DeleteTaskDefinitions: StaticOperationSchema;
|
|
404
448
|
export declare var DeleteTaskSet: StaticOperationSchema;
|
|
@@ -407,6 +451,7 @@ export declare var DeregisterTaskDefinition: StaticOperationSchema;
|
|
|
407
451
|
export declare var DescribeCapacityProviders: StaticOperationSchema;
|
|
408
452
|
export declare var DescribeClusters: StaticOperationSchema;
|
|
409
453
|
export declare var DescribeContainerInstances: StaticOperationSchema;
|
|
454
|
+
export declare var DescribeExpressGatewayService: StaticOperationSchema;
|
|
410
455
|
export declare var DescribeServiceDeployments: StaticOperationSchema;
|
|
411
456
|
export declare var DescribeServiceRevisions: StaticOperationSchema;
|
|
412
457
|
export declare var DescribeServices: StaticOperationSchema;
|
|
@@ -447,6 +492,7 @@ export declare var UpdateCluster: StaticOperationSchema;
|
|
|
447
492
|
export declare var UpdateClusterSettings: StaticOperationSchema;
|
|
448
493
|
export declare var UpdateContainerAgent: StaticOperationSchema;
|
|
449
494
|
export declare var UpdateContainerInstancesState: StaticOperationSchema;
|
|
495
|
+
export declare var UpdateExpressGatewayService: StaticOperationSchema;
|
|
450
496
|
export declare var UpdateService: StaticOperationSchema;
|
|
451
497
|
export declare var UpdateServicePrimaryTaskSet: StaticOperationSchema;
|
|
452
498
|
export declare var UpdateTaskProtection: StaticOperationSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-ecs",
|
|
3
3
|
"description": "AWS SDK for JavaScript Ecs Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.937.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-ecs",
|
|
@@ -20,17 +20,17 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/core": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
26
|
-
"@aws-sdk/middleware-logger": "3.
|
|
27
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
28
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
29
|
-
"@aws-sdk/region-config-resolver": "3.
|
|
30
|
-
"@aws-sdk/types": "3.
|
|
31
|
-
"@aws-sdk/util-endpoints": "3.
|
|
32
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
23
|
+
"@aws-sdk/core": "3.936.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.936.0",
|
|
25
|
+
"@aws-sdk/middleware-host-header": "3.936.0",
|
|
26
|
+
"@aws-sdk/middleware-logger": "3.936.0",
|
|
27
|
+
"@aws-sdk/middleware-recursion-detection": "3.936.0",
|
|
28
|
+
"@aws-sdk/middleware-user-agent": "3.936.0",
|
|
29
|
+
"@aws-sdk/region-config-resolver": "3.936.0",
|
|
30
|
+
"@aws-sdk/types": "3.936.0",
|
|
31
|
+
"@aws-sdk/util-endpoints": "3.936.0",
|
|
32
|
+
"@aws-sdk/util-user-agent-browser": "3.936.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-node": "3.936.0",
|
|
34
34
|
"@smithy/config-resolver": "^4.4.3",
|
|
35
35
|
"@smithy/core": "^3.18.5",
|
|
36
36
|
"@smithy/fetch-http-handler": "^5.3.6",
|