@aws-sdk/client-ecs 3.1018.0 → 3.1020.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/auth/httpAuthSchemeProvider.js +2 -2
- package/dist-cjs/runtimeConfig.js +4 -3
- package/dist-cjs/runtimeConfig.shared.js +2 -2
- package/dist-cjs/schemas/schemas_0.js +17 -9
- package/dist-es/ECS.js +1 -1
- package/dist-es/auth/httpAuthSchemeProvider.js +1 -1
- package/dist-es/runtimeConfig.js +2 -1
- package/dist-es/runtimeConfig.shared.js +1 -1
- package/dist-es/schemas/schemas_0.js +12 -4
- package/dist-es/waiters/waitForServicesInactive.js +1 -1
- package/dist-es/waiters/waitForServicesStable.js +1 -1
- package/dist-es/waiters/waitForTasksRunning.js +1 -1
- package/dist-es/waiters/waitForTasksStopped.js +1 -1
- package/dist-types/ECS.d.ts +64 -64
- package/dist-types/ECSClient.d.ts +67 -67
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/commands/CreateCapacityProviderCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCapacityProviderCommand.d.ts +3 -0
- package/dist-types/commands/DescribeCapacityProvidersCommand.d.ts +3 -0
- package/dist-types/commands/UpdateCapacityProviderCommand.d.ts +6 -0
- package/dist-types/index.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +26 -5
- package/dist-types/pagination/ListAccountSettingsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListAttributesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListClustersPaginator.d.ts +1 -1
- package/dist-types/pagination/ListContainerInstancesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListServicesByNamespacePaginator.d.ts +1 -1
- package/dist-types/pagination/ListServicesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTaskDefinitionFamiliesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTaskDefinitionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTasksPaginator.d.ts +1 -1
- package/dist-types/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/runtimeConfig.d.ts +1 -1
- package/dist-types/runtimeConfig.native.d.ts +1 -1
- package/dist-types/schemas/schemas_0.d.ts +1 -0
- package/dist-types/ts3.4/ECSClient.d.ts +2 -3
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +1 -1
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +1 -1
- package/dist-types/ts3.4/models/models_0.d.ts +9 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.d.ts +1 -1
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +1 -1
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +1 -0
- package/dist-types/waiters/waitForServicesInactive.d.ts +3 -3
- package/dist-types/waiters/waitForServicesStable.d.ts +3 -3
- package/dist-types/waiters/waitForTasksRunning.d.ts +3 -3
- package/dist-types/waiters/waitForTasksStopped.d.ts +3 -3
- package/package.json +14 -14
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.resolveHttpAuthSchemeConfig = exports.defaultECSHttpAuthSchemeProvider = exports.defaultECSHttpAuthSchemeParametersProvider = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const util_middleware_1 = require("@smithy/util-middleware");
|
|
6
6
|
const defaultECSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
7
7
|
return {
|
|
@@ -38,7 +38,7 @@ const defaultECSHttpAuthSchemeProvider = (authParameters) => {
|
|
|
38
38
|
};
|
|
39
39
|
exports.defaultECSHttpAuthSchemeProvider = defaultECSHttpAuthSchemeProvider;
|
|
40
40
|
const resolveHttpAuthSchemeConfig = (config) => {
|
|
41
|
-
const config_0 = (0,
|
|
41
|
+
const config_0 = (0, httpAuthSchemes_1.resolveAwsSdkSigV4Config)(config);
|
|
42
42
|
return Object.assign(config_0, {
|
|
43
43
|
authSchemePreference: (0, util_middleware_1.normalizeProvider)(config.authSchemePreference ?? []),
|
|
44
44
|
});
|
|
@@ -3,7 +3,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const package_json_1 = tslib_1.__importDefault(require("../package.json"));
|
|
6
|
-
const
|
|
6
|
+
const client_1 = require("@aws-sdk/core/client");
|
|
7
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
7
8
|
const credential_provider_node_1 = require("@aws-sdk/credential-provider-node");
|
|
8
9
|
const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
|
|
9
10
|
const config_resolver_1 = require("@smithy/config-resolver");
|
|
@@ -21,7 +22,7 @@ const getRuntimeConfig = (config) => {
|
|
|
21
22
|
const defaultsMode = (0, util_defaults_mode_node_1.resolveDefaultsModeConfig)(config);
|
|
22
23
|
const defaultConfigProvider = () => defaultsMode().then(smithy_client_1.loadConfigsForDefaultMode);
|
|
23
24
|
const clientSharedValues = (0, runtimeConfig_shared_1.getRuntimeConfig)(config);
|
|
24
|
-
(0,
|
|
25
|
+
(0, client_1.emitWarningIfUnsupportedVersion)(process.version);
|
|
25
26
|
const loaderConfig = {
|
|
26
27
|
profile: config?.profile,
|
|
27
28
|
logger: clientSharedValues.logger,
|
|
@@ -31,7 +32,7 @@ const getRuntimeConfig = (config) => {
|
|
|
31
32
|
...config,
|
|
32
33
|
runtime: "node",
|
|
33
34
|
defaultsMode,
|
|
34
|
-
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(
|
|
35
|
+
authSchemePreference: config?.authSchemePreference ?? (0, node_config_provider_1.loadConfig)(httpAuthSchemes_1.NODE_AUTH_SCHEME_PREFERENCE_OPTIONS, loaderConfig),
|
|
35
36
|
bodyLengthChecker: config?.bodyLengthChecker ?? util_body_length_node_1.calculateBodyLength,
|
|
36
37
|
credentialDefaultProvider: config?.credentialDefaultProvider ?? credential_provider_node_1.defaultProvider,
|
|
37
38
|
defaultUserAgentProvider: config?.defaultUserAgentProvider ?? (0, util_user_agent_node_1.createDefaultUserAgentProvider)({ serviceId: clientSharedValues.serviceId, clientVersion: package_json_1.default.version }),
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.getRuntimeConfig = void 0;
|
|
4
|
-
const
|
|
4
|
+
const httpAuthSchemes_1 = require("@aws-sdk/core/httpAuthSchemes");
|
|
5
5
|
const protocols_1 = require("@aws-sdk/core/protocols");
|
|
6
6
|
const smithy_client_1 = require("@smithy/smithy-client");
|
|
7
7
|
const url_parser_1 = require("@smithy/url-parser");
|
|
@@ -23,7 +23,7 @@ const getRuntimeConfig = (config) => {
|
|
|
23
23
|
{
|
|
24
24
|
schemeId: "aws.auth#sigv4",
|
|
25
25
|
identityProvider: (ipc) => ipc.getIdentityProvider("aws.auth#sigv4"),
|
|
26
|
-
signer: new
|
|
26
|
+
signer: new httpAuthSchemes_1.AwsSdkSigV4Signer(),
|
|
27
27
|
},
|
|
28
28
|
],
|
|
29
29
|
logger: config?.logger ?? new smithy_client_1.NoOpLogger(),
|
|
@@ -3,11 +3,11 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.Container$ = exports.ClusterSetting$ = exports.ClusterServiceConnectDefaultsRequest$ = exports.ClusterServiceConnectDefaults$ = exports.ClusterConfiguration$ = exports.Cluster$ = exports.CapacityReservationRequest$ = exports.CapacityProviderStrategyItem$ = exports.CapacityProvider$ = exports.CanaryConfiguration$ = exports.BaselineEbsBandwidthMbpsRequest$ = exports.AwsVpcConfiguration$ = exports.AutoScalingGroupProviderUpdate$ = exports.AutoScalingGroupProvider$ = exports.Attribute$ = exports.AttachmentStateChange$ = exports.Attachment$ = exports.AdvancedConfiguration$ = exports.AcceleratorTotalMemoryMiBRequest$ = exports.AcceleratorCountRequest$ = exports.errorTypeRegistries = exports.UpdateInProgressException$ = exports.UnsupportedFeatureException$ = exports.TaskSetNotFoundException$ = exports.TargetNotFoundException$ = exports.TargetNotConnectedException$ = exports.ServiceNotFoundException$ = exports.ServiceNotActiveException$ = exports.ServiceDeploymentNotFoundException$ = exports.ServerException$ = exports.ResourceNotFoundException$ = exports.ResourceInUseException$ = exports.PlatformUnknownException$ = exports.PlatformTaskDefinitionIncompatibilityException$ = exports.NoUpdateAvailableException$ = exports.NamespaceNotFoundException$ = exports.MissingVersionException$ = exports.LimitExceededException$ = exports.InvalidParameterException$ = exports.ConflictException$ = exports.ClusterNotFoundException$ = exports.ClusterContainsTasksException$ = exports.ClusterContainsServicesException$ = exports.ClusterContainsContainerInstancesException$ = exports.ClusterContainsCapacityProviderException$ = exports.ClientException$ = exports.BlockedException$ = exports.AttributeLimitExceededException$ = exports.AccessDeniedException$ = exports.ECSServiceException$ = void 0;
|
|
4
4
|
exports.DescribeClustersRequest$ = exports.DescribeCapacityProvidersResponse$ = exports.DescribeCapacityProvidersRequest$ = exports.DeregisterTaskDefinitionResponse$ = exports.DeregisterTaskDefinitionRequest$ = exports.DeregisterContainerInstanceResponse$ = exports.DeregisterContainerInstanceRequest$ = exports.DeploymentLifecycleHook$ = exports.DeploymentEphemeralStorage$ = exports.DeploymentController$ = exports.DeploymentConfiguration$ = exports.DeploymentCircuitBreaker$ = exports.DeploymentAlarms$ = exports.Deployment$ = exports.DeleteTaskSetResponse$ = exports.DeleteTaskSetRequest$ = exports.DeleteTaskDefinitionsResponse$ = exports.DeleteTaskDefinitionsRequest$ = exports.DeleteServiceResponse$ = exports.DeleteServiceRequest$ = exports.DeleteExpressGatewayServiceResponse$ = exports.DeleteExpressGatewayServiceRequest$ = exports.DeleteClusterResponse$ = exports.DeleteClusterRequest$ = exports.DeleteCapacityProviderResponse$ = exports.DeleteCapacityProviderRequest$ = exports.DeleteAttributesResponse$ = exports.DeleteAttributesRequest$ = exports.DeleteAccountSettingResponse$ = exports.DeleteAccountSettingRequest$ = exports.CreateTaskSetResponse$ = exports.CreateTaskSetRequest$ = exports.CreateServiceResponse$ = exports.CreateServiceRequest$ = exports.CreateManagedInstancesProviderConfiguration$ = exports.CreateExpressGatewayServiceResponse$ = exports.CreateExpressGatewayServiceRequest$ = exports.CreatedAt$ = exports.CreateClusterResponse$ = exports.CreateClusterRequest$ = exports.CreateCapacityProviderResponse$ = exports.CreateCapacityProviderRequest$ = exports.ContainerStateChange$ = exports.ContainerRestartPolicy$ = exports.ContainerOverride$ = exports.ContainerInstanceHealthStatus$ = exports.ContainerInstance$ = exports.ContainerImage$ = exports.ContainerDependency$ = exports.ContainerDefinition$ = void 0;
|
|
5
5
|
exports.InferenceAcceleratorOverride$ = exports.InferenceAccelerator$ = exports.HostVolumeProperties$ = exports.HostEntry$ = exports.HealthCheck$ = exports.GetTaskProtectionResponse$ = exports.GetTaskProtectionRequest$ = exports.FSxWindowsFileServerVolumeConfiguration$ = exports.FSxWindowsFileServerAuthorizationConfig$ = exports.FirelensConfiguration$ = exports.Failure$ = exports.ExpressGatewayServiceStatus$ = exports.ExpressGatewayServiceNetworkConfiguration$ = exports.ExpressGatewayServiceConfiguration$ = exports.ExpressGatewayServiceAwsLogsConfiguration$ = exports.ExpressGatewayScalingTarget$ = exports.ExpressGatewayRepositoryCredentials$ = exports.ExpressGatewayContainer$ = exports.ExecuteCommandResponse$ = exports.ExecuteCommandRequest$ = exports.ExecuteCommandLogConfiguration$ = exports.ExecuteCommandConfiguration$ = exports.EphemeralStorage$ = exports.EnvironmentFile$ = exports.EFSVolumeConfiguration$ = exports.EFSAuthorizationConfig$ = exports.ECSManagedResources$ = exports.ECSExpressGatewayService$ = exports.EBSTagSpecification$ = exports.DockerVolumeConfiguration$ = exports.DiscoverPollEndpointResponse$ = exports.DiscoverPollEndpointRequest$ = exports.Device$ = exports.DescribeTasksResponse$ = exports.DescribeTasksRequest$ = exports.DescribeTaskSetsResponse$ = exports.DescribeTaskSetsRequest$ = exports.DescribeTaskDefinitionResponse$ = exports.DescribeTaskDefinitionRequest$ = exports.DescribeServicesResponse$ = exports.DescribeServicesRequest$ = exports.DescribeServiceRevisionsResponse$ = exports.DescribeServiceRevisionsRequest$ = exports.DescribeServiceDeploymentsResponse$ = exports.DescribeServiceDeploymentsRequest$ = exports.DescribeExpressGatewayServiceResponse$ = exports.DescribeExpressGatewayServiceRequest$ = exports.DescribeContainerInstancesResponse$ = exports.DescribeContainerInstancesRequest$ = exports.DescribeClustersResponse$ = void 0;
|
|
6
|
-
exports.
|
|
7
|
-
exports.
|
|
8
|
-
exports.
|
|
9
|
-
exports.
|
|
10
|
-
exports.UpdateTaskSet$ = exports.UpdateTaskProtection$ = exports.UpdateServicePrimaryTaskSet$ = exports.UpdateService$ = exports.UpdateExpressGatewayService$ = exports.UpdateContainerInstancesState$ = exports.UpdateContainerAgent$ = exports.UpdateClusterSettings$ = exports.UpdateCluster$ = exports.UpdateCapacityProvider$ = exports.UntagResource$ = exports.TagResource$ = exports.SubmitTaskStateChange$ = exports.SubmitContainerStateChange$ = exports.SubmitAttachmentStateChanges$ = exports.StopTask$ = exports.StopServiceDeployment$ = exports.StartTask$ = exports.RunTask$ = exports.RegisterTaskDefinition$ = exports.RegisterContainerInstance$ = exports.PutClusterCapacityProviders$ = exports.PutAttributes$ = exports.PutAccountSettingDefault$ = exports.PutAccountSetting$ = exports.ListTasks$ = exports.ListTaskDefinitions$ = exports.ListTaskDefinitionFamilies$ = exports.ListTagsForResource$ = exports.ListServicesByNamespace$ = exports.ListServices$ = exports.ListServiceDeployments$ = exports.ListContainerInstances$ = exports.ListClusters$ = exports.ListAttributes$ = exports.ListAccountSettings$ = void 0;
|
|
6
|
+
exports.ManagedScalableTarget$ = exports.ManagedMetricAlarm$ = exports.ManagedLogGroup$ = exports.ManagedLoadBalancer$ = exports.ManagedListenerRule$ = exports.ManagedListener$ = exports.ManagedInstancesStorageConfiguration$ = exports.ManagedInstancesProvider$ = exports.ManagedInstancesNetworkConfiguration$ = exports.ManagedInstancesLocalStorageConfiguration$ = exports.ManagedIngressPath$ = exports.ManagedCertificate$ = exports.ManagedAutoScaling$ = exports.ManagedApplicationAutoScalingPolicy$ = exports.ManagedAgentStateChange$ = exports.ManagedAgent$ = exports.LogConfiguration$ = exports.LoadBalancer$ = exports.ListTasksResponse$ = exports.ListTasksRequest$ = exports.ListTaskDefinitionsResponse$ = exports.ListTaskDefinitionsRequest$ = exports.ListTaskDefinitionFamiliesResponse$ = exports.ListTaskDefinitionFamiliesRequest$ = exports.ListTagsForResourceResponse$ = exports.ListTagsForResourceRequest$ = exports.ListServicesResponse$ = exports.ListServicesRequest$ = exports.ListServicesByNamespaceResponse$ = exports.ListServicesByNamespaceRequest$ = exports.ListServiceDeploymentsResponse$ = exports.ListServiceDeploymentsRequest$ = exports.ListContainerInstancesResponse$ = exports.ListContainerInstancesRequest$ = exports.ListClustersResponse$ = exports.ListClustersRequest$ = exports.ListAttributesResponse$ = exports.ListAttributesRequest$ = exports.ListAccountSettingsResponse$ = exports.ListAccountSettingsRequest$ = exports.LinuxParameters$ = exports.LinearConfiguration$ = exports.KeyValuePair$ = exports.KernelCapabilities$ = exports.InstanceRequirementsRequest$ = exports.InstanceLaunchTemplateUpdate$ = exports.InstanceLaunchTemplate$ = exports.InstanceHealthCheckResult$ = exports.IngressPathSummary$ = exports.InfrastructureOptimization$ = void 0;
|
|
7
|
+
exports.ServiceConnectTlsCertificateAuthority$ = exports.ServiceConnectTestTrafficRules$ = exports.ServiceConnectTestTrafficHeaderRules$ = exports.ServiceConnectTestTrafficHeaderMatchRules$ = exports.ServiceConnectServiceResource$ = exports.ServiceConnectService$ = exports.ServiceConnectConfiguration$ = exports.ServiceConnectClientAlias$ = exports.ServiceConnectAccessLogConfiguration$ = exports.Service$ = exports.Secret$ = exports.Scale$ = exports.RuntimePlatform$ = exports.RunTaskResponse$ = exports.RunTaskRequest$ = exports.Rollback$ = exports.ResourceRequirement$ = exports.Resource$ = exports.ResolvedConfiguration$ = exports.RepositoryCredentials$ = exports.RegisterTaskDefinitionResponse$ = exports.RegisterTaskDefinitionRequest$ = exports.RegisterContainerInstanceResponse$ = exports.RegisterContainerInstanceRequest$ = exports.PutClusterCapacityProvidersResponse$ = exports.PutClusterCapacityProvidersRequest$ = exports.PutAttributesResponse$ = exports.PutAttributesRequest$ = exports.PutAccountSettingResponse$ = exports.PutAccountSettingRequest$ = exports.PutAccountSettingDefaultResponse$ = exports.PutAccountSettingDefaultRequest$ = exports.ProxyConfiguration$ = exports.ProtectedTask$ = exports.PortMapping$ = exports.PlatformDevice$ = exports.PlacementStrategy$ = exports.PlacementConstraint$ = exports.NetworkInterfaceCountRequest$ = exports.NetworkInterface$ = exports.NetworkConfiguration$ = exports.NetworkBinding$ = exports.NetworkBandwidthGbpsRequest$ = exports.MountPoint$ = exports.MemoryMiBRequest$ = exports.MemoryGiBPerVCpuRequest$ = exports.ManagedTargetGroup$ = exports.ManagedStorageConfiguration$ = exports.ManagedSecurityGroup$ = exports.ManagedScaling$ = void 0;
|
|
8
|
+
exports.UpdateClusterResponse$ = exports.UpdateClusterRequest$ = exports.UpdateCapacityProviderResponse$ = exports.UpdateCapacityProviderRequest$ = exports.UntagResourceResponse$ = exports.UntagResourceRequest$ = exports.Ulimit$ = exports.TotalLocalStorageGBRequest$ = exports.Tmpfs$ = exports.TimeoutConfiguration$ = exports.TaskVolumeConfiguration$ = exports.TaskSet$ = exports.TaskOverride$ = exports.TaskManagedEBSVolumeTerminationPolicy$ = exports.TaskManagedEBSVolumeConfiguration$ = exports.TaskEphemeralStorage$ = exports.TaskDefinitionPlacementConstraint$ = exports.TaskDefinition$ = exports.Task$ = exports.TagResourceResponse$ = exports.TagResourceRequest$ = exports.Tag$ = exports.SystemControl$ = exports.SubmitTaskStateChangeResponse$ = exports.SubmitTaskStateChangeRequest$ = exports.SubmitContainerStateChangeResponse$ = exports.SubmitContainerStateChangeRequest$ = exports.SubmitAttachmentStateChangesResponse$ = exports.SubmitAttachmentStateChangesRequest$ = exports.StopTaskResponse$ = exports.StopTaskRequest$ = exports.StopServiceDeploymentResponse$ = exports.StopServiceDeploymentRequest$ = exports.StartTaskResponse$ = exports.StartTaskRequest$ = exports.Setting$ = exports.Session$ = exports.ServiceVolumeConfiguration$ = exports.ServiceRevisionSummary$ = exports.ServiceRevisionLoadBalancer$ = exports.ServiceRevision$ = exports.ServiceRegistry$ = exports.ServiceManagedEBSVolumeConfiguration$ = exports.ServiceEvent$ = exports.ServiceDeploymentCircuitBreaker$ = exports.ServiceDeploymentBrief$ = exports.ServiceDeploymentAlarms$ = exports.ServiceDeployment$ = exports.ServiceCurrentRevisionSummary$ = exports.ServiceConnectTlsConfiguration$ = void 0;
|
|
9
|
+
exports.ExecuteCommand$ = exports.DiscoverPollEndpoint$ = exports.DescribeTaskSets$ = exports.DescribeTasks$ = exports.DescribeTaskDefinition$ = exports.DescribeServices$ = exports.DescribeServiceRevisions$ = exports.DescribeServiceDeployments$ = exports.DescribeExpressGatewayService$ = exports.DescribeContainerInstances$ = exports.DescribeClusters$ = exports.DescribeCapacityProviders$ = exports.DeregisterTaskDefinition$ = exports.DeregisterContainerInstance$ = exports.DeleteTaskSet$ = exports.DeleteTaskDefinitions$ = exports.DeleteService$ = exports.DeleteExpressGatewayService$ = exports.DeleteCluster$ = exports.DeleteCapacityProvider$ = exports.DeleteAttributes$ = exports.DeleteAccountSetting$ = exports.CreateTaskSet$ = exports.CreateService$ = exports.CreateExpressGatewayService$ = exports.CreateCluster$ = exports.CreateCapacityProvider$ = exports.VpcLatticeConfiguration$ = exports.VolumeFrom$ = exports.Volume$ = exports.VersionInfo$ = exports.VCpuCountRangeRequest$ = exports.UpdateTaskSetResponse$ = exports.UpdateTaskSetRequest$ = exports.UpdateTaskProtectionResponse$ = exports.UpdateTaskProtectionRequest$ = exports.UpdateServiceResponse$ = exports.UpdateServiceRequest$ = exports.UpdateServicePrimaryTaskSetResponse$ = exports.UpdateServicePrimaryTaskSetRequest$ = exports.UpdateManagedInstancesProviderConfiguration$ = exports.UpdateExpressGatewayServiceResponse$ = exports.UpdateExpressGatewayServiceRequest$ = exports.UpdatedExpressGatewayService$ = exports.UpdateContainerInstancesStateResponse$ = exports.UpdateContainerInstancesStateRequest$ = exports.UpdateContainerAgentResponse$ = exports.UpdateContainerAgentRequest$ = exports.UpdateClusterSettingsResponse$ = exports.UpdateClusterSettingsRequest$ = void 0;
|
|
10
|
+
exports.UpdateTaskSet$ = exports.UpdateTaskProtection$ = exports.UpdateServicePrimaryTaskSet$ = exports.UpdateService$ = exports.UpdateExpressGatewayService$ = exports.UpdateContainerInstancesState$ = exports.UpdateContainerAgent$ = exports.UpdateClusterSettings$ = exports.UpdateCluster$ = exports.UpdateCapacityProvider$ = exports.UntagResource$ = exports.TagResource$ = exports.SubmitTaskStateChange$ = exports.SubmitContainerStateChange$ = exports.SubmitAttachmentStateChanges$ = exports.StopTask$ = exports.StopServiceDeployment$ = exports.StartTask$ = exports.RunTask$ = exports.RegisterTaskDefinition$ = exports.RegisterContainerInstance$ = exports.PutClusterCapacityProviders$ = exports.PutAttributes$ = exports.PutAccountSettingDefault$ = exports.PutAccountSetting$ = exports.ListTasks$ = exports.ListTaskDefinitions$ = exports.ListTaskDefinitionFamilies$ = exports.ListTagsForResource$ = exports.ListServicesByNamespace$ = exports.ListServices$ = exports.ListServiceDeployments$ = exports.ListContainerInstances$ = exports.ListClusters$ = exports.ListAttributes$ = exports.ListAccountSettings$ = exports.GetTaskProtection$ = void 0;
|
|
11
11
|
const _A = "Attachment";
|
|
12
12
|
const _AC = "AdvancedConfiguration";
|
|
13
13
|
const _ACR = "AcceleratorCountRequest";
|
|
@@ -267,6 +267,7 @@ const _MASCa = "ManagedAgentStateChanges";
|
|
|
267
267
|
const _MAa = "ManagedAgents";
|
|
268
268
|
const _MC = "ManagedCertificate";
|
|
269
269
|
const _MGBPVCR = "MemoryGiBPerVCpuRequest";
|
|
270
|
+
const _MILSC = "ManagedInstancesLocalStorageConfiguration";
|
|
270
271
|
const _MINC = "ManagedInstancesNetworkConfiguration";
|
|
271
272
|
const _MIP = "ManagedIngressPath";
|
|
272
273
|
const _MIPa = "ManagedInstancesProvider";
|
|
@@ -740,6 +741,7 @@ const _lP = "linuxParameters";
|
|
|
740
741
|
const _lS = "lastStatus";
|
|
741
742
|
const _lSA = "lastStartedAt";
|
|
742
743
|
const _lSC = "lastStatusChange";
|
|
744
|
+
const _lSCo = "localStorageConfiguration";
|
|
743
745
|
const _lSP = "logStreamPrefix";
|
|
744
746
|
const _lST = "localStorageTypes";
|
|
745
747
|
const _lSi = "lifecycleStages";
|
|
@@ -984,6 +986,7 @@ const _tl = "tls";
|
|
|
984
986
|
const _tm = "tmpfs";
|
|
985
987
|
const _u = "user";
|
|
986
988
|
const _uA = "updatedAt";
|
|
989
|
+
const _uLS = "useLocalStorage";
|
|
987
990
|
const _uS = "updateStatus";
|
|
988
991
|
const _uSR = "updateStatusReason";
|
|
989
992
|
const _ul = "ulimits";
|
|
@@ -1801,13 +1804,13 @@ exports.InstanceHealthCheckResult$ = [3, n0, _IHCR,
|
|
|
1801
1804
|
];
|
|
1802
1805
|
exports.InstanceLaunchTemplate$ = [3, n0, _ILT,
|
|
1803
1806
|
0,
|
|
1804
|
-
[_eIPA, _nC, _sCto, _mo, _cOT, _iMTP, _iR, _fE, _cR],
|
|
1805
|
-
[0, () => exports.ManagedInstancesNetworkConfiguration$, () => exports.ManagedInstancesStorageConfiguration$, 0, 0, 2, [() => exports.InstanceRequirementsRequest$, 0], 2, () => exports.CapacityReservationRequest$], 2
|
|
1807
|
+
[_eIPA, _nC, _sCto, _lSCo, _mo, _cOT, _iMTP, _iR, _fE, _cR],
|
|
1808
|
+
[0, () => exports.ManagedInstancesNetworkConfiguration$, () => exports.ManagedInstancesStorageConfiguration$, () => exports.ManagedInstancesLocalStorageConfiguration$, 0, 0, 2, [() => exports.InstanceRequirementsRequest$, 0], 2, () => exports.CapacityReservationRequest$], 2
|
|
1806
1809
|
];
|
|
1807
1810
|
exports.InstanceLaunchTemplateUpdate$ = [3, n0, _ILTU,
|
|
1808
1811
|
0,
|
|
1809
|
-
[_eIPA, _nC, _sCto, _iMTP, _mo, _iR, _cR],
|
|
1810
|
-
[0, () => exports.ManagedInstancesNetworkConfiguration$, () => exports.ManagedInstancesStorageConfiguration$, 2, 0, [() => exports.InstanceRequirementsRequest$, 0], () => exports.CapacityReservationRequest$]
|
|
1812
|
+
[_eIPA, _nC, _sCto, _iMTP, _lSCo, _mo, _iR, _cR],
|
|
1813
|
+
[0, () => exports.ManagedInstancesNetworkConfiguration$, () => exports.ManagedInstancesStorageConfiguration$, 2, () => exports.ManagedInstancesLocalStorageConfiguration$, 0, [() => exports.InstanceRequirementsRequest$, 0], () => exports.CapacityReservationRequest$]
|
|
1811
1814
|
];
|
|
1812
1815
|
exports.InstanceRequirementsRequest$ = [3, n0, _IRR,
|
|
1813
1816
|
0,
|
|
@@ -1984,6 +1987,11 @@ exports.ManagedIngressPath$ = [3, n0, _MIP,
|
|
|
1984
1987
|
[_aT, _end, _lBo, _lBSG, _ce, _li, _ru, _tG],
|
|
1985
1988
|
[0, 0, () => exports.ManagedLoadBalancer$, () => ManagedSecurityGroups, () => exports.ManagedCertificate$, () => exports.ManagedListener$, () => exports.ManagedListenerRule$, () => ManagedTargetGroups], 2
|
|
1986
1989
|
];
|
|
1990
|
+
exports.ManagedInstancesLocalStorageConfiguration$ = [3, n0, _MILSC,
|
|
1991
|
+
0,
|
|
1992
|
+
[_uLS],
|
|
1993
|
+
[2]
|
|
1994
|
+
];
|
|
1987
1995
|
exports.ManagedInstancesNetworkConfiguration$ = [3, n0, _MINC,
|
|
1988
1996
|
0,
|
|
1989
1997
|
[_su, _sG],
|
package/dist-es/ECS.js
CHANGED
|
@@ -51,7 +51,7 @@ import { StopTaskCommand } from "./commands/StopTaskCommand";
|
|
|
51
51
|
import { SubmitAttachmentStateChangesCommand, } from "./commands/SubmitAttachmentStateChangesCommand";
|
|
52
52
|
import { SubmitContainerStateChangeCommand, } from "./commands/SubmitContainerStateChangeCommand";
|
|
53
53
|
import { SubmitTaskStateChangeCommand, } from "./commands/SubmitTaskStateChangeCommand";
|
|
54
|
-
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
54
|
+
import { TagResourceCommand, } from "./commands/TagResourceCommand";
|
|
55
55
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
56
56
|
import { UpdateCapacityProviderCommand, } from "./commands/UpdateCapacityProviderCommand";
|
|
57
57
|
import { UpdateClusterCommand, } from "./commands/UpdateClusterCommand";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core";
|
|
1
|
+
import { resolveAwsSdkSigV4Config, } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { getSmithyContext, normalizeProvider } from "@smithy/util-middleware";
|
|
3
3
|
export const defaultECSHttpAuthSchemeParametersProvider = async (config, context, input) => {
|
|
4
4
|
return {
|
package/dist-es/runtimeConfig.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import packageInfo from "../package.json";
|
|
2
|
-
import { emitWarningIfUnsupportedVersion as awsCheckVersion
|
|
2
|
+
import { emitWarningIfUnsupportedVersion as awsCheckVersion } from "@aws-sdk/core/client";
|
|
3
|
+
import { NODE_AUTH_SCHEME_PREFERENCE_OPTIONS } from "@aws-sdk/core/httpAuthSchemes";
|
|
3
4
|
import { defaultProvider as credentialDefaultProvider } from "@aws-sdk/credential-provider-node";
|
|
4
5
|
import { createDefaultUserAgentProvider, NODE_APP_ID_CONFIG_OPTIONS } from "@aws-sdk/util-user-agent-node";
|
|
5
6
|
import { NODE_REGION_CONFIG_FILE_OPTIONS, NODE_REGION_CONFIG_OPTIONS, NODE_USE_DUALSTACK_ENDPOINT_CONFIG_OPTIONS, NODE_USE_FIPS_ENDPOINT_CONFIG_OPTIONS, } from "@smithy/config-resolver";
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4Signer } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4Signer } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import { AwsJson1_1Protocol } from "@aws-sdk/core/protocols";
|
|
3
3
|
import { NoOpLogger } from "@smithy/smithy-client";
|
|
4
4
|
import { parseUrl } from "@smithy/url-parser";
|
|
@@ -257,6 +257,7 @@ const _MASCa = "ManagedAgentStateChanges";
|
|
|
257
257
|
const _MAa = "ManagedAgents";
|
|
258
258
|
const _MC = "ManagedCertificate";
|
|
259
259
|
const _MGBPVCR = "MemoryGiBPerVCpuRequest";
|
|
260
|
+
const _MILSC = "ManagedInstancesLocalStorageConfiguration";
|
|
260
261
|
const _MINC = "ManagedInstancesNetworkConfiguration";
|
|
261
262
|
const _MIP = "ManagedIngressPath";
|
|
262
263
|
const _MIPa = "ManagedInstancesProvider";
|
|
@@ -730,6 +731,7 @@ const _lP = "linuxParameters";
|
|
|
730
731
|
const _lS = "lastStatus";
|
|
731
732
|
const _lSA = "lastStartedAt";
|
|
732
733
|
const _lSC = "lastStatusChange";
|
|
734
|
+
const _lSCo = "localStorageConfiguration";
|
|
733
735
|
const _lSP = "logStreamPrefix";
|
|
734
736
|
const _lST = "localStorageTypes";
|
|
735
737
|
const _lSi = "lifecycleStages";
|
|
@@ -974,6 +976,7 @@ const _tl = "tls";
|
|
|
974
976
|
const _tm = "tmpfs";
|
|
975
977
|
const _u = "user";
|
|
976
978
|
const _uA = "updatedAt";
|
|
979
|
+
const _uLS = "useLocalStorage";
|
|
977
980
|
const _uS = "updateStatus";
|
|
978
981
|
const _uSR = "updateStatusReason";
|
|
979
982
|
const _ul = "ulimits";
|
|
@@ -1791,13 +1794,13 @@ export var InstanceHealthCheckResult$ = [3, n0, _IHCR,
|
|
|
1791
1794
|
];
|
|
1792
1795
|
export var InstanceLaunchTemplate$ = [3, n0, _ILT,
|
|
1793
1796
|
0,
|
|
1794
|
-
[_eIPA, _nC, _sCto, _mo, _cOT, _iMTP, _iR, _fE, _cR],
|
|
1795
|
-
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, 0, 0, 2, [() => InstanceRequirementsRequest$, 0], 2, () => CapacityReservationRequest$], 2
|
|
1797
|
+
[_eIPA, _nC, _sCto, _lSCo, _mo, _cOT, _iMTP, _iR, _fE, _cR],
|
|
1798
|
+
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, () => ManagedInstancesLocalStorageConfiguration$, 0, 0, 2, [() => InstanceRequirementsRequest$, 0], 2, () => CapacityReservationRequest$], 2
|
|
1796
1799
|
];
|
|
1797
1800
|
export var InstanceLaunchTemplateUpdate$ = [3, n0, _ILTU,
|
|
1798
1801
|
0,
|
|
1799
|
-
[_eIPA, _nC, _sCto, _iMTP, _mo, _iR, _cR],
|
|
1800
|
-
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, 2, 0, [() => InstanceRequirementsRequest$, 0], () => CapacityReservationRequest$]
|
|
1802
|
+
[_eIPA, _nC, _sCto, _iMTP, _lSCo, _mo, _iR, _cR],
|
|
1803
|
+
[0, () => ManagedInstancesNetworkConfiguration$, () => ManagedInstancesStorageConfiguration$, 2, () => ManagedInstancesLocalStorageConfiguration$, 0, [() => InstanceRequirementsRequest$, 0], () => CapacityReservationRequest$]
|
|
1801
1804
|
];
|
|
1802
1805
|
export var InstanceRequirementsRequest$ = [3, n0, _IRR,
|
|
1803
1806
|
0,
|
|
@@ -1974,6 +1977,11 @@ export var ManagedIngressPath$ = [3, n0, _MIP,
|
|
|
1974
1977
|
[_aT, _end, _lBo, _lBSG, _ce, _li, _ru, _tG],
|
|
1975
1978
|
[0, 0, () => ManagedLoadBalancer$, () => ManagedSecurityGroups, () => ManagedCertificate$, () => ManagedListener$, () => ManagedListenerRule$, () => ManagedTargetGroups], 2
|
|
1976
1979
|
];
|
|
1980
|
+
export var ManagedInstancesLocalStorageConfiguration$ = [3, n0, _MILSC,
|
|
1981
|
+
0,
|
|
1982
|
+
[_uLS],
|
|
1983
|
+
[2]
|
|
1984
|
+
];
|
|
1977
1985
|
export var ManagedInstancesNetworkConfiguration$ = [3, n0, _MINC,
|
|
1978
1986
|
0,
|
|
1979
1987
|
[_su, _sG],
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeServicesCommand } from "../commands/DescribeServicesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeServicesCommand } from "../commands/DescribeServicesCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { checkExceptions, createWaiter, WaiterState } from "@smithy/util-waiter";
|
|
1
|
+
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
2
|
import { DescribeTasksCommand } from "../commands/DescribeTasksCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
package/dist-types/ECS.d.ts
CHANGED
|
@@ -1,69 +1,69 @@
|
|
|
1
1
|
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator, WaiterConfiguration } from "@smithy/types";
|
|
2
2
|
import type { WaiterResult } from "@smithy/util-waiter";
|
|
3
|
-
import { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
4
|
-
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
5
|
-
import { CreateExpressGatewayServiceCommandInput, CreateExpressGatewayServiceCommandOutput } from "./commands/CreateExpressGatewayServiceCommand";
|
|
6
|
-
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
7
|
-
import { CreateTaskSetCommandInput, CreateTaskSetCommandOutput } from "./commands/CreateTaskSetCommand";
|
|
8
|
-
import { DeleteAccountSettingCommandInput, DeleteAccountSettingCommandOutput } from "./commands/DeleteAccountSettingCommand";
|
|
9
|
-
import { DeleteAttributesCommandInput, DeleteAttributesCommandOutput } from "./commands/DeleteAttributesCommand";
|
|
10
|
-
import { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
11
|
-
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
12
|
-
import { DeleteExpressGatewayServiceCommandInput, DeleteExpressGatewayServiceCommandOutput } from "./commands/DeleteExpressGatewayServiceCommand";
|
|
13
|
-
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
14
|
-
import { DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput } from "./commands/DeleteTaskDefinitionsCommand";
|
|
15
|
-
import { DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput } from "./commands/DeleteTaskSetCommand";
|
|
16
|
-
import { DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput } from "./commands/DeregisterContainerInstanceCommand";
|
|
17
|
-
import { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput } from "./commands/DeregisterTaskDefinitionCommand";
|
|
18
|
-
import { DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
|
|
19
|
-
import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
|
|
20
|
-
import { DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
|
|
21
|
-
import { DescribeExpressGatewayServiceCommandInput, DescribeExpressGatewayServiceCommandOutput } from "./commands/DescribeExpressGatewayServiceCommand";
|
|
22
|
-
import { DescribeServiceDeploymentsCommandInput, DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
|
|
23
|
-
import { DescribeServiceRevisionsCommandInput, DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
|
|
24
|
-
import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
25
|
-
import { DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
|
|
26
|
-
import { DescribeTasksCommandInput, DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
|
|
27
|
-
import { DescribeTaskSetsCommandInput, DescribeTaskSetsCommandOutput } from "./commands/DescribeTaskSetsCommand";
|
|
28
|
-
import { DiscoverPollEndpointCommandInput, DiscoverPollEndpointCommandOutput } from "./commands/DiscoverPollEndpointCommand";
|
|
29
|
-
import { ExecuteCommandCommandInput, ExecuteCommandCommandOutput } from "./commands/ExecuteCommandCommand";
|
|
30
|
-
import { GetTaskProtectionCommandInput, GetTaskProtectionCommandOutput } from "./commands/GetTaskProtectionCommand";
|
|
31
|
-
import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } from "./commands/ListAccountSettingsCommand";
|
|
32
|
-
import { ListAttributesCommandInput, ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
|
|
33
|
-
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
34
|
-
import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
|
|
35
|
-
import { ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
|
|
36
|
-
import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
|
|
37
|
-
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
38
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
39
|
-
import { ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput } from "./commands/ListTaskDefinitionFamiliesCommand";
|
|
40
|
-
import { ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput } from "./commands/ListTaskDefinitionsCommand";
|
|
41
|
-
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
42
|
-
import { PutAccountSettingCommandInput, PutAccountSettingCommandOutput } from "./commands/PutAccountSettingCommand";
|
|
43
|
-
import { PutAccountSettingDefaultCommandInput, PutAccountSettingDefaultCommandOutput } from "./commands/PutAccountSettingDefaultCommand";
|
|
44
|
-
import { PutAttributesCommandInput, PutAttributesCommandOutput } from "./commands/PutAttributesCommand";
|
|
45
|
-
import { PutClusterCapacityProvidersCommandInput, PutClusterCapacityProvidersCommandOutput } from "./commands/PutClusterCapacityProvidersCommand";
|
|
46
|
-
import { RegisterContainerInstanceCommandInput, RegisterContainerInstanceCommandOutput } from "./commands/RegisterContainerInstanceCommand";
|
|
47
|
-
import { RegisterTaskDefinitionCommandInput, RegisterTaskDefinitionCommandOutput } from "./commands/RegisterTaskDefinitionCommand";
|
|
48
|
-
import { RunTaskCommandInput, RunTaskCommandOutput } from "./commands/RunTaskCommand";
|
|
49
|
-
import { StartTaskCommandInput, StartTaskCommandOutput } from "./commands/StartTaskCommand";
|
|
50
|
-
import { StopServiceDeploymentCommandInput, StopServiceDeploymentCommandOutput } from "./commands/StopServiceDeploymentCommand";
|
|
51
|
-
import { StopTaskCommandInput, StopTaskCommandOutput } from "./commands/StopTaskCommand";
|
|
52
|
-
import { SubmitAttachmentStateChangesCommandInput, SubmitAttachmentStateChangesCommandOutput } from "./commands/SubmitAttachmentStateChangesCommand";
|
|
53
|
-
import { SubmitContainerStateChangeCommandInput, SubmitContainerStateChangeCommandOutput } from "./commands/SubmitContainerStateChangeCommand";
|
|
54
|
-
import { SubmitTaskStateChangeCommandInput, SubmitTaskStateChangeCommandOutput } from "./commands/SubmitTaskStateChangeCommand";
|
|
55
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
56
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
57
|
-
import { UpdateCapacityProviderCommandInput, UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
58
|
-
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
59
|
-
import { UpdateClusterSettingsCommandInput, UpdateClusterSettingsCommandOutput } from "./commands/UpdateClusterSettingsCommand";
|
|
60
|
-
import { UpdateContainerAgentCommandInput, UpdateContainerAgentCommandOutput } from "./commands/UpdateContainerAgentCommand";
|
|
61
|
-
import { UpdateContainerInstancesStateCommandInput, UpdateContainerInstancesStateCommandOutput } from "./commands/UpdateContainerInstancesStateCommand";
|
|
62
|
-
import { UpdateExpressGatewayServiceCommandInput, UpdateExpressGatewayServiceCommandOutput } from "./commands/UpdateExpressGatewayServiceCommand";
|
|
63
|
-
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
64
|
-
import { UpdateServicePrimaryTaskSetCommandInput, UpdateServicePrimaryTaskSetCommandOutput } from "./commands/UpdateServicePrimaryTaskSetCommand";
|
|
65
|
-
import { UpdateTaskProtectionCommandInput, UpdateTaskProtectionCommandOutput } from "./commands/UpdateTaskProtectionCommand";
|
|
66
|
-
import { UpdateTaskSetCommandInput, UpdateTaskSetCommandOutput } from "./commands/UpdateTaskSetCommand";
|
|
3
|
+
import { type CreateCapacityProviderCommandInput, type CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
4
|
+
import { type CreateClusterCommandInput, type CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
5
|
+
import { type CreateExpressGatewayServiceCommandInput, type CreateExpressGatewayServiceCommandOutput } from "./commands/CreateExpressGatewayServiceCommand";
|
|
6
|
+
import { type CreateServiceCommandInput, type CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
7
|
+
import { type CreateTaskSetCommandInput, type CreateTaskSetCommandOutput } from "./commands/CreateTaskSetCommand";
|
|
8
|
+
import { type DeleteAccountSettingCommandInput, type DeleteAccountSettingCommandOutput } from "./commands/DeleteAccountSettingCommand";
|
|
9
|
+
import { type DeleteAttributesCommandInput, type DeleteAttributesCommandOutput } from "./commands/DeleteAttributesCommand";
|
|
10
|
+
import { type DeleteCapacityProviderCommandInput, type DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
11
|
+
import { type DeleteClusterCommandInput, type DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
12
|
+
import { type DeleteExpressGatewayServiceCommandInput, type DeleteExpressGatewayServiceCommandOutput } from "./commands/DeleteExpressGatewayServiceCommand";
|
|
13
|
+
import { type DeleteServiceCommandInput, type DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
14
|
+
import { type DeleteTaskDefinitionsCommandInput, type DeleteTaskDefinitionsCommandOutput } from "./commands/DeleteTaskDefinitionsCommand";
|
|
15
|
+
import { type DeleteTaskSetCommandInput, type DeleteTaskSetCommandOutput } from "./commands/DeleteTaskSetCommand";
|
|
16
|
+
import { type DeregisterContainerInstanceCommandInput, type DeregisterContainerInstanceCommandOutput } from "./commands/DeregisterContainerInstanceCommand";
|
|
17
|
+
import { type DeregisterTaskDefinitionCommandInput, type DeregisterTaskDefinitionCommandOutput } from "./commands/DeregisterTaskDefinitionCommand";
|
|
18
|
+
import { type DescribeCapacityProvidersCommandInput, type DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
|
|
19
|
+
import { type DescribeClustersCommandInput, type DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
|
|
20
|
+
import { type DescribeContainerInstancesCommandInput, type DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
|
|
21
|
+
import { type DescribeExpressGatewayServiceCommandInput, type DescribeExpressGatewayServiceCommandOutput } from "./commands/DescribeExpressGatewayServiceCommand";
|
|
22
|
+
import { type DescribeServiceDeploymentsCommandInput, type DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
|
|
23
|
+
import { type DescribeServiceRevisionsCommandInput, type DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
|
|
24
|
+
import { type DescribeServicesCommandInput, type DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
25
|
+
import { type DescribeTaskDefinitionCommandInput, type DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
|
|
26
|
+
import { type DescribeTasksCommandInput, type DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
|
|
27
|
+
import { type DescribeTaskSetsCommandInput, type DescribeTaskSetsCommandOutput } from "./commands/DescribeTaskSetsCommand";
|
|
28
|
+
import { type DiscoverPollEndpointCommandInput, type DiscoverPollEndpointCommandOutput } from "./commands/DiscoverPollEndpointCommand";
|
|
29
|
+
import { type ExecuteCommandCommandInput, type ExecuteCommandCommandOutput } from "./commands/ExecuteCommandCommand";
|
|
30
|
+
import { type GetTaskProtectionCommandInput, type GetTaskProtectionCommandOutput } from "./commands/GetTaskProtectionCommand";
|
|
31
|
+
import { type ListAccountSettingsCommandInput, type ListAccountSettingsCommandOutput } from "./commands/ListAccountSettingsCommand";
|
|
32
|
+
import { type ListAttributesCommandInput, type ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
|
|
33
|
+
import { type ListClustersCommandInput, type ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
34
|
+
import { type ListContainerInstancesCommandInput, type ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
|
|
35
|
+
import { type ListServiceDeploymentsCommandInput, type ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
|
|
36
|
+
import { type ListServicesByNamespaceCommandInput, type ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
|
|
37
|
+
import { type ListServicesCommandInput, type ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
38
|
+
import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
39
|
+
import { type ListTaskDefinitionFamiliesCommandInput, type ListTaskDefinitionFamiliesCommandOutput } from "./commands/ListTaskDefinitionFamiliesCommand";
|
|
40
|
+
import { type ListTaskDefinitionsCommandInput, type ListTaskDefinitionsCommandOutput } from "./commands/ListTaskDefinitionsCommand";
|
|
41
|
+
import { type ListTasksCommandInput, type ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
42
|
+
import { type PutAccountSettingCommandInput, type PutAccountSettingCommandOutput } from "./commands/PutAccountSettingCommand";
|
|
43
|
+
import { type PutAccountSettingDefaultCommandInput, type PutAccountSettingDefaultCommandOutput } from "./commands/PutAccountSettingDefaultCommand";
|
|
44
|
+
import { type PutAttributesCommandInput, type PutAttributesCommandOutput } from "./commands/PutAttributesCommand";
|
|
45
|
+
import { type PutClusterCapacityProvidersCommandInput, type PutClusterCapacityProvidersCommandOutput } from "./commands/PutClusterCapacityProvidersCommand";
|
|
46
|
+
import { type RegisterContainerInstanceCommandInput, type RegisterContainerInstanceCommandOutput } from "./commands/RegisterContainerInstanceCommand";
|
|
47
|
+
import { type RegisterTaskDefinitionCommandInput, type RegisterTaskDefinitionCommandOutput } from "./commands/RegisterTaskDefinitionCommand";
|
|
48
|
+
import { type RunTaskCommandInput, type RunTaskCommandOutput } from "./commands/RunTaskCommand";
|
|
49
|
+
import { type StartTaskCommandInput, type StartTaskCommandOutput } from "./commands/StartTaskCommand";
|
|
50
|
+
import { type StopServiceDeploymentCommandInput, type StopServiceDeploymentCommandOutput } from "./commands/StopServiceDeploymentCommand";
|
|
51
|
+
import { type StopTaskCommandInput, type StopTaskCommandOutput } from "./commands/StopTaskCommand";
|
|
52
|
+
import { type SubmitAttachmentStateChangesCommandInput, type SubmitAttachmentStateChangesCommandOutput } from "./commands/SubmitAttachmentStateChangesCommand";
|
|
53
|
+
import { type SubmitContainerStateChangeCommandInput, type SubmitContainerStateChangeCommandOutput } from "./commands/SubmitContainerStateChangeCommand";
|
|
54
|
+
import { type SubmitTaskStateChangeCommandInput, type SubmitTaskStateChangeCommandOutput } from "./commands/SubmitTaskStateChangeCommand";
|
|
55
|
+
import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
56
|
+
import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
57
|
+
import { type UpdateCapacityProviderCommandInput, type UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
58
|
+
import { type UpdateClusterCommandInput, type UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
59
|
+
import { type UpdateClusterSettingsCommandInput, type UpdateClusterSettingsCommandOutput } from "./commands/UpdateClusterSettingsCommand";
|
|
60
|
+
import { type UpdateContainerAgentCommandInput, type UpdateContainerAgentCommandOutput } from "./commands/UpdateContainerAgentCommand";
|
|
61
|
+
import { type UpdateContainerInstancesStateCommandInput, type UpdateContainerInstancesStateCommandOutput } from "./commands/UpdateContainerInstancesStateCommand";
|
|
62
|
+
import { type UpdateExpressGatewayServiceCommandInput, type UpdateExpressGatewayServiceCommandOutput } from "./commands/UpdateExpressGatewayServiceCommand";
|
|
63
|
+
import { type UpdateServiceCommandInput, type UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
64
|
+
import { type UpdateServicePrimaryTaskSetCommandInput, type UpdateServicePrimaryTaskSetCommandOutput } from "./commands/UpdateServicePrimaryTaskSetCommand";
|
|
65
|
+
import { type UpdateTaskProtectionCommandInput, type UpdateTaskProtectionCommandOutput } from "./commands/UpdateTaskProtectionCommand";
|
|
66
|
+
import { type UpdateTaskSetCommandInput, type UpdateTaskSetCommandOutput } from "./commands/UpdateTaskSetCommand";
|
|
67
67
|
import { ECSClient } from "./ECSClient";
|
|
68
68
|
export interface ECS {
|
|
69
69
|
/**
|
|
@@ -5,73 +5,73 @@ import { type EndpointInputConfig, type EndpointResolvedConfig } from "@smithy/m
|
|
|
5
5
|
import { type RetryInputConfig, type RetryResolvedConfig } from "@smithy/middleware-retry";
|
|
6
6
|
import type { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
|
|
7
7
|
import { type DefaultsMode as __DefaultsMode, type SmithyConfiguration as __SmithyConfiguration, type SmithyResolvedConfiguration as __SmithyResolvedConfiguration, Client as __Client } from "@smithy/smithy-client";
|
|
8
|
-
import {
|
|
8
|
+
import type { AwsCredentialIdentityProvider, BodyLengthCalculator as __BodyLengthCalculator, CheckOptionalClientConfig as __CheckOptionalClientConfig, ChecksumConstructor as __ChecksumConstructor, Decoder as __Decoder, Encoder as __Encoder, HashConstructor as __HashConstructor, HttpHandlerOptions as __HttpHandlerOptions, Logger as __Logger, Provider as __Provider, StreamCollector as __StreamCollector, UrlParser as __UrlParser, UserAgent as __UserAgent } from "@smithy/types";
|
|
9
9
|
import { type HttpAuthSchemeInputConfig, type HttpAuthSchemeResolvedConfig } from "./auth/httpAuthSchemeProvider";
|
|
10
|
-
import { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
11
|
-
import { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
12
|
-
import { CreateExpressGatewayServiceCommandInput, CreateExpressGatewayServiceCommandOutput } from "./commands/CreateExpressGatewayServiceCommand";
|
|
13
|
-
import { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
14
|
-
import { CreateTaskSetCommandInput, CreateTaskSetCommandOutput } from "./commands/CreateTaskSetCommand";
|
|
15
|
-
import { DeleteAccountSettingCommandInput, DeleteAccountSettingCommandOutput } from "./commands/DeleteAccountSettingCommand";
|
|
16
|
-
import { DeleteAttributesCommandInput, DeleteAttributesCommandOutput } from "./commands/DeleteAttributesCommand";
|
|
17
|
-
import { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
18
|
-
import { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
19
|
-
import { DeleteExpressGatewayServiceCommandInput, DeleteExpressGatewayServiceCommandOutput } from "./commands/DeleteExpressGatewayServiceCommand";
|
|
20
|
-
import { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
21
|
-
import { DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput } from "./commands/DeleteTaskDefinitionsCommand";
|
|
22
|
-
import { DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput } from "./commands/DeleteTaskSetCommand";
|
|
23
|
-
import { DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput } from "./commands/DeregisterContainerInstanceCommand";
|
|
24
|
-
import { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput } from "./commands/DeregisterTaskDefinitionCommand";
|
|
25
|
-
import { DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
|
|
26
|
-
import { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
|
|
27
|
-
import { DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
|
|
28
|
-
import { DescribeExpressGatewayServiceCommandInput, DescribeExpressGatewayServiceCommandOutput } from "./commands/DescribeExpressGatewayServiceCommand";
|
|
29
|
-
import { DescribeServiceDeploymentsCommandInput, DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
|
|
30
|
-
import { DescribeServiceRevisionsCommandInput, DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
|
|
31
|
-
import { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
32
|
-
import { DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
|
|
33
|
-
import { DescribeTasksCommandInput, DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
|
|
34
|
-
import { DescribeTaskSetsCommandInput, DescribeTaskSetsCommandOutput } from "./commands/DescribeTaskSetsCommand";
|
|
35
|
-
import { DiscoverPollEndpointCommandInput, DiscoverPollEndpointCommandOutput } from "./commands/DiscoverPollEndpointCommand";
|
|
36
|
-
import { ExecuteCommandCommandInput, ExecuteCommandCommandOutput } from "./commands/ExecuteCommandCommand";
|
|
37
|
-
import { GetTaskProtectionCommandInput, GetTaskProtectionCommandOutput } from "./commands/GetTaskProtectionCommand";
|
|
38
|
-
import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } from "./commands/ListAccountSettingsCommand";
|
|
39
|
-
import { ListAttributesCommandInput, ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
|
|
40
|
-
import { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
41
|
-
import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
|
|
42
|
-
import { ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
|
|
43
|
-
import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
|
|
44
|
-
import { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
45
|
-
import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
46
|
-
import { ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput } from "./commands/ListTaskDefinitionFamiliesCommand";
|
|
47
|
-
import { ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput } from "./commands/ListTaskDefinitionsCommand";
|
|
48
|
-
import { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
49
|
-
import { PutAccountSettingCommandInput, PutAccountSettingCommandOutput } from "./commands/PutAccountSettingCommand";
|
|
50
|
-
import { PutAccountSettingDefaultCommandInput, PutAccountSettingDefaultCommandOutput } from "./commands/PutAccountSettingDefaultCommand";
|
|
51
|
-
import { PutAttributesCommandInput, PutAttributesCommandOutput } from "./commands/PutAttributesCommand";
|
|
52
|
-
import { PutClusterCapacityProvidersCommandInput, PutClusterCapacityProvidersCommandOutput } from "./commands/PutClusterCapacityProvidersCommand";
|
|
53
|
-
import { RegisterContainerInstanceCommandInput, RegisterContainerInstanceCommandOutput } from "./commands/RegisterContainerInstanceCommand";
|
|
54
|
-
import { RegisterTaskDefinitionCommandInput, RegisterTaskDefinitionCommandOutput } from "./commands/RegisterTaskDefinitionCommand";
|
|
55
|
-
import { RunTaskCommandInput, RunTaskCommandOutput } from "./commands/RunTaskCommand";
|
|
56
|
-
import { StartTaskCommandInput, StartTaskCommandOutput } from "./commands/StartTaskCommand";
|
|
57
|
-
import { StopServiceDeploymentCommandInput, StopServiceDeploymentCommandOutput } from "./commands/StopServiceDeploymentCommand";
|
|
58
|
-
import { StopTaskCommandInput, StopTaskCommandOutput } from "./commands/StopTaskCommand";
|
|
59
|
-
import { SubmitAttachmentStateChangesCommandInput, SubmitAttachmentStateChangesCommandOutput } from "./commands/SubmitAttachmentStateChangesCommand";
|
|
60
|
-
import { SubmitContainerStateChangeCommandInput, SubmitContainerStateChangeCommandOutput } from "./commands/SubmitContainerStateChangeCommand";
|
|
61
|
-
import { SubmitTaskStateChangeCommandInput, SubmitTaskStateChangeCommandOutput } from "./commands/SubmitTaskStateChangeCommand";
|
|
62
|
-
import { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
63
|
-
import { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
64
|
-
import { UpdateCapacityProviderCommandInput, UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
65
|
-
import { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
66
|
-
import { UpdateClusterSettingsCommandInput, UpdateClusterSettingsCommandOutput } from "./commands/UpdateClusterSettingsCommand";
|
|
67
|
-
import { UpdateContainerAgentCommandInput, UpdateContainerAgentCommandOutput } from "./commands/UpdateContainerAgentCommand";
|
|
68
|
-
import { UpdateContainerInstancesStateCommandInput, UpdateContainerInstancesStateCommandOutput } from "./commands/UpdateContainerInstancesStateCommand";
|
|
69
|
-
import { UpdateExpressGatewayServiceCommandInput, UpdateExpressGatewayServiceCommandOutput } from "./commands/UpdateExpressGatewayServiceCommand";
|
|
70
|
-
import { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
71
|
-
import { UpdateServicePrimaryTaskSetCommandInput, UpdateServicePrimaryTaskSetCommandOutput } from "./commands/UpdateServicePrimaryTaskSetCommand";
|
|
72
|
-
import { UpdateTaskProtectionCommandInput, UpdateTaskProtectionCommandOutput } from "./commands/UpdateTaskProtectionCommand";
|
|
73
|
-
import { UpdateTaskSetCommandInput, UpdateTaskSetCommandOutput } from "./commands/UpdateTaskSetCommand";
|
|
74
|
-
import { ClientInputEndpointParameters, ClientResolvedEndpointParameters, EndpointParameters } from "./endpoint/EndpointParameters";
|
|
10
|
+
import type { CreateCapacityProviderCommandInput, CreateCapacityProviderCommandOutput } from "./commands/CreateCapacityProviderCommand";
|
|
11
|
+
import type { CreateClusterCommandInput, CreateClusterCommandOutput } from "./commands/CreateClusterCommand";
|
|
12
|
+
import type { CreateExpressGatewayServiceCommandInput, CreateExpressGatewayServiceCommandOutput } from "./commands/CreateExpressGatewayServiceCommand";
|
|
13
|
+
import type { CreateServiceCommandInput, CreateServiceCommandOutput } from "./commands/CreateServiceCommand";
|
|
14
|
+
import type { CreateTaskSetCommandInput, CreateTaskSetCommandOutput } from "./commands/CreateTaskSetCommand";
|
|
15
|
+
import type { DeleteAccountSettingCommandInput, DeleteAccountSettingCommandOutput } from "./commands/DeleteAccountSettingCommand";
|
|
16
|
+
import type { DeleteAttributesCommandInput, DeleteAttributesCommandOutput } from "./commands/DeleteAttributesCommand";
|
|
17
|
+
import type { DeleteCapacityProviderCommandInput, DeleteCapacityProviderCommandOutput } from "./commands/DeleteCapacityProviderCommand";
|
|
18
|
+
import type { DeleteClusterCommandInput, DeleteClusterCommandOutput } from "./commands/DeleteClusterCommand";
|
|
19
|
+
import type { DeleteExpressGatewayServiceCommandInput, DeleteExpressGatewayServiceCommandOutput } from "./commands/DeleteExpressGatewayServiceCommand";
|
|
20
|
+
import type { DeleteServiceCommandInput, DeleteServiceCommandOutput } from "./commands/DeleteServiceCommand";
|
|
21
|
+
import type { DeleteTaskDefinitionsCommandInput, DeleteTaskDefinitionsCommandOutput } from "./commands/DeleteTaskDefinitionsCommand";
|
|
22
|
+
import type { DeleteTaskSetCommandInput, DeleteTaskSetCommandOutput } from "./commands/DeleteTaskSetCommand";
|
|
23
|
+
import type { DeregisterContainerInstanceCommandInput, DeregisterContainerInstanceCommandOutput } from "./commands/DeregisterContainerInstanceCommand";
|
|
24
|
+
import type { DeregisterTaskDefinitionCommandInput, DeregisterTaskDefinitionCommandOutput } from "./commands/DeregisterTaskDefinitionCommand";
|
|
25
|
+
import type { DescribeCapacityProvidersCommandInput, DescribeCapacityProvidersCommandOutput } from "./commands/DescribeCapacityProvidersCommand";
|
|
26
|
+
import type { DescribeClustersCommandInput, DescribeClustersCommandOutput } from "./commands/DescribeClustersCommand";
|
|
27
|
+
import type { DescribeContainerInstancesCommandInput, DescribeContainerInstancesCommandOutput } from "./commands/DescribeContainerInstancesCommand";
|
|
28
|
+
import type { DescribeExpressGatewayServiceCommandInput, DescribeExpressGatewayServiceCommandOutput } from "./commands/DescribeExpressGatewayServiceCommand";
|
|
29
|
+
import type { DescribeServiceDeploymentsCommandInput, DescribeServiceDeploymentsCommandOutput } from "./commands/DescribeServiceDeploymentsCommand";
|
|
30
|
+
import type { DescribeServiceRevisionsCommandInput, DescribeServiceRevisionsCommandOutput } from "./commands/DescribeServiceRevisionsCommand";
|
|
31
|
+
import type { DescribeServicesCommandInput, DescribeServicesCommandOutput } from "./commands/DescribeServicesCommand";
|
|
32
|
+
import type { DescribeTaskDefinitionCommandInput, DescribeTaskDefinitionCommandOutput } from "./commands/DescribeTaskDefinitionCommand";
|
|
33
|
+
import type { DescribeTasksCommandInput, DescribeTasksCommandOutput } from "./commands/DescribeTasksCommand";
|
|
34
|
+
import type { DescribeTaskSetsCommandInput, DescribeTaskSetsCommandOutput } from "./commands/DescribeTaskSetsCommand";
|
|
35
|
+
import type { DiscoverPollEndpointCommandInput, DiscoverPollEndpointCommandOutput } from "./commands/DiscoverPollEndpointCommand";
|
|
36
|
+
import type { ExecuteCommandCommandInput, ExecuteCommandCommandOutput } from "./commands/ExecuteCommandCommand";
|
|
37
|
+
import type { GetTaskProtectionCommandInput, GetTaskProtectionCommandOutput } from "./commands/GetTaskProtectionCommand";
|
|
38
|
+
import type { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } from "./commands/ListAccountSettingsCommand";
|
|
39
|
+
import type { ListAttributesCommandInput, ListAttributesCommandOutput } from "./commands/ListAttributesCommand";
|
|
40
|
+
import type { ListClustersCommandInput, ListClustersCommandOutput } from "./commands/ListClustersCommand";
|
|
41
|
+
import type { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "./commands/ListContainerInstancesCommand";
|
|
42
|
+
import type { ListServiceDeploymentsCommandInput, ListServiceDeploymentsCommandOutput } from "./commands/ListServiceDeploymentsCommand";
|
|
43
|
+
import type { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "./commands/ListServicesByNamespaceCommand";
|
|
44
|
+
import type { ListServicesCommandInput, ListServicesCommandOutput } from "./commands/ListServicesCommand";
|
|
45
|
+
import type { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
|
|
46
|
+
import type { ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput } from "./commands/ListTaskDefinitionFamiliesCommand";
|
|
47
|
+
import type { ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput } from "./commands/ListTaskDefinitionsCommand";
|
|
48
|
+
import type { ListTasksCommandInput, ListTasksCommandOutput } from "./commands/ListTasksCommand";
|
|
49
|
+
import type { PutAccountSettingCommandInput, PutAccountSettingCommandOutput } from "./commands/PutAccountSettingCommand";
|
|
50
|
+
import type { PutAccountSettingDefaultCommandInput, PutAccountSettingDefaultCommandOutput } from "./commands/PutAccountSettingDefaultCommand";
|
|
51
|
+
import type { PutAttributesCommandInput, PutAttributesCommandOutput } from "./commands/PutAttributesCommand";
|
|
52
|
+
import type { PutClusterCapacityProvidersCommandInput, PutClusterCapacityProvidersCommandOutput } from "./commands/PutClusterCapacityProvidersCommand";
|
|
53
|
+
import type { RegisterContainerInstanceCommandInput, RegisterContainerInstanceCommandOutput } from "./commands/RegisterContainerInstanceCommand";
|
|
54
|
+
import type { RegisterTaskDefinitionCommandInput, RegisterTaskDefinitionCommandOutput } from "./commands/RegisterTaskDefinitionCommand";
|
|
55
|
+
import type { RunTaskCommandInput, RunTaskCommandOutput } from "./commands/RunTaskCommand";
|
|
56
|
+
import type { StartTaskCommandInput, StartTaskCommandOutput } from "./commands/StartTaskCommand";
|
|
57
|
+
import type { StopServiceDeploymentCommandInput, StopServiceDeploymentCommandOutput } from "./commands/StopServiceDeploymentCommand";
|
|
58
|
+
import type { StopTaskCommandInput, StopTaskCommandOutput } from "./commands/StopTaskCommand";
|
|
59
|
+
import type { SubmitAttachmentStateChangesCommandInput, SubmitAttachmentStateChangesCommandOutput } from "./commands/SubmitAttachmentStateChangesCommand";
|
|
60
|
+
import type { SubmitContainerStateChangeCommandInput, SubmitContainerStateChangeCommandOutput } from "./commands/SubmitContainerStateChangeCommand";
|
|
61
|
+
import type { SubmitTaskStateChangeCommandInput, SubmitTaskStateChangeCommandOutput } from "./commands/SubmitTaskStateChangeCommand";
|
|
62
|
+
import type { TagResourceCommandInput, TagResourceCommandOutput } from "./commands/TagResourceCommand";
|
|
63
|
+
import type { UntagResourceCommandInput, UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
|
|
64
|
+
import type { UpdateCapacityProviderCommandInput, UpdateCapacityProviderCommandOutput } from "./commands/UpdateCapacityProviderCommand";
|
|
65
|
+
import type { UpdateClusterCommandInput, UpdateClusterCommandOutput } from "./commands/UpdateClusterCommand";
|
|
66
|
+
import type { UpdateClusterSettingsCommandInput, UpdateClusterSettingsCommandOutput } from "./commands/UpdateClusterSettingsCommand";
|
|
67
|
+
import type { UpdateContainerAgentCommandInput, UpdateContainerAgentCommandOutput } from "./commands/UpdateContainerAgentCommand";
|
|
68
|
+
import type { UpdateContainerInstancesStateCommandInput, UpdateContainerInstancesStateCommandOutput } from "./commands/UpdateContainerInstancesStateCommand";
|
|
69
|
+
import type { UpdateExpressGatewayServiceCommandInput, UpdateExpressGatewayServiceCommandOutput } from "./commands/UpdateExpressGatewayServiceCommand";
|
|
70
|
+
import type { UpdateServiceCommandInput, UpdateServiceCommandOutput } from "./commands/UpdateServiceCommand";
|
|
71
|
+
import type { UpdateServicePrimaryTaskSetCommandInput, UpdateServicePrimaryTaskSetCommandOutput } from "./commands/UpdateServicePrimaryTaskSetCommand";
|
|
72
|
+
import type { UpdateTaskProtectionCommandInput, UpdateTaskProtectionCommandOutput } from "./commands/UpdateTaskProtectionCommand";
|
|
73
|
+
import type { UpdateTaskSetCommandInput, UpdateTaskSetCommandOutput } from "./commands/UpdateTaskSetCommand";
|
|
74
|
+
import { type ClientInputEndpointParameters, type ClientResolvedEndpointParameters, type EndpointParameters } from "./endpoint/EndpointParameters";
|
|
75
75
|
import { type RuntimeExtension, type RuntimeExtensionsConfig } from "./runtimeExtensions";
|
|
76
76
|
export { __Client };
|
|
77
77
|
/**
|
|
@@ -180,7 +180,7 @@ export interface ClientDefaults extends Partial<__SmithyConfiguration<__HttpHand
|
|
|
180
180
|
* The provider populating default tracking information to be sent with `user-agent`, `x-amz-user-agent` header
|
|
181
181
|
* @internal
|
|
182
182
|
*/
|
|
183
|
-
defaultUserAgentProvider?:
|
|
183
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
184
184
|
/**
|
|
185
185
|
* Default credentials provider; Not available in browser runtime.
|
|
186
186
|
* @deprecated
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import
|
|
1
|
+
import type { AwsCredentialIdentity, AwsCredentialIdentityProvider, HttpAuthScheme } from "@smithy/types";
|
|
2
2
|
import type { ECSHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
|
|
3
3
|
/**
|
|
4
4
|
* @internal
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core";
|
|
1
|
+
import { AwsSdkSigV4AuthInputConfig, AwsSdkSigV4AuthResolvedConfig, AwsSdkSigV4PreviouslyResolved } from "@aws-sdk/core/httpAuthSchemes";
|
|
2
2
|
import type { HandlerExecutionContext, HttpAuthScheme, HttpAuthSchemeParameters, HttpAuthSchemeParametersProvider, HttpAuthSchemeProvider, Provider } from "@smithy/types";
|
|
3
3
|
import { type ECSClientResolvedConfig } from "../ECSClient";
|
|
4
4
|
/**
|
|
@@ -66,6 +66,9 @@ declare const CreateCapacityProviderCommand_base: {
|
|
|
66
66
|
* storageConfiguration: { // ManagedInstancesStorageConfiguration
|
|
67
67
|
* storageSizeGiB: Number("int"),
|
|
68
68
|
* },
|
|
69
|
+
* localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
70
|
+
* useLocalStorage: true || false,
|
|
71
|
+
* },
|
|
69
72
|
* monitoring: "BASIC" || "DETAILED",
|
|
70
73
|
* capacityOptionType: "ON_DEMAND" || "SPOT" || "RESERVED",
|
|
71
74
|
* instanceMetadataTagsPropagation: true || false,
|
|
@@ -191,6 +194,9 @@ declare const CreateCapacityProviderCommand_base: {
|
|
|
191
194
|
* // storageConfiguration: { // ManagedInstancesStorageConfiguration
|
|
192
195
|
* // storageSizeGiB: Number("int"),
|
|
193
196
|
* // },
|
|
197
|
+
* // localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
198
|
+
* // useLocalStorage: true || false,
|
|
199
|
+
* // },
|
|
194
200
|
* // monitoring: "BASIC" || "DETAILED",
|
|
195
201
|
* // capacityOptionType: "ON_DEMAND" || "SPOT" || "RESERVED",
|
|
196
202
|
* // instanceMetadataTagsPropagation: true || false,
|
|
@@ -75,6 +75,9 @@ declare const DeleteCapacityProviderCommand_base: {
|
|
|
75
75
|
* // storageConfiguration: { // ManagedInstancesStorageConfiguration
|
|
76
76
|
* // storageSizeGiB: Number("int"),
|
|
77
77
|
* // },
|
|
78
|
+
* // localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
79
|
+
* // useLocalStorage: true || false,
|
|
80
|
+
* // },
|
|
78
81
|
* // monitoring: "BASIC" || "DETAILED",
|
|
79
82
|
* // capacityOptionType: "ON_DEMAND" || "SPOT" || "RESERVED",
|
|
80
83
|
* // instanceMetadataTagsPropagation: true || false,
|
|
@@ -83,6 +83,9 @@ declare const DescribeCapacityProvidersCommand_base: {
|
|
|
83
83
|
* // storageConfiguration: { // ManagedInstancesStorageConfiguration
|
|
84
84
|
* // storageSizeGiB: Number("int"),
|
|
85
85
|
* // },
|
|
86
|
+
* // localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
87
|
+
* // useLocalStorage: true || false,
|
|
88
|
+
* // },
|
|
86
89
|
* // monitoring: "BASIC" || "DETAILED",
|
|
87
90
|
* // capacityOptionType: "ON_DEMAND" || "SPOT" || "RESERVED",
|
|
88
91
|
* // instanceMetadataTagsPropagation: true || false,
|
|
@@ -66,6 +66,9 @@ declare const UpdateCapacityProviderCommand_base: {
|
|
|
66
66
|
* storageSizeGiB: Number("int"),
|
|
67
67
|
* },
|
|
68
68
|
* instanceMetadataTagsPropagation: true || false,
|
|
69
|
+
* localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
70
|
+
* useLocalStorage: true || false,
|
|
71
|
+
* },
|
|
69
72
|
* monitoring: "BASIC" || "DETAILED",
|
|
70
73
|
* instanceRequirements: { // InstanceRequirementsRequest
|
|
71
74
|
* vCpuCount: { // VCpuCountRangeRequest
|
|
@@ -182,6 +185,9 @@ declare const UpdateCapacityProviderCommand_base: {
|
|
|
182
185
|
* // storageConfiguration: { // ManagedInstancesStorageConfiguration
|
|
183
186
|
* // storageSizeGiB: Number("int"),
|
|
184
187
|
* // },
|
|
188
|
+
* // localStorageConfiguration: { // ManagedInstancesLocalStorageConfiguration
|
|
189
|
+
* // useLocalStorage: true || false,
|
|
190
|
+
* // },
|
|
185
191
|
* // monitoring: "BASIC" || "DETAILED",
|
|
186
192
|
* // capacityOptionType: "ON_DEMAND" || "SPOT" || "RESERVED",
|
|
187
193
|
* // instanceMetadataTagsPropagation: true || false,
|
package/dist-types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
*/
|
|
6
6
|
export * from "./ECSClient";
|
|
7
7
|
export * from "./ECS";
|
|
8
|
-
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
8
|
+
export type { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
9
9
|
export type { RuntimeExtension } from "./runtimeExtensions";
|
|
10
10
|
export type { ECSExtensionConfiguration } from "./extensionConfiguration";
|
|
11
11
|
export * from "./commands";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
-
import { AcceleratorManufacturer, AcceleratorName, AcceleratorType, AccessType, AgentUpdateStatus, ApplicationProtocol, AssignPublicIp, AvailabilityZoneRebalancing, BareMetal, BurstablePerformance, CapacityOptionType, CapacityProviderField, CapacityProviderStatus, CapacityProviderType, CapacityProviderUpdateStatus, CapacityReservationPreference, ClusterField, ClusterSettingName, Compatibility, Connectivity, ContainerCondition, ContainerInstanceField, ContainerInstanceStatus, CPUArchitecture, CpuManufacturer, DeploymentControllerType, DeploymentLifecycleHookStage, DeploymentRolloutState, DeploymentStrategy, DesiredStatus, DeviceCgroupPermission, EBSResourceType, EFSAuthorizationConfigIAM, EFSTransitEncryption, EnvironmentFileType, ExecuteCommandLogging, ExpressGatewayServiceInclude, ExpressGatewayServiceScalingMetric, ExpressGatewayServiceStatusCode, FirelensConfigurationType, HealthStatus, InstanceGeneration, InstanceHealthCheckState, InstanceHealthCheckType, IpcMode, LaunchType, LocalStorage, LocalStorageType, LogDriver, ManagedAgentName, ManagedDraining, ManagedInstancesMonitoringOptions, ManagedResourceStatus, ManagedScalingStatus, ManagedTerminationProtection, NetworkMode, OSFamily, PidMode, PlacementConstraintType, PlacementStrategyType, PlatformDeviceType, PropagateMITags, PropagateTags, ProxyConfigurationType, ResourceManagementType, ResourceType, ScaleUnit, SchedulingStrategy, Scope, ServiceConnectAccessLoggingFormat, ServiceConnectIncludeQueryParameters, ServiceDeploymentLifecycleStage, ServiceDeploymentRollbackMonitorsStatus, ServiceDeploymentStatus, ServiceField, SettingName, SettingType, SortOrder, StabilityStatus, StopServiceDeploymentStopType, TargetType, TaskDefinitionFamilyStatus, TaskDefinitionField, TaskDefinitionPlacementConstraintType, TaskDefinitionStatus, TaskField, TaskFilesystemType, TaskSetField, TaskStopCode, TransportProtocol, UlimitName, VersionConsistency } from "./enums";
|
|
1
|
+
import type { DocumentType as __DocumentType } from "@smithy/types";
|
|
2
|
+
import type { AcceleratorManufacturer, AcceleratorName, AcceleratorType, AccessType, AgentUpdateStatus, ApplicationProtocol, AssignPublicIp, AvailabilityZoneRebalancing, BareMetal, BurstablePerformance, CapacityOptionType, CapacityProviderField, CapacityProviderStatus, CapacityProviderType, CapacityProviderUpdateStatus, CapacityReservationPreference, ClusterField, ClusterSettingName, Compatibility, Connectivity, ContainerCondition, ContainerInstanceField, ContainerInstanceStatus, CPUArchitecture, CpuManufacturer, DeploymentControllerType, DeploymentLifecycleHookStage, DeploymentRolloutState, DeploymentStrategy, DesiredStatus, DeviceCgroupPermission, EBSResourceType, EFSAuthorizationConfigIAM, EFSTransitEncryption, EnvironmentFileType, ExecuteCommandLogging, ExpressGatewayServiceInclude, ExpressGatewayServiceScalingMetric, ExpressGatewayServiceStatusCode, FirelensConfigurationType, HealthStatus, InstanceGeneration, InstanceHealthCheckState, InstanceHealthCheckType, IpcMode, LaunchType, LocalStorage, LocalStorageType, LogDriver, ManagedAgentName, ManagedDraining, ManagedInstancesMonitoringOptions, ManagedResourceStatus, ManagedScalingStatus, ManagedTerminationProtection, NetworkMode, OSFamily, PidMode, PlacementConstraintType, PlacementStrategyType, PlatformDeviceType, PropagateMITags, PropagateTags, ProxyConfigurationType, ResourceManagementType, ResourceType, ScaleUnit, SchedulingStrategy, Scope, ServiceConnectAccessLoggingFormat, ServiceConnectIncludeQueryParameters, ServiceDeploymentLifecycleStage, ServiceDeploymentRollbackMonitorsStatus, ServiceDeploymentStatus, ServiceField, SettingName, SettingType, SortOrder, StabilityStatus, StopServiceDeploymentStopType, TargetType, TaskDefinitionFamilyStatus, TaskDefinitionField, TaskDefinitionPlacementConstraintType, TaskDefinitionStatus, TaskField, TaskFilesystemType, TaskSetField, TaskStopCode, TransportProtocol, UlimitName, VersionConsistency } from "./enums";
|
|
3
3
|
/**
|
|
4
4
|
* <p>The minimum and maximum number of accelerators (such as GPUs) for instance type selection. This is used for workloads that require specific numbers of accelerators.</p>
|
|
5
5
|
* @public
|
|
@@ -380,6 +380,17 @@ export interface InstanceRequirementsRequest {
|
|
|
380
380
|
*/
|
|
381
381
|
maxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number | undefined;
|
|
382
382
|
}
|
|
383
|
+
/**
|
|
384
|
+
* <p>The local storage configuration for Amazon ECS Managed Instances. This defines how ECS uses and configures instance store volumes available on container instance.</p>
|
|
385
|
+
* @public
|
|
386
|
+
*/
|
|
387
|
+
export interface ManagedInstancesLocalStorageConfiguration {
|
|
388
|
+
/**
|
|
389
|
+
* <p>Use instance store volumes for data storage when available. EBS volumes are not provisioned for data storage. If the container instance has multiple instance store volumes, a single data volume is created. Consider defining instance store requirements using the <code>localStorage</code>, <code>localStorageTypes</code> and <code>totalLocalStorageGB</code> properties.</p>
|
|
390
|
+
* @public
|
|
391
|
+
*/
|
|
392
|
+
useLocalStorage?: boolean | undefined;
|
|
393
|
+
}
|
|
383
394
|
/**
|
|
384
395
|
* <p>The network configuration for Amazon ECS Managed Instances. This specifies the VPC subnets and security groups that instances use for network connectivity. Amazon ECS Managed Instances support multiple network modes including <code>awsvpc</code> (instances receive ENIs for task isolation), <code>host</code> (instances share network namespace with tasks), and <code>none</code> (no external network connectivity), ensuring backward compatibility for migrating workloads from Fargate or Amazon EC2.</p>
|
|
385
396
|
* @public
|
|
@@ -397,12 +408,12 @@ export interface ManagedInstancesNetworkConfiguration {
|
|
|
397
408
|
securityGroups?: string[] | undefined;
|
|
398
409
|
}
|
|
399
410
|
/**
|
|
400
|
-
* <p>The storage configuration for Amazon ECS Managed Instances. This defines the
|
|
411
|
+
* <p>The storage configuration for Amazon ECS Managed Instances. This defines the data volume configuration for the instances.</p>
|
|
401
412
|
* @public
|
|
402
413
|
*/
|
|
403
414
|
export interface ManagedInstancesStorageConfiguration {
|
|
404
415
|
/**
|
|
405
|
-
* <p>The size of the
|
|
416
|
+
* <p>The size of the data volume.</p>
|
|
406
417
|
* @public
|
|
407
418
|
*/
|
|
408
419
|
storageSizeGiB?: number | undefined;
|
|
@@ -423,10 +434,15 @@ export interface InstanceLaunchTemplate {
|
|
|
423
434
|
*/
|
|
424
435
|
networkConfiguration: ManagedInstancesNetworkConfiguration | undefined;
|
|
425
436
|
/**
|
|
426
|
-
* <p>The storage configuration for Amazon ECS Managed Instances. This defines the
|
|
437
|
+
* <p>The storage configuration for Amazon ECS Managed Instances. This defines the data volume properties for the instances.</p>
|
|
427
438
|
* @public
|
|
428
439
|
*/
|
|
429
440
|
storageConfiguration?: ManagedInstancesStorageConfiguration | undefined;
|
|
441
|
+
/**
|
|
442
|
+
* <p>The local storage configuration for Amazon ECS Managed Instances. This defines how ECS uses instance store volumes available on the container instance.</p>
|
|
443
|
+
* @public
|
|
444
|
+
*/
|
|
445
|
+
localStorageConfiguration?: ManagedInstancesLocalStorageConfiguration | undefined;
|
|
430
446
|
/**
|
|
431
447
|
* <p>CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring. By default, your managed instance is configured for basic monitoring. You can optionally enable detailed monitoring to help you more quickly identify and act on operational issues. You can enable or turn off detailed monitoring at launch or when the managed instance is running or stopped. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/detailed-monitoring-managed-instances.html">Detailed monitoring for Amazon ECS Managed Instances</a> in the Amazon ECS Developer Guide.</p>
|
|
432
448
|
* @public
|
|
@@ -764,6 +780,11 @@ export interface InstanceLaunchTemplateUpdate {
|
|
|
764
780
|
* @public
|
|
765
781
|
*/
|
|
766
782
|
instanceMetadataTagsPropagation?: boolean | undefined;
|
|
783
|
+
/**
|
|
784
|
+
* <p>The updated local storage configuration for Amazon ECS Managed Instances. Changes to local storage settings apply to new instances launched after the update.</p>
|
|
785
|
+
* @public
|
|
786
|
+
*/
|
|
787
|
+
localStorageConfiguration?: ManagedInstancesLocalStorageConfiguration | undefined;
|
|
767
788
|
/**
|
|
768
789
|
* <p>CloudWatch provides two categories of monitoring: basic monitoring and detailed monitoring. By default, your managed instance is configured for basic monitoring. You can optionally enable detailed monitoring to help you more quickly identify and act on operational issues. You can enable or turn off detailed monitoring at launch or when the managed instance is running or stopped. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/detailed-monitoring-managed-instances.html">Detailed monitoring for Amazon ECS Managed Instances</a> in the Amazon ECS Developer Guide.</p>
|
|
769
790
|
* @public
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAccountSettingsCommandInput, ListAccountSettingsCommandOutput } from "../commands/ListAccountSettingsCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListAttributesCommandInput, ListAttributesCommandOutput } from "../commands/ListAttributesCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListClustersCommandInput, ListClustersCommandOutput } from "../commands/ListClustersCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListContainerInstancesCommandInput, ListContainerInstancesCommandOutput } from "../commands/ListContainerInstancesCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListServicesByNamespaceCommandInput, ListServicesByNamespaceCommandOutput } from "../commands/ListServicesByNamespaceCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListServicesCommandInput, ListServicesCommandOutput } from "../commands/ListServicesCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListTaskDefinitionFamiliesCommandInput, ListTaskDefinitionFamiliesCommandOutput } from "../commands/ListTaskDefinitionFamiliesCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListTaskDefinitionsCommandInput, ListTaskDefinitionsCommandOutput } from "../commands/ListTaskDefinitionsCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { Paginator } from "@smithy/types";
|
|
2
2
|
import { ListTasksCommandInput, ListTasksCommandOutput } from "../commands/ListTasksCommand";
|
|
3
|
-
import { ECSPaginationConfiguration } from "./Interfaces";
|
|
3
|
+
import type { ECSPaginationConfiguration } from "./Interfaces";
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
@@ -18,7 +18,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
18
18
|
useDualstackEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
19
19
|
useFipsEndpoint: (boolean | import("@smithy/types").Provider<boolean>) & (boolean | import("@smithy/types").Provider<boolean | undefined>);
|
|
20
20
|
cacheMiddleware?: boolean | undefined;
|
|
21
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
21
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
22
22
|
protocolSettings: {
|
|
23
23
|
defaultNamespace?: string;
|
|
24
24
|
[setting: string]: unknown;
|
|
@@ -20,7 +20,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
20
20
|
useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
|
|
21
21
|
userAgentAppId: string | import("@smithy/types").Provider<string | undefined>;
|
|
22
22
|
cacheMiddleware?: boolean | undefined;
|
|
23
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
23
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
24
24
|
protocolSettings: {
|
|
25
25
|
defaultNamespace?: string;
|
|
26
26
|
[setting: string]: unknown;
|
|
@@ -7,7 +7,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
7
7
|
sha256: import("@smithy/types").HashConstructor;
|
|
8
8
|
requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
|
|
9
9
|
cacheMiddleware?: boolean;
|
|
10
|
-
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
10
|
+
protocol: import("@smithy/types").ClientProtocol<any, any> | import("@smithy/types").ClientProtocolCtor<any, any> | typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
11
11
|
protocolSettings: {
|
|
12
12
|
defaultNamespace?: string;
|
|
13
13
|
[setting: string]: unknown;
|
|
@@ -195,6 +195,7 @@ export declare var ManagedApplicationAutoScalingPolicy$: StaticStructureSchema;
|
|
|
195
195
|
export declare var ManagedAutoScaling$: StaticStructureSchema;
|
|
196
196
|
export declare var ManagedCertificate$: StaticStructureSchema;
|
|
197
197
|
export declare var ManagedIngressPath$: StaticStructureSchema;
|
|
198
|
+
export declare var ManagedInstancesLocalStorageConfiguration$: StaticStructureSchema;
|
|
198
199
|
export declare var ManagedInstancesNetworkConfiguration$: StaticStructureSchema;
|
|
199
200
|
export declare var ManagedInstancesProvider$: StaticStructureSchema;
|
|
200
201
|
export declare var ManagedInstancesStorageConfiguration$: StaticStructureSchema;
|
|
@@ -26,6 +26,7 @@ import {
|
|
|
26
26
|
Client as __Client,
|
|
27
27
|
} from "@smithy/smithy-client";
|
|
28
28
|
import {
|
|
29
|
+
AwsCredentialIdentityProvider,
|
|
29
30
|
BodyLengthCalculator as __BodyLengthCalculator,
|
|
30
31
|
CheckOptionalClientConfig as __CheckOptionalClientConfig,
|
|
31
32
|
ChecksumConstructor as __ChecksumConstructor,
|
|
@@ -37,8 +38,6 @@ import {
|
|
|
37
38
|
Provider as __Provider,
|
|
38
39
|
StreamCollector as __StreamCollector,
|
|
39
40
|
UrlParser as __UrlParser,
|
|
40
|
-
AwsCredentialIdentityProvider,
|
|
41
|
-
Provider,
|
|
42
41
|
UserAgent as __UserAgent,
|
|
43
42
|
} from "@smithy/types";
|
|
44
43
|
import {
|
|
@@ -456,7 +455,7 @@ export interface ClientDefaults
|
|
|
456
455
|
useFipsEndpoint?: boolean | __Provider<boolean>;
|
|
457
456
|
region?: string | __Provider<string>;
|
|
458
457
|
profile?: string;
|
|
459
|
-
defaultUserAgentProvider?:
|
|
458
|
+
defaultUserAgentProvider?: __Provider<__UserAgent>;
|
|
460
459
|
credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
|
|
461
460
|
maxAttempts?: number | __Provider<number>;
|
|
462
461
|
retryMode?: string | __Provider<string>;
|
|
@@ -181,6 +181,9 @@ export interface InstanceRequirementsRequest {
|
|
|
181
181
|
allowedInstanceTypes?: string[] | undefined;
|
|
182
182
|
maxSpotPriceAsPercentageOfOptimalOnDemandPrice?: number | undefined;
|
|
183
183
|
}
|
|
184
|
+
export interface ManagedInstancesLocalStorageConfiguration {
|
|
185
|
+
useLocalStorage?: boolean | undefined;
|
|
186
|
+
}
|
|
184
187
|
export interface ManagedInstancesNetworkConfiguration {
|
|
185
188
|
subnets?: string[] | undefined;
|
|
186
189
|
securityGroups?: string[] | undefined;
|
|
@@ -192,6 +195,9 @@ export interface InstanceLaunchTemplate {
|
|
|
192
195
|
ec2InstanceProfileArn: string | undefined;
|
|
193
196
|
networkConfiguration: ManagedInstancesNetworkConfiguration | undefined;
|
|
194
197
|
storageConfiguration?: ManagedInstancesStorageConfiguration | undefined;
|
|
198
|
+
localStorageConfiguration?:
|
|
199
|
+
| ManagedInstancesLocalStorageConfiguration
|
|
200
|
+
| undefined;
|
|
195
201
|
monitoring?: ManagedInstancesMonitoringOptions | undefined;
|
|
196
202
|
capacityOptionType?: CapacityOptionType | undefined;
|
|
197
203
|
instanceMetadataTagsPropagation?: boolean | undefined;
|
|
@@ -273,6 +279,9 @@ export interface InstanceLaunchTemplateUpdate {
|
|
|
273
279
|
networkConfiguration?: ManagedInstancesNetworkConfiguration | undefined;
|
|
274
280
|
storageConfiguration?: ManagedInstancesStorageConfiguration | undefined;
|
|
275
281
|
instanceMetadataTagsPropagation?: boolean | undefined;
|
|
282
|
+
localStorageConfiguration?:
|
|
283
|
+
| ManagedInstancesLocalStorageConfiguration
|
|
284
|
+
| undefined;
|
|
276
285
|
monitoring?: ManagedInstancesMonitoringOptions | undefined;
|
|
277
286
|
instanceRequirements?: InstanceRequirementsRequest | undefined;
|
|
278
287
|
capacityReservations?: CapacityReservationRequest | undefined;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -30,7 +30,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
30
30
|
protocol:
|
|
31
31
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
32
32
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
33
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
33
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
34
34
|
protocolSettings: {
|
|
35
35
|
defaultNamespace?: string;
|
|
36
36
|
[setting: string]: unknown;
|
|
@@ -12,7 +12,7 @@ export declare const getRuntimeConfig: (config: ECSClientConfig) => {
|
|
|
12
12
|
protocol:
|
|
13
13
|
| import("@smithy/types").ClientProtocol<any, any>
|
|
14
14
|
| import("@smithy/types").ClientProtocolCtor<any, any>
|
|
15
|
-
| typeof import("@aws-sdk/core").AwsJson1_1Protocol;
|
|
15
|
+
| typeof import("@aws-sdk/core/protocols").AwsJson1_1Protocol;
|
|
16
16
|
protocolSettings: {
|
|
17
17
|
defaultNamespace?: string;
|
|
18
18
|
[setting: string]: unknown;
|
|
@@ -194,6 +194,7 @@ export declare var ManagedApplicationAutoScalingPolicy$: StaticStructureSchema;
|
|
|
194
194
|
export declare var ManagedAutoScaling$: StaticStructureSchema;
|
|
195
195
|
export declare var ManagedCertificate$: StaticStructureSchema;
|
|
196
196
|
export declare var ManagedIngressPath$: StaticStructureSchema;
|
|
197
|
+
export declare var ManagedInstancesLocalStorageConfiguration$: StaticStructureSchema;
|
|
197
198
|
export declare var ManagedInstancesNetworkConfiguration$: StaticStructureSchema;
|
|
198
199
|
export declare var ManagedInstancesProvider$: StaticStructureSchema;
|
|
199
200
|
export declare var ManagedInstancesStorageConfiguration$: StaticStructureSchema;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
3
|
-
import { ECSClient } from "../ECSClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilServicesInactive instead. waitForServicesInactive does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
3
|
-
import { ECSClient } from "../ECSClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeServicesCommandInput } from "../commands/DescribeServicesCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilServicesStable instead. waitForServicesStable does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
3
|
-
import { ECSClient } from "../ECSClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilTasksRunning instead. waitForTasksRunning does not throw error in non-success cases.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
3
|
-
import { ECSClient } from "../ECSClient";
|
|
1
|
+
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
+
import { type DescribeTasksCommandInput } from "../commands/DescribeTasksCommand";
|
|
3
|
+
import type { ECSClient } from "../ECSClient";
|
|
4
4
|
/**
|
|
5
5
|
*
|
|
6
6
|
* @deprecated Use waitUntilTasksStopped instead. waitForTasksStopped does not throw error in non-success cases.
|
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.1020.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 client-ecs",
|
|
@@ -23,43 +23,43 @@
|
|
|
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.973.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.973.26",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.28",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.8",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.8",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.9",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.27",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.10",
|
|
33
33
|
"@aws-sdk/types": "^3.973.6",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.5",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.8",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.13",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.13",
|
|
38
|
-
"@smithy/core": "^3.23.
|
|
38
|
+
"@smithy/core": "^3.23.13",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.15",
|
|
40
40
|
"@smithy/hash-node": "^4.2.12",
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.12",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.12",
|
|
43
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
44
|
-
"@smithy/middleware-retry": "^4.4.
|
|
45
|
-
"@smithy/middleware-serde": "^4.2.
|
|
43
|
+
"@smithy/middleware-endpoint": "^4.4.28",
|
|
44
|
+
"@smithy/middleware-retry": "^4.4.45",
|
|
45
|
+
"@smithy/middleware-serde": "^4.2.16",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.12",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.12",
|
|
48
|
-
"@smithy/node-http-handler": "^4.5.
|
|
48
|
+
"@smithy/node-http-handler": "^4.5.1",
|
|
49
49
|
"@smithy/protocol-http": "^5.3.12",
|
|
50
|
-
"@smithy/smithy-client": "^4.12.
|
|
50
|
+
"@smithy/smithy-client": "^4.12.8",
|
|
51
51
|
"@smithy/types": "^4.13.1",
|
|
52
52
|
"@smithy/url-parser": "^4.2.12",
|
|
53
53
|
"@smithy/util-base64": "^4.3.2",
|
|
54
54
|
"@smithy/util-body-length-browser": "^4.2.2",
|
|
55
55
|
"@smithy/util-body-length-node": "^4.2.3",
|
|
56
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
57
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
56
|
+
"@smithy/util-defaults-mode-browser": "^4.3.44",
|
|
57
|
+
"@smithy/util-defaults-mode-node": "^4.2.48",
|
|
58
58
|
"@smithy/util-endpoints": "^3.3.3",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.12",
|
|
60
60
|
"@smithy/util-retry": "^4.2.12",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
|
-
"@smithy/util-waiter": "^4.2.
|
|
62
|
+
"@smithy/util-waiter": "^4.2.14",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|