@aws-sdk/client-ecs 3.1070.0 → 3.1072.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist-cjs/schemas/schemas_0.js +39 -17
- package/dist-es/schemas/schemas_0.js +37 -17
- package/dist-types/commands/ContinueServiceDeploymentCommand.d.ts +4 -4
- package/dist-types/commands/CreateExpressGatewayServiceCommand.d.ts +3 -1
- package/dist-types/commands/CreateServiceCommand.d.ts +51 -0
- package/dist-types/commands/DeleteExpressGatewayServiceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeExpressGatewayServiceCommand.d.ts +1 -0
- package/dist-types/commands/DescribeServiceDeploymentsCommand.d.ts +1 -1
- package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +50 -0
- package/dist-types/commands/StopServiceDeploymentCommand.d.ts +1 -1
- package/dist-types/commands/UpdateExpressGatewayServiceCommand.d.ts +2 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +34 -0
- package/dist-types/models/errors.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +68 -133
- package/dist-types/models/models_1.d.ts +123 -1
- package/dist-types/schemas/schemas_0.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +14 -27
- package/dist-types/ts3.4/models/models_1.d.ts +34 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +2 -0
- package/package.json +3 -3
|
@@ -20,13 +20,17 @@ import {
|
|
|
20
20
|
Attribute,
|
|
21
21
|
CapacityProviderStrategyItem,
|
|
22
22
|
ContainerDefinition,
|
|
23
|
+
ContainerImage,
|
|
24
|
+
DeploymentEphemeralStorage,
|
|
23
25
|
EBSTagSpecification,
|
|
26
|
+
ECSManagedResources,
|
|
24
27
|
EnvironmentFile,
|
|
25
28
|
EphemeralStorage,
|
|
26
29
|
Failure,
|
|
27
30
|
InferenceAccelerator,
|
|
28
31
|
KeyValuePair,
|
|
29
32
|
LoadBalancer,
|
|
33
|
+
MonitoringConfiguration,
|
|
30
34
|
NetworkBinding,
|
|
31
35
|
NetworkConfiguration,
|
|
32
36
|
PlacementConstraint,
|
|
@@ -35,14 +39,43 @@ import {
|
|
|
35
39
|
ResourceRequirement,
|
|
36
40
|
RuntimePlatform,
|
|
37
41
|
Scale,
|
|
42
|
+
ServiceConnectConfiguration,
|
|
38
43
|
ServiceRegistry,
|
|
39
|
-
|
|
44
|
+
ServiceRevisionLoadBalancer,
|
|
45
|
+
ServiceVolumeConfiguration,
|
|
40
46
|
Tag,
|
|
41
47
|
TaskDefinition,
|
|
42
48
|
TaskDefinitionPlacementConstraint,
|
|
43
49
|
TaskSet,
|
|
44
50
|
Volume,
|
|
51
|
+
VpcLatticeConfiguration,
|
|
45
52
|
} from "./models_0";
|
|
53
|
+
export interface ResolvedConfiguration {
|
|
54
|
+
loadBalancers?: ServiceRevisionLoadBalancer[] | undefined;
|
|
55
|
+
}
|
|
56
|
+
export interface ServiceRevision {
|
|
57
|
+
serviceRevisionArn?: string | undefined;
|
|
58
|
+
serviceArn?: string | undefined;
|
|
59
|
+
clusterArn?: string | undefined;
|
|
60
|
+
taskDefinition?: string | undefined;
|
|
61
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
62
|
+
launchType?: LaunchType | undefined;
|
|
63
|
+
platformVersion?: string | undefined;
|
|
64
|
+
platformFamily?: string | undefined;
|
|
65
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
66
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
67
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
68
|
+
containerImages?: ContainerImage[] | undefined;
|
|
69
|
+
guardDutyEnabled?: boolean | undefined;
|
|
70
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration | undefined;
|
|
71
|
+
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
72
|
+
fargateEphemeralStorage?: DeploymentEphemeralStorage | undefined;
|
|
73
|
+
createdAt?: Date | undefined;
|
|
74
|
+
vpcLatticeConfigurations?: VpcLatticeConfiguration[] | undefined;
|
|
75
|
+
resolvedConfiguration?: ResolvedConfiguration | undefined;
|
|
76
|
+
ecsManagedResources?: ECSManagedResources | undefined;
|
|
77
|
+
monitoring?: MonitoringConfiguration | undefined;
|
|
78
|
+
}
|
|
46
79
|
export interface DescribeServiceRevisionsResponse {
|
|
47
80
|
serviceRevisions?: ServiceRevision[] | undefined;
|
|
48
81
|
failures?: Failure[] | undefined;
|
|
@@ -257,6 +257,8 @@ export declare var ManagedStorageConfiguration$: StaticStructureSchema;
|
|
|
257
257
|
export declare var ManagedTargetGroup$: StaticStructureSchema;
|
|
258
258
|
export declare var MemoryGiBPerVCpuRequest$: StaticStructureSchema;
|
|
259
259
|
export declare var MemoryMiBRequest$: StaticStructureSchema;
|
|
260
|
+
export declare var MetricConfiguration$: StaticStructureSchema;
|
|
261
|
+
export declare var MonitoringConfiguration$: StaticStructureSchema;
|
|
260
262
|
export declare var MountPoint$: StaticStructureSchema;
|
|
261
263
|
export declare var NetworkBandwidthGbpsRequest$: StaticStructureSchema;
|
|
262
264
|
export declare var NetworkBinding$: StaticStructureSchema;
|
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.1072.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.974.22",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.57",
|
|
28
28
|
"@aws-sdk/types": "^3.973.13",
|
|
29
29
|
"@smithy/core": "^3.24.6",
|
|
30
30
|
"@smithy/fetch-http-handler": "^5.4.6",
|