@aws-sdk/client-ecs 3.686.0 → 3.691.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.
|
@@ -25,19 +25,19 @@ import {
|
|
|
25
25
|
} from "./models_0";
|
|
26
26
|
export interface UpdateClusterRequest {
|
|
27
27
|
cluster: string | undefined;
|
|
28
|
-
settings?: ClusterSetting[];
|
|
29
|
-
configuration?: ClusterConfiguration;
|
|
30
|
-
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest;
|
|
28
|
+
settings?: ClusterSetting[] | undefined;
|
|
29
|
+
configuration?: ClusterConfiguration | undefined;
|
|
30
|
+
serviceConnectDefaults?: ClusterServiceConnectDefaultsRequest | undefined;
|
|
31
31
|
}
|
|
32
32
|
export interface UpdateClusterResponse {
|
|
33
|
-
cluster?: Cluster;
|
|
33
|
+
cluster?: Cluster | undefined;
|
|
34
34
|
}
|
|
35
35
|
export interface UpdateClusterSettingsRequest {
|
|
36
36
|
cluster: string | undefined;
|
|
37
37
|
settings: ClusterSetting[] | undefined;
|
|
38
38
|
}
|
|
39
39
|
export interface UpdateClusterSettingsResponse {
|
|
40
|
-
cluster?: Cluster;
|
|
40
|
+
cluster?: Cluster | undefined;
|
|
41
41
|
}
|
|
42
42
|
export declare class MissingVersionException extends __BaseException {
|
|
43
43
|
readonly name: "MissingVersionException";
|
|
@@ -54,44 +54,44 @@ export declare class NoUpdateAvailableException extends __BaseException {
|
|
|
54
54
|
);
|
|
55
55
|
}
|
|
56
56
|
export interface UpdateContainerAgentRequest {
|
|
57
|
-
cluster?: string;
|
|
57
|
+
cluster?: string | undefined;
|
|
58
58
|
containerInstance: string | undefined;
|
|
59
59
|
}
|
|
60
60
|
export interface UpdateContainerAgentResponse {
|
|
61
|
-
containerInstance?: ContainerInstance;
|
|
61
|
+
containerInstance?: ContainerInstance | undefined;
|
|
62
62
|
}
|
|
63
63
|
export interface UpdateContainerInstancesStateRequest {
|
|
64
|
-
cluster?: string;
|
|
64
|
+
cluster?: string | undefined;
|
|
65
65
|
containerInstances: string[] | undefined;
|
|
66
66
|
status: ContainerInstanceStatus | undefined;
|
|
67
67
|
}
|
|
68
68
|
export interface UpdateContainerInstancesStateResponse {
|
|
69
|
-
containerInstances?: ContainerInstance[];
|
|
70
|
-
failures?: Failure[];
|
|
69
|
+
containerInstances?: ContainerInstance[] | undefined;
|
|
70
|
+
failures?: Failure[] | undefined;
|
|
71
71
|
}
|
|
72
72
|
export interface UpdateServiceRequest {
|
|
73
|
-
cluster?: string;
|
|
73
|
+
cluster?: string | undefined;
|
|
74
74
|
service: string | undefined;
|
|
75
|
-
desiredCount?: number;
|
|
76
|
-
taskDefinition?: string;
|
|
77
|
-
capacityProviderStrategy?: CapacityProviderStrategyItem[];
|
|
78
|
-
deploymentConfiguration?: DeploymentConfiguration;
|
|
79
|
-
networkConfiguration?: NetworkConfiguration;
|
|
80
|
-
placementConstraints?: PlacementConstraint[];
|
|
81
|
-
placementStrategy?: PlacementStrategy[];
|
|
82
|
-
platformVersion?: string;
|
|
83
|
-
forceNewDeployment?: boolean;
|
|
84
|
-
healthCheckGracePeriodSeconds?: number;
|
|
85
|
-
enableExecuteCommand?: boolean;
|
|
86
|
-
enableECSManagedTags?: boolean;
|
|
87
|
-
loadBalancers?: LoadBalancer[];
|
|
88
|
-
propagateTags?: PropagateTags;
|
|
89
|
-
serviceRegistries?: ServiceRegistry[];
|
|
90
|
-
serviceConnectConfiguration?: ServiceConnectConfiguration;
|
|
91
|
-
volumeConfigurations?: ServiceVolumeConfiguration[];
|
|
75
|
+
desiredCount?: number | undefined;
|
|
76
|
+
taskDefinition?: string | undefined;
|
|
77
|
+
capacityProviderStrategy?: CapacityProviderStrategyItem[] | undefined;
|
|
78
|
+
deploymentConfiguration?: DeploymentConfiguration | undefined;
|
|
79
|
+
networkConfiguration?: NetworkConfiguration | undefined;
|
|
80
|
+
placementConstraints?: PlacementConstraint[] | undefined;
|
|
81
|
+
placementStrategy?: PlacementStrategy[] | undefined;
|
|
82
|
+
platformVersion?: string | undefined;
|
|
83
|
+
forceNewDeployment?: boolean | undefined;
|
|
84
|
+
healthCheckGracePeriodSeconds?: number | undefined;
|
|
85
|
+
enableExecuteCommand?: boolean | undefined;
|
|
86
|
+
enableECSManagedTags?: boolean | undefined;
|
|
87
|
+
loadBalancers?: LoadBalancer[] | undefined;
|
|
88
|
+
propagateTags?: PropagateTags | undefined;
|
|
89
|
+
serviceRegistries?: ServiceRegistry[] | undefined;
|
|
90
|
+
serviceConnectConfiguration?: ServiceConnectConfiguration | undefined;
|
|
91
|
+
volumeConfigurations?: ServiceVolumeConfiguration[] | undefined;
|
|
92
92
|
}
|
|
93
93
|
export interface UpdateServiceResponse {
|
|
94
|
-
service?: Service;
|
|
94
|
+
service?: Service | undefined;
|
|
95
95
|
}
|
|
96
96
|
export interface UpdateServicePrimaryTaskSetRequest {
|
|
97
97
|
cluster: string | undefined;
|
|
@@ -99,17 +99,17 @@ export interface UpdateServicePrimaryTaskSetRequest {
|
|
|
99
99
|
primaryTaskSet: string | undefined;
|
|
100
100
|
}
|
|
101
101
|
export interface UpdateServicePrimaryTaskSetResponse {
|
|
102
|
-
taskSet?: TaskSet;
|
|
102
|
+
taskSet?: TaskSet | undefined;
|
|
103
103
|
}
|
|
104
104
|
export interface UpdateTaskProtectionRequest {
|
|
105
105
|
cluster: string | undefined;
|
|
106
106
|
tasks: string[] | undefined;
|
|
107
107
|
protectionEnabled: boolean | undefined;
|
|
108
|
-
expiresInMinutes?: number;
|
|
108
|
+
expiresInMinutes?: number | undefined;
|
|
109
109
|
}
|
|
110
110
|
export interface UpdateTaskProtectionResponse {
|
|
111
|
-
protectedTasks?: ProtectedTask[];
|
|
112
|
-
failures?: Failure[];
|
|
111
|
+
protectedTasks?: ProtectedTask[] | undefined;
|
|
112
|
+
failures?: Failure[] | undefined;
|
|
113
113
|
}
|
|
114
114
|
export interface UpdateTaskSetRequest {
|
|
115
115
|
cluster: string | undefined;
|
|
@@ -118,5 +118,5 @@ export interface UpdateTaskSetRequest {
|
|
|
118
118
|
scale: Scale | undefined;
|
|
119
119
|
}
|
|
120
120
|
export interface UpdateTaskSetResponse {
|
|
121
|
-
taskSet?: TaskSet;
|
|
121
|
+
taskSet?: TaskSet | undefined;
|
|
122
122
|
}
|
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.691.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,19 +20,19 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
23
|
-
"@aws-sdk/client-sso-oidc": "3.
|
|
24
|
-
"@aws-sdk/client-sts": "3.
|
|
25
|
-
"@aws-sdk/core": "3.
|
|
26
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
23
|
+
"@aws-sdk/client-sso-oidc": "3.691.0",
|
|
24
|
+
"@aws-sdk/client-sts": "3.691.0",
|
|
25
|
+
"@aws-sdk/core": "3.691.0",
|
|
26
|
+
"@aws-sdk/credential-provider-node": "3.691.0",
|
|
27
27
|
"@aws-sdk/middleware-host-header": "3.686.0",
|
|
28
28
|
"@aws-sdk/middleware-logger": "3.686.0",
|
|
29
29
|
"@aws-sdk/middleware-recursion-detection": "3.686.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.691.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.686.0",
|
|
32
32
|
"@aws-sdk/types": "3.686.0",
|
|
33
33
|
"@aws-sdk/util-endpoints": "3.686.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.686.0",
|
|
35
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
35
|
+
"@aws-sdk/util-user-agent-node": "3.691.0",
|
|
36
36
|
"@smithy/config-resolver": "^3.0.10",
|
|
37
37
|
"@smithy/core": "^2.5.1",
|
|
38
38
|
"@smithy/fetch-http-handler": "^4.0.0",
|