@aws-sdk/client-ecs 3.935.0 → 3.937.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +32 -0
- package/dist-cjs/index.js +526 -45
- package/dist-es/ECS.js +8 -0
- package/dist-es/commands/CreateExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/DeleteExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/DescribeExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/UpdateExpressGatewayServiceCommand.js +16 -0
- package/dist-es/commands/index.js +4 -0
- package/dist-es/models/enums.js +28 -0
- package/dist-es/models/errors.js +8 -8
- package/dist-es/schemas/schemas_0.js +429 -37
- package/dist-types/ECS.d.ts +28 -0
- package/dist-types/ECSClient.d.ts +6 -2
- package/dist-types/commands/CreateExpressGatewayServiceCommand.d.ts +240 -0
- package/dist-types/commands/CreateServiceCommand.d.ts +10 -0
- package/dist-types/commands/DeleteExpressGatewayServiceCommand.d.ts +187 -0
- package/dist-types/commands/DeleteServiceCommand.d.ts +10 -0
- package/dist-types/commands/DescribeExpressGatewayServiceCommand.d.ts +184 -0
- package/dist-types/commands/DescribeServiceRevisionsCommand.d.ts +105 -0
- package/dist-types/commands/DescribeServicesCommand.d.ts +10 -0
- package/dist-types/commands/ListServicesCommand.d.ts +1 -0
- package/dist-types/commands/UpdateExpressGatewayServiceCommand.d.ts +222 -0
- package/dist-types/commands/UpdateServiceCommand.d.ts +10 -0
- package/dist-types/commands/index.d.ts +4 -0
- package/dist-types/models/enums.d.ts +76 -0
- package/dist-types/models/errors.d.ts +12 -12
- package/dist-types/models/models_0.d.ts +3808 -2758
- package/dist-types/schemas/schemas_0.d.ts +46 -0
- package/dist-types/ts3.4/ECS.d.ts +68 -0
- package/dist-types/ts3.4/ECSClient.d.ts +24 -0
- package/dist-types/ts3.4/commands/CreateExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DeleteExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DescribeExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/UpdateExpressGatewayServiceCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +4 -0
- package/dist-types/ts3.4/models/enums.d.ts +39 -0
- package/dist-types/ts3.4/models/errors.d.ts +6 -6
- package/dist-types/ts3.4/models/models_0.d.ts +229 -4
- package/dist-types/ts3.4/schemas/schemas_0.d.ts +46 -0
- package/package.json +12 -12
package/dist-cjs/index.js
CHANGED
|
@@ -346,28 +346,28 @@ let TaskSetNotFoundException$1 = class TaskSetNotFoundException extends ECSServi
|
|
|
346
346
|
Object.setPrototypeOf(this, TaskSetNotFoundException.prototype);
|
|
347
347
|
}
|
|
348
348
|
};
|
|
349
|
-
let
|
|
350
|
-
name = "
|
|
349
|
+
let ResourceNotFoundException$1 = class ResourceNotFoundException extends ECSServiceException$1 {
|
|
350
|
+
name = "ResourceNotFoundException";
|
|
351
351
|
$fault = "client";
|
|
352
352
|
constructor(opts) {
|
|
353
353
|
super({
|
|
354
|
-
name: "
|
|
354
|
+
name: "ResourceNotFoundException",
|
|
355
355
|
$fault: "client",
|
|
356
356
|
...opts,
|
|
357
357
|
});
|
|
358
|
-
Object.setPrototypeOf(this,
|
|
358
|
+
Object.setPrototypeOf(this, ResourceNotFoundException.prototype);
|
|
359
359
|
}
|
|
360
360
|
};
|
|
361
|
-
let
|
|
362
|
-
name = "
|
|
361
|
+
let TargetNotConnectedException$1 = class TargetNotConnectedException extends ECSServiceException$1 {
|
|
362
|
+
name = "TargetNotConnectedException";
|
|
363
363
|
$fault = "client";
|
|
364
364
|
constructor(opts) {
|
|
365
365
|
super({
|
|
366
|
-
name: "
|
|
366
|
+
name: "TargetNotConnectedException",
|
|
367
367
|
$fault: "client",
|
|
368
368
|
...opts,
|
|
369
369
|
});
|
|
370
|
-
Object.setPrototypeOf(this,
|
|
370
|
+
Object.setPrototypeOf(this, TargetNotConnectedException.prototype);
|
|
371
371
|
}
|
|
372
372
|
};
|
|
373
373
|
let AttributeLimitExceededException$1 = class AttributeLimitExceededException extends ECSServiceException$1 {
|
|
@@ -501,6 +501,9 @@ const _CDo = "ContainerDependency";
|
|
|
501
501
|
const _CDon = "ContainerDefinitions";
|
|
502
502
|
const _CDont = "ContainerDependencies";
|
|
503
503
|
const _CE = "ClientException";
|
|
504
|
+
const _CEGS = "CreateExpressGatewayService";
|
|
505
|
+
const _CEGSR = "CreateExpressGatewayServiceRequest";
|
|
506
|
+
const _CEGSRr = "CreateExpressGatewayServiceResponse";
|
|
504
507
|
const _CEo = "ConflictException";
|
|
505
508
|
const _CI = "ContainerImage";
|
|
506
509
|
const _CIHS = "ContainerInstanceHealthStatus";
|
|
@@ -562,6 +565,12 @@ const _DCResc = "DescribeClustersResponse";
|
|
|
562
565
|
const _DCe = "DeploymentController";
|
|
563
566
|
const _DCel = "DeleteCluster";
|
|
564
567
|
const _DCes = "DescribeClusters";
|
|
568
|
+
const _DEGS = "DeleteExpressGatewayService";
|
|
569
|
+
const _DEGSR = "DeleteExpressGatewayServiceRequest";
|
|
570
|
+
const _DEGSRe = "DeleteExpressGatewayServiceResponse";
|
|
571
|
+
const _DEGSRes = "DescribeExpressGatewayServiceRequest";
|
|
572
|
+
const _DEGSResc = "DescribeExpressGatewayServiceResponse";
|
|
573
|
+
const _DEGSe = "DescribeExpressGatewayService";
|
|
565
574
|
const _DES = "DeploymentEphemeralStorage";
|
|
566
575
|
const _DL = "DevicesList";
|
|
567
576
|
const _DLH = "DeploymentLifecycleHook";
|
|
@@ -609,10 +618,20 @@ const _ECC = "ExecuteCommandConfiguration";
|
|
|
609
618
|
const _ECLC = "ExecuteCommandLogConfiguration";
|
|
610
619
|
const _ECR = "ExecuteCommandRequest";
|
|
611
620
|
const _ECRx = "ExecuteCommandResponse";
|
|
621
|
+
const _ECSEGS = "ECSExpressGatewayService";
|
|
622
|
+
const _ECSMR = "ECSManagedResources";
|
|
612
623
|
const _EF = "EnvironmentFile";
|
|
613
624
|
const _EFSAC = "EFSAuthorizationConfig";
|
|
614
625
|
const _EFSVC = "EFSVolumeConfiguration";
|
|
615
626
|
const _EFn = "EnvironmentFiles";
|
|
627
|
+
const _EGC = "ExpressGatewayContainer";
|
|
628
|
+
const _EGRC = "ExpressGatewayRepositoryCredentials";
|
|
629
|
+
const _EGSALC = "ExpressGatewayServiceAwsLogsConfiguration";
|
|
630
|
+
const _EGSC = "ExpressGatewayServiceConfiguration";
|
|
631
|
+
const _EGSCx = "ExpressGatewayServiceConfigurations";
|
|
632
|
+
const _EGSNC = "ExpressGatewayServiceNetworkConfiguration";
|
|
633
|
+
const _EGSS = "ExpressGatewayServiceStatus";
|
|
634
|
+
const _EGST = "ExpressGatewayScalingTarget";
|
|
616
635
|
const _EIT = "ExcludedInstanceType";
|
|
617
636
|
const _EITS = "ExcludedInstanceTypeSet";
|
|
618
637
|
const _ES = "EphemeralStorage";
|
|
@@ -641,6 +660,8 @@ const _ILT = "InstanceLaunchTemplate";
|
|
|
641
660
|
const _ILTU = "InstanceLaunchTemplateUpdate";
|
|
642
661
|
const _IO = "InfrastructureOptimization";
|
|
643
662
|
const _IPE = "InvalidParameterException";
|
|
663
|
+
const _IPS = "IngressPathSummary";
|
|
664
|
+
const _IPSn = "IngressPathSummaries";
|
|
644
665
|
const _IRR = "InstanceRequirementsRequest";
|
|
645
666
|
const _KC = "KernelCapabilities";
|
|
646
667
|
const _KVP = "KeyValuePair";
|
|
@@ -686,18 +707,36 @@ const _LTFRRi = "ListTagsForResourceResponse";
|
|
|
686
707
|
const _LTR = "ListTasksRequest";
|
|
687
708
|
const _LTRi = "ListTasksResponse";
|
|
688
709
|
const _MA = "ManagedAgent";
|
|
710
|
+
const _MAASP = "ManagedApplicationAutoScalingPolicy";
|
|
711
|
+
const _MAASPa = "ManagedApplicationAutoScalingPolicies";
|
|
712
|
+
const _MAS = "ManagedAutoScaling";
|
|
689
713
|
const _MASC = "ManagedAgentStateChange";
|
|
690
714
|
const _MASCa = "ManagedAgentStateChanges";
|
|
691
715
|
const _MAa = "ManagedAgents";
|
|
716
|
+
const _MC = "ManagedCertificate";
|
|
692
717
|
const _MGBPVCR = "MemoryGiBPerVCpuRequest";
|
|
693
718
|
const _MINC = "ManagedInstancesNetworkConfiguration";
|
|
694
|
-
const _MIP = "
|
|
719
|
+
const _MIP = "ManagedIngressPath";
|
|
720
|
+
const _MIPa = "ManagedInstancesProvider";
|
|
721
|
+
const _MIPan = "ManagedIngressPaths";
|
|
695
722
|
const _MISC = "ManagedInstancesStorageConfiguration";
|
|
723
|
+
const _ML = "ManagedListener";
|
|
724
|
+
const _MLB = "ManagedLoadBalancer";
|
|
725
|
+
const _MLG = "ManagedLogGroup";
|
|
726
|
+
const _MLGa = "ManagedLogGroups";
|
|
727
|
+
const _MLR = "ManagedListenerRule";
|
|
728
|
+
const _MMA = "ManagedMetricAlarm";
|
|
729
|
+
const _MMAa = "ManagedMetricAlarms";
|
|
696
730
|
const _MMBR = "MemoryMiBRequest";
|
|
697
731
|
const _MP = "MountPoint";
|
|
698
732
|
const _MPL = "MountPointList";
|
|
699
733
|
const _MS = "ManagedScaling";
|
|
700
734
|
const _MSC = "ManagedStorageConfiguration";
|
|
735
|
+
const _MSG = "ManagedSecurityGroup";
|
|
736
|
+
const _MSGa = "ManagedSecurityGroups";
|
|
737
|
+
const _MST = "ManagedScalableTarget";
|
|
738
|
+
const _MTG = "ManagedTargetGroup";
|
|
739
|
+
const _MTGa = "ManagedTargetGroups";
|
|
701
740
|
const _MVE = "MissingVersionException";
|
|
702
741
|
const _NB = "NetworkBinding";
|
|
703
742
|
const _NBGR = "NetworkBandwidthGbpsRequest";
|
|
@@ -763,6 +802,8 @@ const _SCALC = "ServiceConnectAccessLogConfiguration";
|
|
|
763
802
|
const _SCC = "ServiceConnectConfiguration";
|
|
764
803
|
const _SCCA = "ServiceConnectClientAlias";
|
|
765
804
|
const _SCCAL = "ServiceConnectClientAliasList";
|
|
805
|
+
const _SCRS = "ServiceCurrentRevisionSummary";
|
|
806
|
+
const _SCRSL = "ServiceCurrentRevisionSummaryList";
|
|
766
807
|
const _SCS = "ServiceConnectService";
|
|
767
808
|
const _SCSC = "SubmitContainerStateChange";
|
|
768
809
|
const _SCSCR = "SubmitContainerStateChangeRequest";
|
|
@@ -862,6 +903,10 @@ const _UCRp = "UpdateClusterResponse";
|
|
|
862
903
|
const _UCS = "UpdateClusterSettings";
|
|
863
904
|
const _UCSR = "UpdateClusterSettingsRequest";
|
|
864
905
|
const _UCSRp = "UpdateClusterSettingsResponse";
|
|
906
|
+
const _UEGS = "UpdatedExpressGatewayService";
|
|
907
|
+
const _UEGSR = "UpdateExpressGatewayServiceRequest";
|
|
908
|
+
const _UEGSRp = "UpdateExpressGatewayServiceResponse";
|
|
909
|
+
const _UEGSp = "UpdateExpressGatewayService";
|
|
865
910
|
const _UFE = "UnsupportedFeatureException";
|
|
866
911
|
const _UIPE = "UpdateInProgressException";
|
|
867
912
|
const _UL = "UlimitList";
|
|
@@ -891,15 +936,18 @@ const _VLC = "VpcLatticeConfiguration";
|
|
|
891
936
|
const _VLCp = "VpcLatticeConfigurations";
|
|
892
937
|
const _a = "attachments";
|
|
893
938
|
const _aA = "attachmentArn";
|
|
939
|
+
const _aASP = "applicationAutoScalingPolicies";
|
|
894
940
|
const _aC = "agentConnected";
|
|
895
|
-
const _aCc = "
|
|
941
|
+
const _aCc = "activeConfigurations";
|
|
942
|
+
const _aCcc = "acceleratorCount";
|
|
896
943
|
const _aCd = "advancedConfiguration";
|
|
897
944
|
const _aCu = "authorizationConfig";
|
|
898
945
|
const _aCw = "awsvpcConfiguration";
|
|
899
946
|
const _aH = "agentHash";
|
|
900
947
|
const _aI = "attachmentId";
|
|
901
948
|
const _aIT = "allowedInstanceTypes";
|
|
902
|
-
const _aLC = "
|
|
949
|
+
const _aLC = "awsLogsConfiguration";
|
|
950
|
+
const _aLCc = "accessLogConfiguration";
|
|
903
951
|
const _aM = "acceleratorManufacturers";
|
|
904
952
|
const _aN = "alarmNames";
|
|
905
953
|
const _aNc = "acceleratorNames";
|
|
@@ -912,9 +960,13 @@ const _aS = "attachmentsStatus";
|
|
|
912
960
|
const _aSC = "activeServicesCount";
|
|
913
961
|
const _aSGA = "autoScalingGroupArn";
|
|
914
962
|
const _aSGP = "autoScalingGroupProvider";
|
|
915
|
-
const
|
|
963
|
+
const _aSM = "autoScalingMetric";
|
|
964
|
+
const _aSTV = "autoScalingTargetValue";
|
|
965
|
+
const _aSu = "autoScaling";
|
|
966
|
+
const _aT = "accessType";
|
|
916
967
|
const _aTGA = "alternateTargetGroupArn";
|
|
917
968
|
const _aTMMB = "acceleratorTotalMemoryMiB";
|
|
969
|
+
const _aTc = "acceleratorTypes";
|
|
918
970
|
const _aUS = "agentUpdateStatus";
|
|
919
971
|
const _aV = "attributeValue";
|
|
920
972
|
const _aVg = "agentVersion";
|
|
@@ -946,8 +998,9 @@ const _cAr = "createdAt";
|
|
|
946
998
|
const _cB = "createdBy";
|
|
947
999
|
const _cBTIM = "canaryBakeTimeInMinutes";
|
|
948
1000
|
const _cC = "canaryConfiguration";
|
|
949
|
-
const _cD = "
|
|
1001
|
+
const _cD = "currentDeployment";
|
|
950
1002
|
const _cDC = "computedDesiredCount";
|
|
1003
|
+
const _cDo = "containerDefinitions";
|
|
951
1004
|
const _cI = "containerInstance";
|
|
952
1005
|
const _cIA = "containerInstanceArn";
|
|
953
1006
|
const _cIAo = "containerInstanceArns";
|
|
@@ -968,10 +1021,13 @@ const _cPo = "containerPath";
|
|
|
968
1021
|
const _cPon = "containerPort";
|
|
969
1022
|
const _cPr = "credentialsParameter";
|
|
970
1023
|
const _cS = "credentialSpecs";
|
|
1024
|
+
const _cSD = "currentServiceDeployment";
|
|
1025
|
+
const _cSR = "currentServiceRevisions";
|
|
971
1026
|
const _cT = "clientToken";
|
|
972
1027
|
const _cWEE = "cloudWatchEncryptionEnabled";
|
|
973
1028
|
const _cWLGN = "cloudWatchLogGroupName";
|
|
974
1029
|
const _ca = "capabilities";
|
|
1030
|
+
const _ce = "certificate";
|
|
975
1031
|
const _cl = "cluster";
|
|
976
1032
|
const _clu = "clusters";
|
|
977
1033
|
const _co = "configuration";
|
|
@@ -996,6 +1052,7 @@ const _dN = "disableNetworking";
|
|
|
996
1052
|
const _dNe = "deviceName";
|
|
997
1053
|
const _dNi = "discoveryName";
|
|
998
1054
|
const _dNn = "dnsName";
|
|
1055
|
+
const _dNo = "domainName";
|
|
999
1056
|
const _dO = "dependsOn";
|
|
1000
1057
|
const _dOT = "deleteOnTermination";
|
|
1001
1058
|
const _dOr = "driverOpts";
|
|
@@ -1027,6 +1084,7 @@ const _eII = "ec2InstanceId";
|
|
|
1027
1084
|
const _eIM = "expiresInMinutes";
|
|
1028
1085
|
const _eIPA = "ec2InstanceProfileArn";
|
|
1029
1086
|
const _eIT = "excludedInstanceTypes";
|
|
1087
|
+
const _eMR = "ecsManagedResources";
|
|
1030
1088
|
const _eP = "entryPoint";
|
|
1031
1089
|
const _eRA = "executionRoleArn";
|
|
1032
1090
|
const _eS = "effectiveSettings";
|
|
@@ -1066,6 +1124,8 @@ const _gI = "gpuIds";
|
|
|
1066
1124
|
const _h = "hostname";
|
|
1067
1125
|
const _hC = "healthCheck";
|
|
1068
1126
|
const _hCGPS = "healthCheckGracePeriodSeconds";
|
|
1127
|
+
const _hCP = "healthCheckPath";
|
|
1128
|
+
const _hCPe = "healthCheckPort";
|
|
1069
1129
|
const _hD = "hookDetails";
|
|
1070
1130
|
const _hL = "hardLimit";
|
|
1071
1131
|
const _hP = "hostPath";
|
|
@@ -1089,6 +1149,7 @@ const _iIDS = "instanceIdentityDocumentSignature";
|
|
|
1089
1149
|
const _iLT = "instanceLaunchTemplate";
|
|
1090
1150
|
const _iM = "ipcMode";
|
|
1091
1151
|
const _iO = "infrastructureOptimization";
|
|
1152
|
+
const _iP = "ingressPaths";
|
|
1092
1153
|
const _iPE = "initProcessEnabled";
|
|
1093
1154
|
const _iPO = "ingressPortOverride";
|
|
1094
1155
|
const _iQP = "includeQueryParameters";
|
|
@@ -1110,14 +1171,20 @@ const _kKI = "kmsKeyId";
|
|
|
1110
1171
|
const _l = "links";
|
|
1111
1172
|
const _lB = "loadBalancers";
|
|
1112
1173
|
const _lBN = "loadBalancerName";
|
|
1174
|
+
const _lBSG = "loadBalancerSecurityGroups";
|
|
1175
|
+
const _lBo = "loadBalancer";
|
|
1113
1176
|
const _lC = "logConfiguration";
|
|
1114
1177
|
const _lCi = "linearConfiguration";
|
|
1115
1178
|
const _lD = "logDriver";
|
|
1179
|
+
const _lG = "logGroups";
|
|
1180
|
+
const _lGN = "logGroupName";
|
|
1181
|
+
const _lGo = "logGroup";
|
|
1116
1182
|
const _lH = "lifecycleHooks";
|
|
1117
1183
|
const _lP = "linuxParameters";
|
|
1118
1184
|
const _lS = "lastStatus";
|
|
1119
1185
|
const _lSA = "lastStartedAt";
|
|
1120
1186
|
const _lSC = "lastStatusChange";
|
|
1187
|
+
const _lSP = "logStreamPrefix";
|
|
1121
1188
|
const _lST = "localStorageTypes";
|
|
1122
1189
|
const _lSi = "lifecycleStages";
|
|
1123
1190
|
const _lSif = "lifecycleStage";
|
|
@@ -1126,10 +1193,14 @@ const _lT = "launchType";
|
|
|
1126
1193
|
const _lU = "lastUpdated";
|
|
1127
1194
|
const _lV = "longValue";
|
|
1128
1195
|
const _la = "labels";
|
|
1196
|
+
const _li = "listener";
|
|
1129
1197
|
const _lo = "logging";
|
|
1130
1198
|
const _m = "min";
|
|
1131
1199
|
const _mA = "managedAgents";
|
|
1132
1200
|
const _mAN = "managedAgentName";
|
|
1201
|
+
const _mAe = "metricAlarms";
|
|
1202
|
+
const _mC = "minCapacity";
|
|
1203
|
+
const _mCa = "maxCapacity";
|
|
1133
1204
|
const _mD = "managedDraining";
|
|
1134
1205
|
const _mEBSV = "managedEBSVolume";
|
|
1135
1206
|
const _mGBPVC = "memoryGiBPerVCpu";
|
|
@@ -1147,10 +1218,13 @@ const _mSPAPOOODP = "maxSpotPriceAsPercentageOfOptimalOnDemandPrice";
|
|
|
1147
1218
|
const _mSSS = "minimumScalingStepSize";
|
|
1148
1219
|
const _mSSSa = "maximumScalingStepSize";
|
|
1149
1220
|
const _mSa = "maxSwap";
|
|
1221
|
+
const _mTC = "minTaskCount";
|
|
1222
|
+
const _mTCa = "maxTaskCount";
|
|
1150
1223
|
const _mTP = "managedTerminationProtection";
|
|
1151
1224
|
const _ma = "max";
|
|
1152
1225
|
const _me = "message";
|
|
1153
1226
|
const _mem = "memory";
|
|
1227
|
+
const _met = "metric";
|
|
1154
1228
|
const _mo = "monitoring";
|
|
1155
1229
|
const _n = "name";
|
|
1156
1230
|
const _nB = "networkBindings";
|
|
@@ -1168,8 +1242,9 @@ const _oSF = "operatingSystemFamily";
|
|
|
1168
1242
|
const _ov = "overrides";
|
|
1169
1243
|
const _p = "privileged";
|
|
1170
1244
|
const _pA = "principalArn";
|
|
1171
|
-
const _pC = "
|
|
1245
|
+
const _pC = "primaryContainer";
|
|
1172
1246
|
const _pCe = "pendingCount";
|
|
1247
|
+
const _pCl = "placementConstraints";
|
|
1173
1248
|
const _pCr = "proxyConfiguration";
|
|
1174
1249
|
const _pD = "platformDevices";
|
|
1175
1250
|
const _pE = "protectionEnabled";
|
|
@@ -1187,6 +1262,7 @@ const _pT = "pseudoTerminal";
|
|
|
1187
1262
|
const _pTC = "pendingTasksCount";
|
|
1188
1263
|
const _pTCe = "pendingTaskCount";
|
|
1189
1264
|
const _pTS = "primaryTaskSet";
|
|
1265
|
+
const _pTo = "policyType";
|
|
1190
1266
|
const _pTr = "propagateTags";
|
|
1191
1267
|
const _pTro = "protectedTasks";
|
|
1192
1268
|
const _pV = "platformVersion";
|
|
@@ -1212,6 +1288,7 @@ const _rHS = "requireHibernateSupport";
|
|
|
1212
1288
|
const _rI = "resourceIds";
|
|
1213
1289
|
const _rIe = "referenceId";
|
|
1214
1290
|
const _rIu = "runtimeId";
|
|
1291
|
+
const _rMT = "resourceManagementType";
|
|
1215
1292
|
const _rO = "readOnly";
|
|
1216
1293
|
const _rP = "restartPolicy";
|
|
1217
1294
|
const _rPTW = "requestedProductionTrafficWeight";
|
|
@@ -1231,9 +1308,10 @@ const _re = "retries";
|
|
|
1231
1308
|
const _rev = "revision";
|
|
1232
1309
|
const _ro = "role";
|
|
1233
1310
|
const _rol = "rollback";
|
|
1311
|
+
const _ru = "rule";
|
|
1234
1312
|
const _s = "status";
|
|
1235
|
-
const _sA = "
|
|
1236
|
-
const _sAe = "
|
|
1313
|
+
const _sA = "serviceArn";
|
|
1314
|
+
const _sAe = "serviceArns";
|
|
1237
1315
|
const _sAt = "startedAt";
|
|
1238
1316
|
const _sAto = "stoppedAt";
|
|
1239
1317
|
const _sAtop = "stoppingAt";
|
|
@@ -1246,17 +1324,20 @@ const _sCD = "serviceConnectDefaults";
|
|
|
1246
1324
|
const _sCE = "serviceConnectEndpoint";
|
|
1247
1325
|
const _sCR = "serviceConnectResources";
|
|
1248
1326
|
const _sCo = "sourceContainer";
|
|
1249
|
-
const _sCt = "
|
|
1250
|
-
const _sCto = "
|
|
1327
|
+
const _sCt = "statusCode";
|
|
1328
|
+
const _sCto = "storageConfiguration";
|
|
1329
|
+
const _sCtop = "stopCode";
|
|
1251
1330
|
const _sD = "serviceDeployments";
|
|
1252
1331
|
const _sDA = "serviceDeploymentArns";
|
|
1253
1332
|
const _sDAe = "serviceDeploymentArn";
|
|
1254
1333
|
const _sEE = "s3EncryptionEnabled";
|
|
1255
1334
|
const _sG = "securityGroups";
|
|
1256
|
-
const
|
|
1335
|
+
const _sGI = "securityGroupIds";
|
|
1336
|
+
const _sI = "subnetIds";
|
|
1257
1337
|
const _sIA = "scaleInAfter";
|
|
1258
1338
|
const _sIGB = "sizeInGiB";
|
|
1259
1339
|
const _sIe = "sessionId";
|
|
1340
|
+
const _sIn = "snapshotId";
|
|
1260
1341
|
const _sKP = "s3KeyPrefix";
|
|
1261
1342
|
const _sL = "softLimit";
|
|
1262
1343
|
const _sMPPOLP = "spotMaxPricePercentageOverLowestPrice";
|
|
@@ -1274,16 +1355,20 @@ const _sRer = "serviceRevisions";
|
|
|
1274
1355
|
const _sRt = "stoppedReason";
|
|
1275
1356
|
const _sS = "schedulingStrategy";
|
|
1276
1357
|
const _sSA = "stabilityStatusAt";
|
|
1358
|
+
const _sSG = "serviceSecurityGroups";
|
|
1277
1359
|
const _sSGB = "storageSizeGiB";
|
|
1278
1360
|
const _sSR = "sourceServiceRevisions";
|
|
1279
1361
|
const _sSV = "stringSetValue";
|
|
1280
1362
|
const _sSt = "stabilityStatus";
|
|
1281
1363
|
const _sT = "startTimeout";
|
|
1364
|
+
const _sTc = "scalingTarget";
|
|
1365
|
+
const _sTca = "scalableTarget";
|
|
1282
1366
|
const _sTt = "stopTimeout";
|
|
1283
1367
|
const _sTto = "stopType";
|
|
1284
1368
|
const _sU = "streamUrl";
|
|
1285
1369
|
const _sV = "sourceVolume";
|
|
1286
1370
|
const _sc = "scale";
|
|
1371
|
+
const _sch = "scheme";
|
|
1287
1372
|
const _sco = "scope";
|
|
1288
1373
|
const _se = "settings";
|
|
1289
1374
|
const _sec = "secrets";
|
|
@@ -1304,6 +1389,7 @@ const _tA = "taskArn";
|
|
|
1304
1389
|
const _tAN = "triggeredAlarmNames";
|
|
1305
1390
|
const _tAa = "taskArns";
|
|
1306
1391
|
const _tC = "targetCapacity";
|
|
1392
|
+
const _tCa = "targetConfiguration";
|
|
1307
1393
|
const _tD = "taskDefinition";
|
|
1308
1394
|
const _tDA = "taskDefinitionArns";
|
|
1309
1395
|
const _tDAa = "taskDefinitionArn";
|
|
@@ -1311,6 +1397,7 @@ const _tDa = "taskDefinitions";
|
|
|
1311
1397
|
const _tE = "telemetryEndpoint";
|
|
1312
1398
|
const _tEP = "transitEncryptionPort";
|
|
1313
1399
|
const _tEr = "transitEncryption";
|
|
1400
|
+
const _tG = "targetGroups";
|
|
1314
1401
|
const _tGA = "targetGroupArn";
|
|
1315
1402
|
const _tI = "targetId";
|
|
1316
1403
|
const _tK = "tagKeys";
|
|
@@ -1327,7 +1414,8 @@ const _tSa = "taskSets";
|
|
|
1327
1414
|
const _tSag = "tagSpecifications";
|
|
1328
1415
|
const _tT = "targetType";
|
|
1329
1416
|
const _tTR = "testTrafficRules";
|
|
1330
|
-
const _tV = "
|
|
1417
|
+
const _tV = "targetValue";
|
|
1418
|
+
const _tVo = "tokenValue";
|
|
1331
1419
|
const _ta = "tags";
|
|
1332
1420
|
const _tas = "tasks";
|
|
1333
1421
|
const _task = "task";
|
|
@@ -1729,6 +1817,35 @@ var CreateClusterRequest = [
|
|
|
1729
1817
|
];
|
|
1730
1818
|
var CreateClusterResponse = [3, n0, _CCRr, 0, [_cl], [() => Cluster]];
|
|
1731
1819
|
var CreatedAt = [3, n0, _CA, 0, [_be, _af], [4, 4]];
|
|
1820
|
+
var CreateExpressGatewayServiceRequest = [
|
|
1821
|
+
3,
|
|
1822
|
+
n0,
|
|
1823
|
+
_CEGSR,
|
|
1824
|
+
0,
|
|
1825
|
+
[_eRA, _iRA, _sN, _cl, _hCP, _pC, _tRA, _nC, _cp, _mem, _sTc, _ta],
|
|
1826
|
+
[
|
|
1827
|
+
0,
|
|
1828
|
+
0,
|
|
1829
|
+
0,
|
|
1830
|
+
0,
|
|
1831
|
+
0,
|
|
1832
|
+
() => ExpressGatewayContainer,
|
|
1833
|
+
0,
|
|
1834
|
+
() => ExpressGatewayServiceNetworkConfiguration,
|
|
1835
|
+
0,
|
|
1836
|
+
0,
|
|
1837
|
+
() => ExpressGatewayScalingTarget,
|
|
1838
|
+
() => Tags,
|
|
1839
|
+
],
|
|
1840
|
+
];
|
|
1841
|
+
var CreateExpressGatewayServiceResponse = [
|
|
1842
|
+
3,
|
|
1843
|
+
n0,
|
|
1844
|
+
_CEGSRr,
|
|
1845
|
+
0,
|
|
1846
|
+
[_ser],
|
|
1847
|
+
[() => ECSExpressGatewayService],
|
|
1848
|
+
];
|
|
1732
1849
|
var CreateManagedInstancesProviderConfiguration = [
|
|
1733
1850
|
3,
|
|
1734
1851
|
n0,
|
|
@@ -1756,7 +1873,7 @@ var CreateServiceRequest = [
|
|
|
1756
1873
|
_pV,
|
|
1757
1874
|
_ro,
|
|
1758
1875
|
_dCe,
|
|
1759
|
-
|
|
1876
|
+
_pCl,
|
|
1760
1877
|
_pS,
|
|
1761
1878
|
_nC,
|
|
1762
1879
|
_hCGPS,
|
|
@@ -1838,6 +1955,15 @@ var DeleteCapacityProviderResponse = [
|
|
|
1838
1955
|
];
|
|
1839
1956
|
var DeleteClusterRequest = [3, n0, _DCR, 0, [_cl], [0]];
|
|
1840
1957
|
var DeleteClusterResponse = [3, n0, _DCRe, 0, [_cl], [() => Cluster]];
|
|
1958
|
+
var DeleteExpressGatewayServiceRequest = [3, n0, _DEGSR, 0, [_sA], [0]];
|
|
1959
|
+
var DeleteExpressGatewayServiceResponse = [
|
|
1960
|
+
3,
|
|
1961
|
+
n0,
|
|
1962
|
+
_DEGSRe,
|
|
1963
|
+
0,
|
|
1964
|
+
[_ser],
|
|
1965
|
+
[() => ECSExpressGatewayService],
|
|
1966
|
+
];
|
|
1841
1967
|
var DeleteServiceRequest = [3, n0, _DSR, 0, [_cl, _ser, _f], [0, 0, 2]];
|
|
1842
1968
|
var DeleteServiceResponse = [3, n0, _DSRe, 0, [_ser], [() => Service]];
|
|
1843
1969
|
var DeleteTaskDefinitionsRequest = [3, n0, _DTDR, 0, [_tDa], [64 | 0]];
|
|
@@ -1970,6 +2096,15 @@ var DescribeContainerInstancesResponse = [
|
|
|
1970
2096
|
[_cIo, _fa],
|
|
1971
2097
|
[() => ContainerInstances, () => Failures],
|
|
1972
2098
|
];
|
|
2099
|
+
var DescribeExpressGatewayServiceRequest = [3, n0, _DEGSRes, 0, [_sA, _inc], [0, 64 | 0]];
|
|
2100
|
+
var DescribeExpressGatewayServiceResponse = [
|
|
2101
|
+
3,
|
|
2102
|
+
n0,
|
|
2103
|
+
_DEGSResc,
|
|
2104
|
+
0,
|
|
2105
|
+
[_ser],
|
|
2106
|
+
[() => ECSExpressGatewayService],
|
|
2107
|
+
];
|
|
1973
2108
|
var DescribeServiceDeploymentsRequest = [3, n0, _DSDR, 0, [_sDA], [64 | 0]];
|
|
1974
2109
|
var DescribeServiceDeploymentsResponse = [
|
|
1975
2110
|
3,
|
|
@@ -2036,6 +2171,28 @@ var DockerVolumeConfiguration = [
|
|
|
2036
2171
|
[0, 2, 0, 128 | 0, 128 | 0],
|
|
2037
2172
|
];
|
|
2038
2173
|
var EBSTagSpecification = [3, n0, _EBSTS, 0, [_rT, _ta, _pTr], [0, () => Tags, 0]];
|
|
2174
|
+
var ECSExpressGatewayService = [
|
|
2175
|
+
3,
|
|
2176
|
+
n0,
|
|
2177
|
+
_ECSEGS,
|
|
2178
|
+
0,
|
|
2179
|
+
[_cl, _sN, _sA, _iRA, _s, _cD, _aCc, _ta, _cAr, _uA],
|
|
2180
|
+
[0, 0, 0, 0, () => ExpressGatewayServiceStatus, 0, () => ExpressGatewayServiceConfigurations, () => Tags, 4, 4],
|
|
2181
|
+
];
|
|
2182
|
+
var ECSManagedResources = [
|
|
2183
|
+
3,
|
|
2184
|
+
n0,
|
|
2185
|
+
_ECSMR,
|
|
2186
|
+
0,
|
|
2187
|
+
[_iP, _aSu, _mAe, _sSG, _lG],
|
|
2188
|
+
[
|
|
2189
|
+
() => ManagedIngressPaths,
|
|
2190
|
+
() => ManagedAutoScaling,
|
|
2191
|
+
() => ManagedMetricAlarms,
|
|
2192
|
+
() => ManagedSecurityGroups,
|
|
2193
|
+
() => ManagedLogGroups,
|
|
2194
|
+
],
|
|
2195
|
+
];
|
|
2039
2196
|
var EFSAuthorizationConfig = [3, n0, _EFSAC, 0, [_aPIc, _ia], [0, 0]];
|
|
2040
2197
|
var EFSVolumeConfiguration = [
|
|
2041
2198
|
3,
|
|
@@ -2079,6 +2236,61 @@ var ExecuteCommandResponse = [
|
|
|
2079
2236
|
[_cA, _cAo, _cNo, _in, _ses, _tA],
|
|
2080
2237
|
[0, 0, 0, 2, [() => Session, 0], 0],
|
|
2081
2238
|
];
|
|
2239
|
+
var ExpressGatewayContainer = [
|
|
2240
|
+
3,
|
|
2241
|
+
n0,
|
|
2242
|
+
_EGC,
|
|
2243
|
+
0,
|
|
2244
|
+
[_im, _cPon, _aLC, _rC, _com, _en, _sec],
|
|
2245
|
+
[
|
|
2246
|
+
0,
|
|
2247
|
+
1,
|
|
2248
|
+
() => ExpressGatewayServiceAwsLogsConfiguration,
|
|
2249
|
+
() => ExpressGatewayRepositoryCredentials,
|
|
2250
|
+
64 | 0,
|
|
2251
|
+
() => EnvironmentVariables,
|
|
2252
|
+
() => SecretList,
|
|
2253
|
+
],
|
|
2254
|
+
];
|
|
2255
|
+
var ExpressGatewayRepositoryCredentials = [3, n0, _EGRC, 0, [_cPr], [0]];
|
|
2256
|
+
var ExpressGatewayScalingTarget = [
|
|
2257
|
+
3,
|
|
2258
|
+
n0,
|
|
2259
|
+
_EGST,
|
|
2260
|
+
0,
|
|
2261
|
+
[_mTC, _mTCa, _aSM, _aSTV],
|
|
2262
|
+
[1, 1, 0, 1],
|
|
2263
|
+
];
|
|
2264
|
+
var ExpressGatewayServiceAwsLogsConfiguration = [3, n0, _EGSALC, 0, [_lGo, _lSP], [0, 0]];
|
|
2265
|
+
var ExpressGatewayServiceConfiguration = [
|
|
2266
|
+
3,
|
|
2267
|
+
n0,
|
|
2268
|
+
_EGSC,
|
|
2269
|
+
0,
|
|
2270
|
+
[_sRAe, _eRA, _tRA, _cp, _mem, _nC, _hCP, _pC, _sTc, _iP, _cAr],
|
|
2271
|
+
[
|
|
2272
|
+
0,
|
|
2273
|
+
0,
|
|
2274
|
+
0,
|
|
2275
|
+
0,
|
|
2276
|
+
0,
|
|
2277
|
+
() => ExpressGatewayServiceNetworkConfiguration,
|
|
2278
|
+
0,
|
|
2279
|
+
() => ExpressGatewayContainer,
|
|
2280
|
+
() => ExpressGatewayScalingTarget,
|
|
2281
|
+
() => IngressPathSummaries,
|
|
2282
|
+
4,
|
|
2283
|
+
],
|
|
2284
|
+
];
|
|
2285
|
+
var ExpressGatewayServiceNetworkConfiguration = [
|
|
2286
|
+
3,
|
|
2287
|
+
n0,
|
|
2288
|
+
_EGSNC,
|
|
2289
|
+
0,
|
|
2290
|
+
[_sG, _su],
|
|
2291
|
+
[64 | 0, 64 | 0],
|
|
2292
|
+
];
|
|
2293
|
+
var ExpressGatewayServiceStatus = [3, n0, _EGSS, 0, [_sCt, _sR], [0, 0]];
|
|
2082
2294
|
var Failure = [3, n0, _F, 0, [_ar, _r, _de], [0, 0, 0]];
|
|
2083
2295
|
var FirelensConfiguration = [3, n0, _FC, 0, [_t, _o], [0, 128 | 0]];
|
|
2084
2296
|
var FSxWindowsFileServerAuthorizationConfig = [3, n0, _FSWFSAC, 0, [_cPr, _do], [0, 0]];
|
|
@@ -2105,13 +2317,14 @@ var HostVolumeProperties = [3, n0, _HVP, 0, [_sPo], [0]];
|
|
|
2105
2317
|
var InferenceAccelerator = [3, n0, _IA, 0, [_dNe, _dT], [0, 0]];
|
|
2106
2318
|
var InferenceAcceleratorOverride = [3, n0, _IAO, 0, [_dNe, _dT], [0, 0]];
|
|
2107
2319
|
var InfrastructureOptimization = [3, n0, _IO, 0, [_sIA], [1]];
|
|
2320
|
+
var IngressPathSummary = [3, n0, _IPS, 0, [_aT, _end], [0, 0]];
|
|
2108
2321
|
var InstanceHealthCheckResult = [3, n0, _IHCR, 0, [_t, _s, _lU, _lSC], [0, 0, 4, 4]];
|
|
2109
2322
|
var InstanceLaunchTemplate = [
|
|
2110
2323
|
3,
|
|
2111
2324
|
n0,
|
|
2112
2325
|
_ILT,
|
|
2113
2326
|
0,
|
|
2114
|
-
[_eIPA, _nC,
|
|
2327
|
+
[_eIPA, _nC, _sCto, _mo, _iR],
|
|
2115
2328
|
[
|
|
2116
2329
|
0,
|
|
2117
2330
|
() => ManagedInstancesNetworkConfiguration,
|
|
@@ -2125,7 +2338,7 @@ var InstanceLaunchTemplateUpdate = [
|
|
|
2125
2338
|
n0,
|
|
2126
2339
|
_ILTU,
|
|
2127
2340
|
0,
|
|
2128
|
-
[_eIPA, _nC,
|
|
2341
|
+
[_eIPA, _nC, _sCto, _mo, _iR],
|
|
2129
2342
|
[
|
|
2130
2343
|
0,
|
|
2131
2344
|
() => ManagedInstancesNetworkConfiguration,
|
|
@@ -2156,8 +2369,8 @@ var InstanceRequirementsRequest = [
|
|
|
2156
2369
|
_lST,
|
|
2157
2370
|
_tLSGB,
|
|
2158
2371
|
_bEBM,
|
|
2159
|
-
|
|
2160
|
-
|
|
2372
|
+
_aTc,
|
|
2373
|
+
_aCcc,
|
|
2161
2374
|
_aM,
|
|
2162
2375
|
_aNc,
|
|
2163
2376
|
_aTMMB,
|
|
@@ -2311,9 +2524,16 @@ var ListServiceDeploymentsResponse = [
|
|
|
2311
2524
|
[() => ServiceDeploymentsBrief, 0],
|
|
2312
2525
|
];
|
|
2313
2526
|
var ListServicesByNamespaceRequest = [3, n0, _LSBNR, 0, [_na, _nT, _mRa], [0, 0, 1]];
|
|
2314
|
-
var ListServicesByNamespaceResponse = [3, n0, _LSBNRi, 0, [
|
|
2315
|
-
var ListServicesRequest = [
|
|
2316
|
-
|
|
2527
|
+
var ListServicesByNamespaceResponse = [3, n0, _LSBNRi, 0, [_sAe, _nT], [64 | 0, 0]];
|
|
2528
|
+
var ListServicesRequest = [
|
|
2529
|
+
3,
|
|
2530
|
+
n0,
|
|
2531
|
+
_LSR,
|
|
2532
|
+
0,
|
|
2533
|
+
[_cl, _nT, _mRa, _lT, _sS, _rMT],
|
|
2534
|
+
[0, 0, 1, 0, 0, 0],
|
|
2535
|
+
];
|
|
2536
|
+
var ListServicesResponse = [3, n0, _LSRi, 0, [_sAe, _nT], [64 | 0, 0]];
|
|
2317
2537
|
var ListTagsForResourceRequest = [3, n0, _LTFRR, 0, [_rAes], [0]];
|
|
2318
2538
|
var ListTagsForResourceResponse = [3, n0, _LTFRRi, 0, [_ta], [() => Tags]];
|
|
2319
2539
|
var ListTaskDefinitionFamiliesRequest = [
|
|
@@ -2354,6 +2574,40 @@ var LoadBalancer = [
|
|
|
2354
2574
|
var LogConfiguration = [3, n0, _LCo, 0, [_lD, _o, _sO], [0, 128 | 0, () => SecretList]];
|
|
2355
2575
|
var ManagedAgent = [3, n0, _MA, 0, [_lSA, _n, _r, _lS], [4, 0, 0, 0]];
|
|
2356
2576
|
var ManagedAgentStateChange = [3, n0, _MASC, 0, [_cNo, _mAN, _s, _r], [0, 0, 0, 0]];
|
|
2577
|
+
var ManagedApplicationAutoScalingPolicy = [
|
|
2578
|
+
3,
|
|
2579
|
+
n0,
|
|
2580
|
+
_MAASP,
|
|
2581
|
+
0,
|
|
2582
|
+
[_ar, _s, _sR, _uA, _pTo, _tV, _met],
|
|
2583
|
+
[0, 0, 0, 4, 0, 1, 0],
|
|
2584
|
+
];
|
|
2585
|
+
var ManagedAutoScaling = [
|
|
2586
|
+
3,
|
|
2587
|
+
n0,
|
|
2588
|
+
_MAS,
|
|
2589
|
+
0,
|
|
2590
|
+
[_sTca, _aASP],
|
|
2591
|
+
[() => ManagedScalableTarget, () => ManagedApplicationAutoScalingPolicies],
|
|
2592
|
+
];
|
|
2593
|
+
var ManagedCertificate = [3, n0, _MC, 0, [_ar, _s, _sR, _uA, _dNo], [0, 0, 0, 4, 0]];
|
|
2594
|
+
var ManagedIngressPath = [
|
|
2595
|
+
3,
|
|
2596
|
+
n0,
|
|
2597
|
+
_MIP,
|
|
2598
|
+
0,
|
|
2599
|
+
[_aT, _end, _lBo, _lBSG, _ce, _li, _ru, _tG],
|
|
2600
|
+
[
|
|
2601
|
+
0,
|
|
2602
|
+
0,
|
|
2603
|
+
() => ManagedLoadBalancer,
|
|
2604
|
+
() => ManagedSecurityGroups,
|
|
2605
|
+
() => ManagedCertificate,
|
|
2606
|
+
() => ManagedListener,
|
|
2607
|
+
() => ManagedListenerRule,
|
|
2608
|
+
() => ManagedTargetGroups,
|
|
2609
|
+
],
|
|
2610
|
+
];
|
|
2357
2611
|
var ManagedInstancesNetworkConfiguration = [
|
|
2358
2612
|
3,
|
|
2359
2613
|
n0,
|
|
@@ -2365,14 +2619,43 @@ var ManagedInstancesNetworkConfiguration = [
|
|
|
2365
2619
|
var ManagedInstancesProvider = [
|
|
2366
2620
|
3,
|
|
2367
2621
|
n0,
|
|
2368
|
-
|
|
2622
|
+
_MIPa,
|
|
2369
2623
|
0,
|
|
2370
2624
|
[_iRA, _iLT, _pTr, _iO],
|
|
2371
2625
|
[0, [() => InstanceLaunchTemplate, 0], 0, () => InfrastructureOptimization],
|
|
2372
2626
|
];
|
|
2373
2627
|
var ManagedInstancesStorageConfiguration = [3, n0, _MISC, 0, [_sSGB], [1]];
|
|
2628
|
+
var ManagedListener = [3, n0, _ML, 0, [_ar, _s, _sR, _uA], [0, 0, 0, 4]];
|
|
2629
|
+
var ManagedListenerRule = [3, n0, _MLR, 0, [_ar, _s, _sR, _uA], [0, 0, 0, 4]];
|
|
2630
|
+
var ManagedLoadBalancer = [
|
|
2631
|
+
3,
|
|
2632
|
+
n0,
|
|
2633
|
+
_MLB,
|
|
2634
|
+
0,
|
|
2635
|
+
[_ar, _s, _sR, _uA, _sch, _sI, _sGI],
|
|
2636
|
+
[0, 0, 0, 4, 0, 64 | 0, 64 | 0],
|
|
2637
|
+
];
|
|
2638
|
+
var ManagedLogGroup = [3, n0, _MLG, 0, [_ar, _s, _sR, _uA, _lGN], [0, 0, 0, 4, 0]];
|
|
2639
|
+
var ManagedMetricAlarm = [3, n0, _MMA, 0, [_ar, _s, _sR, _uA], [0, 0, 0, 4]];
|
|
2640
|
+
var ManagedScalableTarget = [
|
|
2641
|
+
3,
|
|
2642
|
+
n0,
|
|
2643
|
+
_MST,
|
|
2644
|
+
0,
|
|
2645
|
+
[_ar, _s, _sR, _uA, _mC, _mCa],
|
|
2646
|
+
[0, 0, 0, 4, 1, 1],
|
|
2647
|
+
];
|
|
2374
2648
|
var ManagedScaling = [3, n0, _MS, 0, [_s, _tC, _mSSS, _mSSSa, _iWP], [0, 1, 1, 1, 1]];
|
|
2649
|
+
var ManagedSecurityGroup = [3, n0, _MSG, 0, [_ar, _s, _sR, _uA], [0, 0, 0, 4]];
|
|
2375
2650
|
var ManagedStorageConfiguration = [3, n0, _MSC, 0, [_kKI, _fESKKI], [0, 0]];
|
|
2651
|
+
var ManagedTargetGroup = [
|
|
2652
|
+
3,
|
|
2653
|
+
n0,
|
|
2654
|
+
_MTG,
|
|
2655
|
+
0,
|
|
2656
|
+
[_ar, _s, _sR, _uA, _hCP, _hCPe, _po],
|
|
2657
|
+
[0, 0, 0, 4, 0, 1, 1],
|
|
2658
|
+
];
|
|
2376
2659
|
var MemoryGiBPerVCpuRequest = [3, n0, _MGBPVCR, 0, [_m, _ma], [1, 1]];
|
|
2377
2660
|
var MemoryMiBRequest = [3, n0, _MMBR, 0, [_m, _ma], [1, 1]];
|
|
2378
2661
|
var MissingVersionException = [
|
|
@@ -2492,7 +2775,7 @@ var RegisterTaskDefinitionRequest = [
|
|
|
2492
2775
|
n0,
|
|
2493
2776
|
_RTDR,
|
|
2494
2777
|
0,
|
|
2495
|
-
[_fami, _tRA, _eRA, _nM,
|
|
2778
|
+
[_fami, _tRA, _eRA, _nM, _cDo, _vo, _pCl, _rCe, _cp, _mem, _ta, _pMi, _iM, _pCr, _iAn, _eSp, _rPu, _eFI],
|
|
2496
2779
|
[
|
|
2497
2780
|
0,
|
|
2498
2781
|
0,
|
|
@@ -2554,7 +2837,7 @@ var RunTaskRequest = [
|
|
|
2554
2837
|
n0,
|
|
2555
2838
|
_RTR,
|
|
2556
2839
|
0,
|
|
2557
|
-
[_cPS, _cl, _cou, _eECSMT, _eEC, _g, _lT, _nC, _ov,
|
|
2840
|
+
[_cPS, _cl, _cou, _eECSMT, _eEC, _g, _lT, _nC, _ov, _pCl, _pS, _pV, _pTr, _rIe, _sB, _ta, _tD, _cT, _vCo],
|
|
2558
2841
|
[
|
|
2559
2842
|
() => CapacityProviderStrategy,
|
|
2560
2843
|
0,
|
|
@@ -2598,7 +2881,7 @@ var Service = [
|
|
|
2598
2881
|
_Ser,
|
|
2599
2882
|
0,
|
|
2600
2883
|
[
|
|
2601
|
-
|
|
2884
|
+
_sA,
|
|
2602
2885
|
_sN,
|
|
2603
2886
|
_cA,
|
|
2604
2887
|
_lB,
|
|
@@ -2618,7 +2901,9 @@ var Service = [
|
|
|
2618
2901
|
_rA,
|
|
2619
2902
|
_ev,
|
|
2620
2903
|
_cAr,
|
|
2621
|
-
|
|
2904
|
+
_cSD,
|
|
2905
|
+
_cSR,
|
|
2906
|
+
_pCl,
|
|
2622
2907
|
_pS,
|
|
2623
2908
|
_nC,
|
|
2624
2909
|
_hCGPS,
|
|
@@ -2630,6 +2915,7 @@ var Service = [
|
|
|
2630
2915
|
_pTr,
|
|
2631
2916
|
_eEC,
|
|
2632
2917
|
_aZR,
|
|
2918
|
+
_rMT,
|
|
2633
2919
|
],
|
|
2634
2920
|
[
|
|
2635
2921
|
0,
|
|
@@ -2652,6 +2938,8 @@ var Service = [
|
|
|
2652
2938
|
0,
|
|
2653
2939
|
() => ServiceEvents,
|
|
2654
2940
|
4,
|
|
2941
|
+
0,
|
|
2942
|
+
() => ServiceCurrentRevisionSummaryList,
|
|
2655
2943
|
() => PlacementConstraints,
|
|
2656
2944
|
() => PlacementStrategies,
|
|
2657
2945
|
() => NetworkConfiguration,
|
|
@@ -2664,6 +2952,7 @@ var Service = [
|
|
|
2664
2952
|
0,
|
|
2665
2953
|
2,
|
|
2666
2954
|
0,
|
|
2955
|
+
0,
|
|
2667
2956
|
],
|
|
2668
2957
|
];
|
|
2669
2958
|
var ServiceConnectAccessLogConfiguration = [3, n0, _SCALC, 0, [_fo, _iQP], [0, 0]];
|
|
@@ -2680,7 +2969,7 @@ var ServiceConnectConfiguration = [
|
|
|
2680
2969
|
n0,
|
|
2681
2970
|
_SCC,
|
|
2682
2971
|
0,
|
|
2683
|
-
[_ena, _na, _serv, _lC,
|
|
2972
|
+
[_ena, _na, _serv, _lC, _aLCc],
|
|
2684
2973
|
[2, 0, () => ServiceConnectServiceList, () => LogConfiguration, () => ServiceConnectAccessLogConfiguration],
|
|
2685
2974
|
];
|
|
2686
2975
|
var ServiceConnectService = [
|
|
@@ -2718,12 +3007,20 @@ var ServiceConnectTlsConfiguration = [
|
|
|
2718
3007
|
[_iCA, _kK, _rA],
|
|
2719
3008
|
[() => ServiceConnectTlsCertificateAuthority, 0, 0],
|
|
2720
3009
|
];
|
|
3010
|
+
var ServiceCurrentRevisionSummary = [
|
|
3011
|
+
3,
|
|
3012
|
+
n0,
|
|
3013
|
+
_SCRS,
|
|
3014
|
+
0,
|
|
3015
|
+
[_ar, _rTCe, _rTCu, _pTCe],
|
|
3016
|
+
[0, 1, 1, 1],
|
|
3017
|
+
];
|
|
2721
3018
|
var ServiceDeployment = [
|
|
2722
3019
|
3,
|
|
2723
3020
|
n0,
|
|
2724
3021
|
_SD,
|
|
2725
3022
|
0,
|
|
2726
|
-
[_sDAe,
|
|
3023
|
+
[_sDAe, _sA, _cA, _cAr, _sAt, _fA, _sAto, _uA, _sSR, _tSR, _s, _sR, _lSif, _dCe, _rol, _dCB, _al],
|
|
2727
3024
|
[
|
|
2728
3025
|
0,
|
|
2729
3026
|
0,
|
|
@@ -2750,7 +3047,7 @@ var ServiceDeploymentBrief = [
|
|
|
2750
3047
|
n0,
|
|
2751
3048
|
_SDB,
|
|
2752
3049
|
0,
|
|
2753
|
-
[_sDAe,
|
|
3050
|
+
[_sDAe, _sA, _cA, _sAt, _cAr, _fA, _tSRA, _s, _sR],
|
|
2754
3051
|
[0, 0, 0, 4, 4, 4, 0, 0, 0],
|
|
2755
3052
|
];
|
|
2756
3053
|
var ServiceDeploymentCircuitBreaker = [3, n0, _SDCB, 0, [_s, _fCa, _th], [0, 1, 1]];
|
|
@@ -2771,7 +3068,7 @@ var ServiceManagedEBSVolumeConfiguration = [
|
|
|
2771
3068
|
n0,
|
|
2772
3069
|
_SMEBSVC,
|
|
2773
3070
|
0,
|
|
2774
|
-
[_enc, _kKI, _vT, _sIGB,
|
|
3071
|
+
[_enc, _kKI, _vT, _sIGB, _sIn, _vIR, _io, _thr, _tSag, _rA, _fTi],
|
|
2775
3072
|
[2, 0, 0, 1, 0, 1, 1, 1, () => EBSTagSpecifications, 0, 0],
|
|
2776
3073
|
];
|
|
2777
3074
|
var ServiceNotActiveException = [
|
|
@@ -2802,7 +3099,7 @@ var ServiceRevision = [
|
|
|
2802
3099
|
n0,
|
|
2803
3100
|
_SRe,
|
|
2804
3101
|
0,
|
|
2805
|
-
[_sRAe,
|
|
3102
|
+
[_sRAe, _sA, _cA, _tD, _cPS, _lT, _pV, _pF, _lB, _sRe, _nC, _cIon, _gDE, _sCC, _vCo, _fES, _cAr, _vLC, _rCes, _eMR],
|
|
2806
3103
|
[
|
|
2807
3104
|
0,
|
|
2808
3105
|
0,
|
|
@@ -2823,6 +3120,7 @@ var ServiceRevision = [
|
|
|
2823
3120
|
4,
|
|
2824
3121
|
() => VpcLatticeConfigurations,
|
|
2825
3122
|
() => ResolvedConfiguration,
|
|
3123
|
+
() => ECSManagedResources,
|
|
2826
3124
|
],
|
|
2827
3125
|
];
|
|
2828
3126
|
var ServiceRevisionLoadBalancer = [3, n0, _SRLB, 0, [_tGA, _pLR], [0, 0]];
|
|
@@ -2842,7 +3140,7 @@ var ServiceVolumeConfiguration = [
|
|
|
2842
3140
|
[_n, _mEBSV],
|
|
2843
3141
|
[0, () => ServiceManagedEBSVolumeConfiguration],
|
|
2844
3142
|
];
|
|
2845
|
-
var Session = [3, n0, _Ses, 0, [_sIe, _sU,
|
|
3143
|
+
var Session = [3, n0, _Ses, 0, [_sIe, _sU, _tVo], [0, 0, [() => SensitiveString, 0]]];
|
|
2846
3144
|
var Setting = [3, n0, _Set, 0, [_n, _v, _pA, _t], [0, 0, 0, 0]];
|
|
2847
3145
|
var StartTaskRequest = [
|
|
2848
3146
|
3,
|
|
@@ -2957,7 +3255,7 @@ var Task = [
|
|
|
2957
3255
|
_pSAu,
|
|
2958
3256
|
_sAt,
|
|
2959
3257
|
_sB,
|
|
2960
|
-
|
|
3258
|
+
_sCtop,
|
|
2961
3259
|
_sAto,
|
|
2962
3260
|
_sRt,
|
|
2963
3261
|
_sAtop,
|
|
@@ -3015,7 +3313,7 @@ var TaskDefinition = [
|
|
|
3015
3313
|
0,
|
|
3016
3314
|
[
|
|
3017
3315
|
_tDAa,
|
|
3018
|
-
|
|
3316
|
+
_cDo,
|
|
3019
3317
|
_fami,
|
|
3020
3318
|
_tRA,
|
|
3021
3319
|
_eRA,
|
|
@@ -3024,7 +3322,7 @@ var TaskDefinition = [
|
|
|
3024
3322
|
_vo,
|
|
3025
3323
|
_s,
|
|
3026
3324
|
_rAeq,
|
|
3027
|
-
|
|
3325
|
+
_pCl,
|
|
3028
3326
|
_comp,
|
|
3029
3327
|
_rPu,
|
|
3030
3328
|
_rCe,
|
|
@@ -3075,7 +3373,7 @@ var TaskManagedEBSVolumeConfiguration = [
|
|
|
3075
3373
|
n0,
|
|
3076
3374
|
_TMEBSVC,
|
|
3077
3375
|
0,
|
|
3078
|
-
[_enc, _kKI, _vT, _sIGB,
|
|
3376
|
+
[_enc, _kKI, _vT, _sIGB, _sIn, _vIR, _io, _thr, _tSag, _rA, _tP, _fTi],
|
|
3079
3377
|
[2, 0, 0, 1, 0, 1, 1, 1, () => EBSTagSpecifications, 0, () => TaskManagedEBSVolumeTerminationPolicy, 0],
|
|
3080
3378
|
];
|
|
3081
3379
|
var TaskManagedEBSVolumeTerminationPolicy = [3, n0, _TMEBSVTP, 0, [_dOT], [2]];
|
|
@@ -3095,7 +3393,7 @@ var TaskSet = [
|
|
|
3095
3393
|
[
|
|
3096
3394
|
_i,
|
|
3097
3395
|
_tSA,
|
|
3098
|
-
|
|
3396
|
+
_sA,
|
|
3099
3397
|
_cA,
|
|
3100
3398
|
_sB,
|
|
3101
3399
|
_eI,
|
|
@@ -3235,6 +3533,40 @@ var UpdateContainerInstancesStateResponse = [
|
|
|
3235
3533
|
[_cIo, _fa],
|
|
3236
3534
|
[() => ContainerInstances, () => Failures],
|
|
3237
3535
|
];
|
|
3536
|
+
var UpdatedExpressGatewayService = [
|
|
3537
|
+
3,
|
|
3538
|
+
n0,
|
|
3539
|
+
_UEGS,
|
|
3540
|
+
0,
|
|
3541
|
+
[_sA, _cl, _sN, _s, _tCa, _cAr, _uA],
|
|
3542
|
+
[0, 0, 0, () => ExpressGatewayServiceStatus, () => ExpressGatewayServiceConfiguration, 4, 4],
|
|
3543
|
+
];
|
|
3544
|
+
var UpdateExpressGatewayServiceRequest = [
|
|
3545
|
+
3,
|
|
3546
|
+
n0,
|
|
3547
|
+
_UEGSR,
|
|
3548
|
+
0,
|
|
3549
|
+
[_sA, _eRA, _hCP, _pC, _tRA, _nC, _cp, _mem, _sTc],
|
|
3550
|
+
[
|
|
3551
|
+
0,
|
|
3552
|
+
0,
|
|
3553
|
+
0,
|
|
3554
|
+
() => ExpressGatewayContainer,
|
|
3555
|
+
0,
|
|
3556
|
+
() => ExpressGatewayServiceNetworkConfiguration,
|
|
3557
|
+
0,
|
|
3558
|
+
0,
|
|
3559
|
+
() => ExpressGatewayScalingTarget,
|
|
3560
|
+
],
|
|
3561
|
+
];
|
|
3562
|
+
var UpdateExpressGatewayServiceResponse = [
|
|
3563
|
+
3,
|
|
3564
|
+
n0,
|
|
3565
|
+
_UEGSRp,
|
|
3566
|
+
0,
|
|
3567
|
+
[_ser],
|
|
3568
|
+
[() => UpdatedExpressGatewayService],
|
|
3569
|
+
];
|
|
3238
3570
|
var UpdateInProgressException = [
|
|
3239
3571
|
-3,
|
|
3240
3572
|
n0,
|
|
@@ -3277,7 +3609,7 @@ var UpdateServiceRequest = [
|
|
|
3277
3609
|
_dCe,
|
|
3278
3610
|
_aZR,
|
|
3279
3611
|
_nC,
|
|
3280
|
-
|
|
3612
|
+
_pCl,
|
|
3281
3613
|
_pS,
|
|
3282
3614
|
_pV,
|
|
3283
3615
|
_fND,
|
|
@@ -3457,10 +3789,18 @@ var ExcludedInstanceTypeSet = [
|
|
|
3457
3789
|
},
|
|
3458
3790
|
],
|
|
3459
3791
|
];
|
|
3792
|
+
var ExpressGatewayServiceConfigurations = [
|
|
3793
|
+
1,
|
|
3794
|
+
n0,
|
|
3795
|
+
_EGSCx,
|
|
3796
|
+
0,
|
|
3797
|
+
() => ExpressGatewayServiceConfiguration,
|
|
3798
|
+
];
|
|
3460
3799
|
var Failures = [1, n0, _Fa, 0, () => Failure];
|
|
3461
3800
|
var HostEntryList = [1, n0, _HEL, 0, () => HostEntry];
|
|
3462
3801
|
var InferenceAcceleratorOverrides = [1, n0, _IAOn, 0, () => InferenceAcceleratorOverride];
|
|
3463
3802
|
var InferenceAccelerators = [1, n0, _IAn, 0, () => InferenceAccelerator];
|
|
3803
|
+
var IngressPathSummaries = [1, n0, _IPSn, 0, () => IngressPathSummary];
|
|
3464
3804
|
var InstanceGenerationSet = [
|
|
3465
3805
|
1,
|
|
3466
3806
|
n0,
|
|
@@ -3489,6 +3829,18 @@ var LocalStorageTypeSet = [
|
|
|
3489
3829
|
];
|
|
3490
3830
|
var ManagedAgents = [1, n0, _MAa, 0, () => ManagedAgent];
|
|
3491
3831
|
var ManagedAgentStateChanges = [1, n0, _MASCa, 0, () => ManagedAgentStateChange];
|
|
3832
|
+
var ManagedApplicationAutoScalingPolicies = [
|
|
3833
|
+
1,
|
|
3834
|
+
n0,
|
|
3835
|
+
_MAASPa,
|
|
3836
|
+
0,
|
|
3837
|
+
() => ManagedApplicationAutoScalingPolicy,
|
|
3838
|
+
];
|
|
3839
|
+
var ManagedIngressPaths = [1, n0, _MIPan, 0, () => ManagedIngressPath];
|
|
3840
|
+
var ManagedLogGroups = [1, n0, _MLGa, 0, () => ManagedLogGroup];
|
|
3841
|
+
var ManagedMetricAlarms = [1, n0, _MMAa, 0, () => ManagedMetricAlarm];
|
|
3842
|
+
var ManagedSecurityGroups = [1, n0, _MSGa, 0, () => ManagedSecurityGroup];
|
|
3843
|
+
var ManagedTargetGroups = [1, n0, _MTGa, 0, () => ManagedTargetGroup];
|
|
3492
3844
|
var MountPointList = [1, n0, _MPL, 0, () => MountPoint];
|
|
3493
3845
|
var NetworkBindings = [1, n0, _NBe, 0, () => NetworkBinding];
|
|
3494
3846
|
var NetworkInterfaces = [1, n0, _NIe, 0, () => NetworkInterface];
|
|
@@ -3511,6 +3863,13 @@ var ServiceConnectServiceResourceList = [
|
|
|
3511
3863
|
0,
|
|
3512
3864
|
() => ServiceConnectServiceResource,
|
|
3513
3865
|
];
|
|
3866
|
+
var ServiceCurrentRevisionSummaryList = [
|
|
3867
|
+
1,
|
|
3868
|
+
n0,
|
|
3869
|
+
_SCRSL,
|
|
3870
|
+
0,
|
|
3871
|
+
() => ServiceCurrentRevisionSummary,
|
|
3872
|
+
];
|
|
3514
3873
|
var ServiceDeployments = [1, n0, _SDe, 0, () => ServiceDeployment];
|
|
3515
3874
|
var ServiceDeploymentsBrief = [1, n0, _SDBe, 0, () => ServiceDeploymentBrief];
|
|
3516
3875
|
var ServiceEvents = [1, n0, _SEer, 0, () => ServiceEvent];
|
|
@@ -3556,6 +3915,14 @@ var CreateCluster = [
|
|
|
3556
3915
|
() => CreateClusterRequest,
|
|
3557
3916
|
() => CreateClusterResponse,
|
|
3558
3917
|
];
|
|
3918
|
+
var CreateExpressGatewayService = [
|
|
3919
|
+
9,
|
|
3920
|
+
n0,
|
|
3921
|
+
_CEGS,
|
|
3922
|
+
0,
|
|
3923
|
+
() => CreateExpressGatewayServiceRequest,
|
|
3924
|
+
() => CreateExpressGatewayServiceResponse,
|
|
3925
|
+
];
|
|
3559
3926
|
var CreateService = [
|
|
3560
3927
|
9,
|
|
3561
3928
|
n0,
|
|
@@ -3604,6 +3971,14 @@ var DeleteCluster = [
|
|
|
3604
3971
|
() => DeleteClusterRequest,
|
|
3605
3972
|
() => DeleteClusterResponse,
|
|
3606
3973
|
];
|
|
3974
|
+
var DeleteExpressGatewayService = [
|
|
3975
|
+
9,
|
|
3976
|
+
n0,
|
|
3977
|
+
_DEGS,
|
|
3978
|
+
0,
|
|
3979
|
+
() => DeleteExpressGatewayServiceRequest,
|
|
3980
|
+
() => DeleteExpressGatewayServiceResponse,
|
|
3981
|
+
];
|
|
3607
3982
|
var DeleteService = [
|
|
3608
3983
|
9,
|
|
3609
3984
|
n0,
|
|
@@ -3668,6 +4043,14 @@ var DescribeContainerInstances = [
|
|
|
3668
4043
|
() => DescribeContainerInstancesRequest,
|
|
3669
4044
|
() => DescribeContainerInstancesResponse,
|
|
3670
4045
|
];
|
|
4046
|
+
var DescribeExpressGatewayService = [
|
|
4047
|
+
9,
|
|
4048
|
+
n0,
|
|
4049
|
+
_DEGSe,
|
|
4050
|
+
0,
|
|
4051
|
+
() => DescribeExpressGatewayServiceRequest,
|
|
4052
|
+
() => DescribeExpressGatewayServiceResponse,
|
|
4053
|
+
];
|
|
3671
4054
|
var DescribeServiceDeployments = [
|
|
3672
4055
|
9,
|
|
3673
4056
|
n0,
|
|
@@ -3946,6 +4329,14 @@ var UpdateContainerInstancesState = [
|
|
|
3946
4329
|
() => UpdateContainerInstancesStateRequest,
|
|
3947
4330
|
() => UpdateContainerInstancesStateResponse,
|
|
3948
4331
|
];
|
|
4332
|
+
var UpdateExpressGatewayService = [
|
|
4333
|
+
9,
|
|
4334
|
+
n0,
|
|
4335
|
+
_UEGSp,
|
|
4336
|
+
0,
|
|
4337
|
+
() => UpdateExpressGatewayServiceRequest,
|
|
4338
|
+
() => UpdateExpressGatewayServiceResponse,
|
|
4339
|
+
];
|
|
3949
4340
|
var UpdateService = [
|
|
3950
4341
|
9,
|
|
3951
4342
|
n0,
|
|
@@ -4003,6 +4394,18 @@ class CreateClusterCommand extends smithyClient.Command
|
|
|
4003
4394
|
.build() {
|
|
4004
4395
|
}
|
|
4005
4396
|
|
|
4397
|
+
class CreateExpressGatewayServiceCommand extends smithyClient.Command
|
|
4398
|
+
.classBuilder()
|
|
4399
|
+
.ep(commonParams)
|
|
4400
|
+
.m(function (Command, cs, config, o) {
|
|
4401
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4402
|
+
})
|
|
4403
|
+
.s("AmazonEC2ContainerServiceV20141113", "CreateExpressGatewayService", {})
|
|
4404
|
+
.n("ECSClient", "CreateExpressGatewayServiceCommand")
|
|
4405
|
+
.sc(CreateExpressGatewayService)
|
|
4406
|
+
.build() {
|
|
4407
|
+
}
|
|
4408
|
+
|
|
4006
4409
|
class CreateServiceCommand extends smithyClient.Command
|
|
4007
4410
|
.classBuilder()
|
|
4008
4411
|
.ep(commonParams)
|
|
@@ -4075,6 +4478,18 @@ class DeleteClusterCommand extends smithyClient.Command
|
|
|
4075
4478
|
.build() {
|
|
4076
4479
|
}
|
|
4077
4480
|
|
|
4481
|
+
class DeleteExpressGatewayServiceCommand extends smithyClient.Command
|
|
4482
|
+
.classBuilder()
|
|
4483
|
+
.ep(commonParams)
|
|
4484
|
+
.m(function (Command, cs, config, o) {
|
|
4485
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4486
|
+
})
|
|
4487
|
+
.s("AmazonEC2ContainerServiceV20141113", "DeleteExpressGatewayService", {})
|
|
4488
|
+
.n("ECSClient", "DeleteExpressGatewayServiceCommand")
|
|
4489
|
+
.sc(DeleteExpressGatewayService)
|
|
4490
|
+
.build() {
|
|
4491
|
+
}
|
|
4492
|
+
|
|
4078
4493
|
class DeleteServiceCommand extends smithyClient.Command
|
|
4079
4494
|
.classBuilder()
|
|
4080
4495
|
.ep(commonParams)
|
|
@@ -4171,6 +4586,18 @@ class DescribeContainerInstancesCommand extends smithyClient.Command
|
|
|
4171
4586
|
.build() {
|
|
4172
4587
|
}
|
|
4173
4588
|
|
|
4589
|
+
class DescribeExpressGatewayServiceCommand extends smithyClient.Command
|
|
4590
|
+
.classBuilder()
|
|
4591
|
+
.ep(commonParams)
|
|
4592
|
+
.m(function (Command, cs, config, o) {
|
|
4593
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
4594
|
+
})
|
|
4595
|
+
.s("AmazonEC2ContainerServiceV20141113", "DescribeExpressGatewayService", {})
|
|
4596
|
+
.n("ECSClient", "DescribeExpressGatewayServiceCommand")
|
|
4597
|
+
.sc(DescribeExpressGatewayService)
|
|
4598
|
+
.build() {
|
|
4599
|
+
}
|
|
4600
|
+
|
|
4174
4601
|
class DescribeServiceDeploymentsCommand extends smithyClient.Command
|
|
4175
4602
|
.classBuilder()
|
|
4176
4603
|
.ep(commonParams)
|
|
@@ -4651,6 +5078,18 @@ class UpdateContainerInstancesStateCommand extends smithyClient.Command
|
|
|
4651
5078
|
.build() {
|
|
4652
5079
|
}
|
|
4653
5080
|
|
|
5081
|
+
class UpdateExpressGatewayServiceCommand extends smithyClient.Command
|
|
5082
|
+
.classBuilder()
|
|
5083
|
+
.ep(commonParams)
|
|
5084
|
+
.m(function (Command, cs, config, o) {
|
|
5085
|
+
return [middlewareEndpoint.getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
5086
|
+
})
|
|
5087
|
+
.s("AmazonEC2ContainerServiceV20141113", "UpdateExpressGatewayService", {})
|
|
5088
|
+
.n("ECSClient", "UpdateExpressGatewayServiceCommand")
|
|
5089
|
+
.sc(UpdateExpressGatewayService)
|
|
5090
|
+
.build() {
|
|
5091
|
+
}
|
|
5092
|
+
|
|
4654
5093
|
class UpdateServiceCommand extends smithyClient.Command
|
|
4655
5094
|
.classBuilder()
|
|
4656
5095
|
.ep(commonParams)
|
|
@@ -4702,12 +5141,14 @@ class UpdateTaskSetCommand extends smithyClient.Command
|
|
|
4702
5141
|
const commands = {
|
|
4703
5142
|
CreateCapacityProviderCommand,
|
|
4704
5143
|
CreateClusterCommand,
|
|
5144
|
+
CreateExpressGatewayServiceCommand,
|
|
4705
5145
|
CreateServiceCommand,
|
|
4706
5146
|
CreateTaskSetCommand,
|
|
4707
5147
|
DeleteAccountSettingCommand,
|
|
4708
5148
|
DeleteAttributesCommand,
|
|
4709
5149
|
DeleteCapacityProviderCommand,
|
|
4710
5150
|
DeleteClusterCommand,
|
|
5151
|
+
DeleteExpressGatewayServiceCommand,
|
|
4711
5152
|
DeleteServiceCommand,
|
|
4712
5153
|
DeleteTaskDefinitionsCommand,
|
|
4713
5154
|
DeleteTaskSetCommand,
|
|
@@ -4716,6 +5157,7 @@ const commands = {
|
|
|
4716
5157
|
DescribeCapacityProvidersCommand,
|
|
4717
5158
|
DescribeClustersCommand,
|
|
4718
5159
|
DescribeContainerInstancesCommand,
|
|
5160
|
+
DescribeExpressGatewayServiceCommand,
|
|
4719
5161
|
DescribeServiceDeploymentsCommand,
|
|
4720
5162
|
DescribeServiceRevisionsCommand,
|
|
4721
5163
|
DescribeServicesCommand,
|
|
@@ -4756,6 +5198,7 @@ const commands = {
|
|
|
4756
5198
|
UpdateClusterSettingsCommand,
|
|
4757
5199
|
UpdateContainerAgentCommand,
|
|
4758
5200
|
UpdateContainerInstancesStateCommand,
|
|
5201
|
+
UpdateExpressGatewayServiceCommand,
|
|
4759
5202
|
UpdateServiceCommand,
|
|
4760
5203
|
UpdateServicePrimaryTaskSetCommand,
|
|
4761
5204
|
UpdateTaskProtectionCommand,
|
|
@@ -5044,6 +5487,10 @@ const AcceleratorType = {
|
|
|
5044
5487
|
GPU: "gpu",
|
|
5045
5488
|
INFERENCE: "inference",
|
|
5046
5489
|
};
|
|
5490
|
+
const AccessType = {
|
|
5491
|
+
PRIVATE: "PRIVATE",
|
|
5492
|
+
PUBLIC: "PUBLIC",
|
|
5493
|
+
};
|
|
5047
5494
|
const AgentUpdateStatus = {
|
|
5048
5495
|
FAILED: "FAILED",
|
|
5049
5496
|
PENDING: "PENDING",
|
|
@@ -5131,6 +5578,16 @@ const ExecuteCommandLogging = {
|
|
|
5131
5578
|
const ClusterSettingName = {
|
|
5132
5579
|
CONTAINER_INSIGHTS: "containerInsights",
|
|
5133
5580
|
};
|
|
5581
|
+
const ExpressGatewayServiceScalingMetric = {
|
|
5582
|
+
AverageCPUUtilization: "AVERAGE_CPU",
|
|
5583
|
+
AverageMemoryUtilization: "AVERAGE_MEMORY",
|
|
5584
|
+
RequestCountPerTarget: "REQUEST_COUNT_PER_TARGET",
|
|
5585
|
+
};
|
|
5586
|
+
const ExpressGatewayServiceStatusCode = {
|
|
5587
|
+
ACTIVE: "ACTIVE",
|
|
5588
|
+
DRAINING: "DRAINING",
|
|
5589
|
+
INACTIVE: "INACTIVE",
|
|
5590
|
+
};
|
|
5134
5591
|
const AvailabilityZoneRebalancing = {
|
|
5135
5592
|
DISABLED: "DISABLED",
|
|
5136
5593
|
ENABLED: "ENABLED",
|
|
@@ -5215,6 +5672,10 @@ const DeploymentRolloutState = {
|
|
|
5215
5672
|
FAILED: "FAILED",
|
|
5216
5673
|
IN_PROGRESS: "IN_PROGRESS",
|
|
5217
5674
|
};
|
|
5675
|
+
const ResourceManagementType = {
|
|
5676
|
+
CUSTOMER: "CUSTOMER",
|
|
5677
|
+
ECS: "ECS",
|
|
5678
|
+
};
|
|
5218
5679
|
const ScaleUnit = {
|
|
5219
5680
|
PERCENT: "PERCENT",
|
|
5220
5681
|
};
|
|
@@ -5376,6 +5837,9 @@ const ContainerInstanceField = {
|
|
|
5376
5837
|
CONTAINER_INSTANCE_HEALTH: "CONTAINER_INSTANCE_HEALTH",
|
|
5377
5838
|
TAGS: "TAGS",
|
|
5378
5839
|
};
|
|
5840
|
+
const ExpressGatewayServiceInclude = {
|
|
5841
|
+
TAGS: "TAGS",
|
|
5842
|
+
};
|
|
5379
5843
|
const ServiceDeploymentRollbackMonitorsStatus = {
|
|
5380
5844
|
DISABLED: "DISABLED",
|
|
5381
5845
|
MONITORING: "MONITORING",
|
|
@@ -5405,6 +5869,13 @@ const ServiceDeploymentStatus = {
|
|
|
5405
5869
|
STOP_REQUESTED: "STOP_REQUESTED",
|
|
5406
5870
|
SUCCESSFUL: "SUCCESSFUL",
|
|
5407
5871
|
};
|
|
5872
|
+
const ManagedResourceStatus = {
|
|
5873
|
+
ACTIVE: "ACTIVE",
|
|
5874
|
+
DELETED: "DELETED",
|
|
5875
|
+
DEPROVISIONING: "DEPROVISIONING",
|
|
5876
|
+
FAILED: "FAILED",
|
|
5877
|
+
PROVISIONING: "PROVISIONING",
|
|
5878
|
+
};
|
|
5408
5879
|
const ServiceField = {
|
|
5409
5880
|
TAGS: "TAGS",
|
|
5410
5881
|
};
|
|
@@ -5478,6 +5949,7 @@ exports.AcceleratorManufacturer = AcceleratorManufacturer;
|
|
|
5478
5949
|
exports.AcceleratorName = AcceleratorName;
|
|
5479
5950
|
exports.AcceleratorType = AcceleratorType;
|
|
5480
5951
|
exports.AccessDeniedException = AccessDeniedException$1;
|
|
5952
|
+
exports.AccessType = AccessType;
|
|
5481
5953
|
exports.AgentUpdateStatus = AgentUpdateStatus;
|
|
5482
5954
|
exports.ApplicationProtocol = ApplicationProtocol;
|
|
5483
5955
|
exports.AssignPublicIp = AssignPublicIp;
|
|
@@ -5508,12 +5980,14 @@ exports.ContainerInstanceStatus = ContainerInstanceStatus;
|
|
|
5508
5980
|
exports.CpuManufacturer = CpuManufacturer;
|
|
5509
5981
|
exports.CreateCapacityProviderCommand = CreateCapacityProviderCommand;
|
|
5510
5982
|
exports.CreateClusterCommand = CreateClusterCommand;
|
|
5983
|
+
exports.CreateExpressGatewayServiceCommand = CreateExpressGatewayServiceCommand;
|
|
5511
5984
|
exports.CreateServiceCommand = CreateServiceCommand;
|
|
5512
5985
|
exports.CreateTaskSetCommand = CreateTaskSetCommand;
|
|
5513
5986
|
exports.DeleteAccountSettingCommand = DeleteAccountSettingCommand;
|
|
5514
5987
|
exports.DeleteAttributesCommand = DeleteAttributesCommand;
|
|
5515
5988
|
exports.DeleteCapacityProviderCommand = DeleteCapacityProviderCommand;
|
|
5516
5989
|
exports.DeleteClusterCommand = DeleteClusterCommand;
|
|
5990
|
+
exports.DeleteExpressGatewayServiceCommand = DeleteExpressGatewayServiceCommand;
|
|
5517
5991
|
exports.DeleteServiceCommand = DeleteServiceCommand;
|
|
5518
5992
|
exports.DeleteTaskDefinitionsCommand = DeleteTaskDefinitionsCommand;
|
|
5519
5993
|
exports.DeleteTaskSetCommand = DeleteTaskSetCommand;
|
|
@@ -5526,6 +6000,7 @@ exports.DeregisterTaskDefinitionCommand = DeregisterTaskDefinitionCommand;
|
|
|
5526
6000
|
exports.DescribeCapacityProvidersCommand = DescribeCapacityProvidersCommand;
|
|
5527
6001
|
exports.DescribeClustersCommand = DescribeClustersCommand;
|
|
5528
6002
|
exports.DescribeContainerInstancesCommand = DescribeContainerInstancesCommand;
|
|
6003
|
+
exports.DescribeExpressGatewayServiceCommand = DescribeExpressGatewayServiceCommand;
|
|
5529
6004
|
exports.DescribeServiceDeploymentsCommand = DescribeServiceDeploymentsCommand;
|
|
5530
6005
|
exports.DescribeServiceRevisionsCommand = DescribeServiceRevisionsCommand;
|
|
5531
6006
|
exports.DescribeServicesCommand = DescribeServicesCommand;
|
|
@@ -5544,6 +6019,9 @@ exports.EFSTransitEncryption = EFSTransitEncryption;
|
|
|
5544
6019
|
exports.EnvironmentFileType = EnvironmentFileType;
|
|
5545
6020
|
exports.ExecuteCommandCommand = ExecuteCommandCommand;
|
|
5546
6021
|
exports.ExecuteCommandLogging = ExecuteCommandLogging;
|
|
6022
|
+
exports.ExpressGatewayServiceInclude = ExpressGatewayServiceInclude;
|
|
6023
|
+
exports.ExpressGatewayServiceScalingMetric = ExpressGatewayServiceScalingMetric;
|
|
6024
|
+
exports.ExpressGatewayServiceStatusCode = ExpressGatewayServiceStatusCode;
|
|
5547
6025
|
exports.FirelensConfigurationType = FirelensConfigurationType;
|
|
5548
6026
|
exports.GetTaskProtectionCommand = GetTaskProtectionCommand;
|
|
5549
6027
|
exports.HealthStatus = HealthStatus;
|
|
@@ -5571,6 +6049,7 @@ exports.LogDriver = LogDriver;
|
|
|
5571
6049
|
exports.ManagedAgentName = ManagedAgentName;
|
|
5572
6050
|
exports.ManagedDraining = ManagedDraining;
|
|
5573
6051
|
exports.ManagedInstancesMonitoringOptions = ManagedInstancesMonitoringOptions;
|
|
6052
|
+
exports.ManagedResourceStatus = ManagedResourceStatus;
|
|
5574
6053
|
exports.ManagedScalingStatus = ManagedScalingStatus;
|
|
5575
6054
|
exports.ManagedTerminationProtection = ManagedTerminationProtection;
|
|
5576
6055
|
exports.MissingVersionException = MissingVersionException$1;
|
|
@@ -5594,6 +6073,7 @@ exports.PutClusterCapacityProvidersCommand = PutClusterCapacityProvidersCommand;
|
|
|
5594
6073
|
exports.RegisterContainerInstanceCommand = RegisterContainerInstanceCommand;
|
|
5595
6074
|
exports.RegisterTaskDefinitionCommand = RegisterTaskDefinitionCommand;
|
|
5596
6075
|
exports.ResourceInUseException = ResourceInUseException$1;
|
|
6076
|
+
exports.ResourceManagementType = ResourceManagementType;
|
|
5597
6077
|
exports.ResourceNotFoundException = ResourceNotFoundException$1;
|
|
5598
6078
|
exports.ResourceType = ResourceType;
|
|
5599
6079
|
exports.RunTaskCommand = RunTaskCommand;
|
|
@@ -5643,6 +6123,7 @@ exports.UpdateClusterCommand = UpdateClusterCommand;
|
|
|
5643
6123
|
exports.UpdateClusterSettingsCommand = UpdateClusterSettingsCommand;
|
|
5644
6124
|
exports.UpdateContainerAgentCommand = UpdateContainerAgentCommand;
|
|
5645
6125
|
exports.UpdateContainerInstancesStateCommand = UpdateContainerInstancesStateCommand;
|
|
6126
|
+
exports.UpdateExpressGatewayServiceCommand = UpdateExpressGatewayServiceCommand;
|
|
5646
6127
|
exports.UpdateInProgressException = UpdateInProgressException$1;
|
|
5647
6128
|
exports.UpdateServiceCommand = UpdateServiceCommand;
|
|
5648
6129
|
exports.UpdateServicePrimaryTaskSetCommand = UpdateServicePrimaryTaskSetCommand;
|