@aws-sdk/client-batch 3.211.0 → 3.213.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.
|
@@ -1828,10 +1828,8 @@ const serializeAws_restJson1EksLimits = (input, context) => {
|
|
|
1828
1828
|
if (value === null) {
|
|
1829
1829
|
return acc;
|
|
1830
1830
|
}
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
[key]: value,
|
|
1834
|
-
};
|
|
1831
|
+
acc[key] = value;
|
|
1832
|
+
return acc;
|
|
1835
1833
|
}, {});
|
|
1836
1834
|
};
|
|
1837
1835
|
const serializeAws_restJson1EksPodProperties = (input, context) => {
|
|
@@ -1869,10 +1867,8 @@ const serializeAws_restJson1EksRequests = (input, context) => {
|
|
|
1869
1867
|
if (value === null) {
|
|
1870
1868
|
return acc;
|
|
1871
1869
|
}
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
[key]: value,
|
|
1875
|
-
};
|
|
1870
|
+
acc[key] = value;
|
|
1871
|
+
return acc;
|
|
1876
1872
|
}, {});
|
|
1877
1873
|
};
|
|
1878
1874
|
const serializeAws_restJson1EksSecret = (input, context) => {
|
|
@@ -2005,10 +2001,8 @@ const serializeAws_restJson1LogConfigurationOptionsMap = (input, context) => {
|
|
|
2005
2001
|
if (value === null) {
|
|
2006
2002
|
return acc;
|
|
2007
2003
|
}
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
[key]: value,
|
|
2011
|
-
};
|
|
2004
|
+
acc[key] = value;
|
|
2005
|
+
return acc;
|
|
2012
2006
|
}, {});
|
|
2013
2007
|
};
|
|
2014
2008
|
const serializeAws_restJson1MountPoint = (input, context) => {
|
|
@@ -2080,10 +2074,8 @@ const serializeAws_restJson1ParametersMap = (input, context) => {
|
|
|
2080
2074
|
if (value === null) {
|
|
2081
2075
|
return acc;
|
|
2082
2076
|
}
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
[key]: value,
|
|
2086
|
-
};
|
|
2077
|
+
acc[key] = value;
|
|
2078
|
+
return acc;
|
|
2087
2079
|
}, {});
|
|
2088
2080
|
};
|
|
2089
2081
|
const serializeAws_restJson1PlatformCapabilityList = (input, context) => {
|
|
@@ -2152,10 +2144,8 @@ const serializeAws_restJson1TagrisTagsMap = (input, context) => {
|
|
|
2152
2144
|
if (value === null) {
|
|
2153
2145
|
return acc;
|
|
2154
2146
|
}
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
[key]: value,
|
|
2158
|
-
};
|
|
2147
|
+
acc[key] = value;
|
|
2148
|
+
return acc;
|
|
2159
2149
|
}, {});
|
|
2160
2150
|
};
|
|
2161
2151
|
const serializeAws_restJson1TagsMap = (input, context) => {
|
|
@@ -2163,10 +2153,8 @@ const serializeAws_restJson1TagsMap = (input, context) => {
|
|
|
2163
2153
|
if (value === null) {
|
|
2164
2154
|
return acc;
|
|
2165
2155
|
}
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
[key]: value,
|
|
2169
|
-
};
|
|
2156
|
+
acc[key] = value;
|
|
2157
|
+
return acc;
|
|
2170
2158
|
}, {});
|
|
2171
2159
|
};
|
|
2172
2160
|
const serializeAws_restJson1Tmpfs = (input, context) => {
|
|
@@ -2224,10 +2212,8 @@ const deserializeAws_restJson1ArrayJobStatusSummary = (output, context) => {
|
|
|
2224
2212
|
if (value === null) {
|
|
2225
2213
|
return acc;
|
|
2226
2214
|
}
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
[key]: (0, smithy_client_1.expectInt32)(value),
|
|
2230
|
-
};
|
|
2215
|
+
acc[key] = (0, smithy_client_1.expectInt32)(value);
|
|
2216
|
+
return acc;
|
|
2231
2217
|
}, {});
|
|
2232
2218
|
};
|
|
2233
2219
|
const deserializeAws_restJson1ArrayPropertiesDetail = (output, context) => {
|
|
@@ -2680,10 +2666,8 @@ const deserializeAws_restJson1EksLimits = (output, context) => {
|
|
|
2680
2666
|
if (value === null) {
|
|
2681
2667
|
return acc;
|
|
2682
2668
|
}
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
2686
|
-
};
|
|
2669
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2670
|
+
return acc;
|
|
2687
2671
|
}, {});
|
|
2688
2672
|
};
|
|
2689
2673
|
const deserializeAws_restJson1EksPodProperties = (output, context) => {
|
|
@@ -2725,10 +2709,8 @@ const deserializeAws_restJson1EksRequests = (output, context) => {
|
|
|
2725
2709
|
if (value === null) {
|
|
2726
2710
|
return acc;
|
|
2727
2711
|
}
|
|
2728
|
-
|
|
2729
|
-
|
|
2730
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
2731
|
-
};
|
|
2712
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2713
|
+
return acc;
|
|
2732
2714
|
}, {});
|
|
2733
2715
|
};
|
|
2734
2716
|
const deserializeAws_restJson1EksSecret = (output, context) => {
|
|
@@ -3005,10 +2987,8 @@ const deserializeAws_restJson1LogConfigurationOptionsMap = (output, context) =>
|
|
|
3005
2987
|
if (value === null) {
|
|
3006
2988
|
return acc;
|
|
3007
2989
|
}
|
|
3008
|
-
|
|
3009
|
-
|
|
3010
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3011
|
-
};
|
|
2990
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
2991
|
+
return acc;
|
|
3012
2992
|
}, {});
|
|
3013
2993
|
};
|
|
3014
2994
|
const deserializeAws_restJson1MountPoint = (output, context) => {
|
|
@@ -3096,10 +3076,8 @@ const deserializeAws_restJson1ParametersMap = (output, context) => {
|
|
|
3096
3076
|
if (value === null) {
|
|
3097
3077
|
return acc;
|
|
3098
3078
|
}
|
|
3099
|
-
|
|
3100
|
-
|
|
3101
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3102
|
-
};
|
|
3079
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3080
|
+
return acc;
|
|
3103
3081
|
}, {});
|
|
3104
3082
|
};
|
|
3105
3083
|
const deserializeAws_restJson1PlatformCapabilityList = (output, context) => {
|
|
@@ -3225,10 +3203,8 @@ const deserializeAws_restJson1TagrisTagsMap = (output, context) => {
|
|
|
3225
3203
|
if (value === null) {
|
|
3226
3204
|
return acc;
|
|
3227
3205
|
}
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3231
|
-
};
|
|
3206
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3207
|
+
return acc;
|
|
3232
3208
|
}, {});
|
|
3233
3209
|
};
|
|
3234
3210
|
const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
@@ -3236,10 +3212,8 @@ const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
|
3236
3212
|
if (value === null) {
|
|
3237
3213
|
return acc;
|
|
3238
3214
|
}
|
|
3239
|
-
|
|
3240
|
-
|
|
3241
|
-
[key]: (0, smithy_client_1.expectString)(value),
|
|
3242
|
-
};
|
|
3215
|
+
acc[key] = (0, smithy_client_1.expectString)(value);
|
|
3216
|
+
return acc;
|
|
3243
3217
|
}, {});
|
|
3244
3218
|
};
|
|
3245
3219
|
const deserializeAws_restJson1Tmpfs = (output, context) => {
|
|
@@ -1777,10 +1777,8 @@ const serializeAws_restJson1EksLimits = (input, context) => {
|
|
|
1777
1777
|
if (value === null) {
|
|
1778
1778
|
return acc;
|
|
1779
1779
|
}
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
[key]: value,
|
|
1783
|
-
};
|
|
1780
|
+
acc[key] = value;
|
|
1781
|
+
return acc;
|
|
1784
1782
|
}, {});
|
|
1785
1783
|
};
|
|
1786
1784
|
const serializeAws_restJson1EksPodProperties = (input, context) => {
|
|
@@ -1818,10 +1816,8 @@ const serializeAws_restJson1EksRequests = (input, context) => {
|
|
|
1818
1816
|
if (value === null) {
|
|
1819
1817
|
return acc;
|
|
1820
1818
|
}
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
[key]: value,
|
|
1824
|
-
};
|
|
1819
|
+
acc[key] = value;
|
|
1820
|
+
return acc;
|
|
1825
1821
|
}, {});
|
|
1826
1822
|
};
|
|
1827
1823
|
const serializeAws_restJson1EksSecret = (input, context) => {
|
|
@@ -1954,10 +1950,8 @@ const serializeAws_restJson1LogConfigurationOptionsMap = (input, context) => {
|
|
|
1954
1950
|
if (value === null) {
|
|
1955
1951
|
return acc;
|
|
1956
1952
|
}
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
[key]: value,
|
|
1960
|
-
};
|
|
1953
|
+
acc[key] = value;
|
|
1954
|
+
return acc;
|
|
1961
1955
|
}, {});
|
|
1962
1956
|
};
|
|
1963
1957
|
const serializeAws_restJson1MountPoint = (input, context) => {
|
|
@@ -2029,10 +2023,8 @@ const serializeAws_restJson1ParametersMap = (input, context) => {
|
|
|
2029
2023
|
if (value === null) {
|
|
2030
2024
|
return acc;
|
|
2031
2025
|
}
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
[key]: value,
|
|
2035
|
-
};
|
|
2026
|
+
acc[key] = value;
|
|
2027
|
+
return acc;
|
|
2036
2028
|
}, {});
|
|
2037
2029
|
};
|
|
2038
2030
|
const serializeAws_restJson1PlatformCapabilityList = (input, context) => {
|
|
@@ -2101,10 +2093,8 @@ const serializeAws_restJson1TagrisTagsMap = (input, context) => {
|
|
|
2101
2093
|
if (value === null) {
|
|
2102
2094
|
return acc;
|
|
2103
2095
|
}
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
[key]: value,
|
|
2107
|
-
};
|
|
2096
|
+
acc[key] = value;
|
|
2097
|
+
return acc;
|
|
2108
2098
|
}, {});
|
|
2109
2099
|
};
|
|
2110
2100
|
const serializeAws_restJson1TagsMap = (input, context) => {
|
|
@@ -2112,10 +2102,8 @@ const serializeAws_restJson1TagsMap = (input, context) => {
|
|
|
2112
2102
|
if (value === null) {
|
|
2113
2103
|
return acc;
|
|
2114
2104
|
}
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
[key]: value,
|
|
2118
|
-
};
|
|
2105
|
+
acc[key] = value;
|
|
2106
|
+
return acc;
|
|
2119
2107
|
}, {});
|
|
2120
2108
|
};
|
|
2121
2109
|
const serializeAws_restJson1Tmpfs = (input, context) => {
|
|
@@ -2173,10 +2161,8 @@ const deserializeAws_restJson1ArrayJobStatusSummary = (output, context) => {
|
|
|
2173
2161
|
if (value === null) {
|
|
2174
2162
|
return acc;
|
|
2175
2163
|
}
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
[key]: __expectInt32(value),
|
|
2179
|
-
};
|
|
2164
|
+
acc[key] = __expectInt32(value);
|
|
2165
|
+
return acc;
|
|
2180
2166
|
}, {});
|
|
2181
2167
|
};
|
|
2182
2168
|
const deserializeAws_restJson1ArrayPropertiesDetail = (output, context) => {
|
|
@@ -2629,10 +2615,8 @@ const deserializeAws_restJson1EksLimits = (output, context) => {
|
|
|
2629
2615
|
if (value === null) {
|
|
2630
2616
|
return acc;
|
|
2631
2617
|
}
|
|
2632
|
-
|
|
2633
|
-
|
|
2634
|
-
[key]: __expectString(value),
|
|
2635
|
-
};
|
|
2618
|
+
acc[key] = __expectString(value);
|
|
2619
|
+
return acc;
|
|
2636
2620
|
}, {});
|
|
2637
2621
|
};
|
|
2638
2622
|
const deserializeAws_restJson1EksPodProperties = (output, context) => {
|
|
@@ -2674,10 +2658,8 @@ const deserializeAws_restJson1EksRequests = (output, context) => {
|
|
|
2674
2658
|
if (value === null) {
|
|
2675
2659
|
return acc;
|
|
2676
2660
|
}
|
|
2677
|
-
|
|
2678
|
-
|
|
2679
|
-
[key]: __expectString(value),
|
|
2680
|
-
};
|
|
2661
|
+
acc[key] = __expectString(value);
|
|
2662
|
+
return acc;
|
|
2681
2663
|
}, {});
|
|
2682
2664
|
};
|
|
2683
2665
|
const deserializeAws_restJson1EksSecret = (output, context) => {
|
|
@@ -2954,10 +2936,8 @@ const deserializeAws_restJson1LogConfigurationOptionsMap = (output, context) =>
|
|
|
2954
2936
|
if (value === null) {
|
|
2955
2937
|
return acc;
|
|
2956
2938
|
}
|
|
2957
|
-
|
|
2958
|
-
|
|
2959
|
-
[key]: __expectString(value),
|
|
2960
|
-
};
|
|
2939
|
+
acc[key] = __expectString(value);
|
|
2940
|
+
return acc;
|
|
2961
2941
|
}, {});
|
|
2962
2942
|
};
|
|
2963
2943
|
const deserializeAws_restJson1MountPoint = (output, context) => {
|
|
@@ -3045,10 +3025,8 @@ const deserializeAws_restJson1ParametersMap = (output, context) => {
|
|
|
3045
3025
|
if (value === null) {
|
|
3046
3026
|
return acc;
|
|
3047
3027
|
}
|
|
3048
|
-
|
|
3049
|
-
|
|
3050
|
-
[key]: __expectString(value),
|
|
3051
|
-
};
|
|
3028
|
+
acc[key] = __expectString(value);
|
|
3029
|
+
return acc;
|
|
3052
3030
|
}, {});
|
|
3053
3031
|
};
|
|
3054
3032
|
const deserializeAws_restJson1PlatformCapabilityList = (output, context) => {
|
|
@@ -3174,10 +3152,8 @@ const deserializeAws_restJson1TagrisTagsMap = (output, context) => {
|
|
|
3174
3152
|
if (value === null) {
|
|
3175
3153
|
return acc;
|
|
3176
3154
|
}
|
|
3177
|
-
|
|
3178
|
-
|
|
3179
|
-
[key]: __expectString(value),
|
|
3180
|
-
};
|
|
3155
|
+
acc[key] = __expectString(value);
|
|
3156
|
+
return acc;
|
|
3181
3157
|
}, {});
|
|
3182
3158
|
};
|
|
3183
3159
|
const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
@@ -3185,10 +3161,8 @@ const deserializeAws_restJson1TagsMap = (output, context) => {
|
|
|
3185
3161
|
if (value === null) {
|
|
3186
3162
|
return acc;
|
|
3187
3163
|
}
|
|
3188
|
-
|
|
3189
|
-
|
|
3190
|
-
[key]: __expectString(value),
|
|
3191
|
-
};
|
|
3164
|
+
acc[key] = __expectString(value);
|
|
3165
|
+
return acc;
|
|
3192
3166
|
}, {});
|
|
3193
3167
|
};
|
|
3194
3168
|
const deserializeAws_restJson1Tmpfs = (output, context) => {
|
package/dist-types/Batch.d.ts
CHANGED
|
@@ -67,6 +67,10 @@ export declare class Batch extends BatchClient {
|
|
|
67
67
|
* your container instances into that Amazon ECS cluster. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html">Launching an Amazon ECS container instance</a> in the
|
|
68
68
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
69
69
|
* <note>
|
|
70
|
+
* <p>To create a compute environment that uses EKS resources, the caller must have permissions to call
|
|
71
|
+
* <code>eks:DescribeCluster</code>.</p>
|
|
72
|
+
* </note>
|
|
73
|
+
* <note>
|
|
70
74
|
* <p>Batch doesn't automatically upgrade the AMIs in a compute environment after it's created. For example, it
|
|
71
75
|
* also doesn't update the AMIs in your compute environment when a newer version of the Amazon ECS optimized AMI is
|
|
72
76
|
* available. You're responsible for the management of the guest operating system. This includes any updates and
|
|
@@ -27,6 +27,10 @@ export interface CreateComputeEnvironmentCommandOutput extends CreateComputeEnvi
|
|
|
27
27
|
* your container instances into that Amazon ECS cluster. For more information, see <a href="https://docs.aws.amazon.com/AmazonECS/latest/developerguide/launch_container_instance.html">Launching an Amazon ECS container instance</a> in the
|
|
28
28
|
* <i>Amazon Elastic Container Service Developer Guide</i>.</p>
|
|
29
29
|
* <note>
|
|
30
|
+
* <p>To create a compute environment that uses EKS resources, the caller must have permissions to call
|
|
31
|
+
* <code>eks:DescribeCluster</code>.</p>
|
|
32
|
+
* </note>
|
|
33
|
+
* <note>
|
|
30
34
|
* <p>Batch doesn't automatically upgrade the AMIs in a compute environment after it's created. For example, it
|
|
31
35
|
* also doesn't update the AMIs in your compute environment when a newer version of the Amazon ECS optimized AMI is
|
|
32
36
|
* available. You're responsible for the management of the guest operating system. This includes any updates and
|
|
@@ -903,8 +903,8 @@ export declare enum CEStatus {
|
|
|
903
903
|
}
|
|
904
904
|
/**
|
|
905
905
|
* <p>Specifies the infrastructure update policy for the compute environment. For more information about
|
|
906
|
-
* infrastructure updates, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/
|
|
907
|
-
*
|
|
906
|
+
* infrastructure updates, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/updating-compute-environments.html">Updating
|
|
907
|
+
* compute environments</a> in the <i>Batch User Guide</i>.</p>
|
|
908
908
|
*/
|
|
909
909
|
export interface UpdatePolicy {
|
|
910
910
|
/**
|
|
@@ -1455,18 +1455,43 @@ export interface ResourceRequirement {
|
|
|
1455
1455
|
* <dt>value = 8192</dt>
|
|
1456
1456
|
* <dd>
|
|
1457
1457
|
* <p>
|
|
1458
|
-
* <code>VCPU</code> = 1, 2, or
|
|
1458
|
+
* <code>VCPU</code> = 1, 2, 4, or 8</p>
|
|
1459
1459
|
* </dd>
|
|
1460
|
-
* <dt>value = 9216, 10240, 11264, 12288, 13312, 14336,
|
|
1460
|
+
* <dt>value = 9216, 10240, 11264, 12288, 13312, 14336, or 15360</dt>
|
|
1461
1461
|
* <dd>
|
|
1462
1462
|
* <p>
|
|
1463
1463
|
* <code>VCPU</code> = 2 or 4</p>
|
|
1464
1464
|
* </dd>
|
|
1465
|
-
* <dt>value =
|
|
1465
|
+
* <dt>value = 16384</dt>
|
|
1466
|
+
* <dd>
|
|
1467
|
+
* <p>
|
|
1468
|
+
* <code>VCPU</code> = 2, 4, or 8</p>
|
|
1469
|
+
* </dd>
|
|
1470
|
+
* <dt>value = 17408, 18432, 19456, 21504, 22528, 23552, 25600, 26624, 27648, 29696, or 30720</dt>
|
|
1466
1471
|
* <dd>
|
|
1467
1472
|
* <p>
|
|
1468
1473
|
* <code>VCPU</code> = 4</p>
|
|
1469
1474
|
* </dd>
|
|
1475
|
+
* <dt>value = 20480, 24576, or 28672</dt>
|
|
1476
|
+
* <dd>
|
|
1477
|
+
* <p>
|
|
1478
|
+
* <code>VCPU</code> = 4 or 8</p>
|
|
1479
|
+
* </dd>
|
|
1480
|
+
* <dt>value = 36864, 45056, 53248, or 61440</dt>
|
|
1481
|
+
* <dd>
|
|
1482
|
+
* <p>
|
|
1483
|
+
* <code>VCPU</code> = 8</p>
|
|
1484
|
+
* </dd>
|
|
1485
|
+
* <dt>value = 32768, 40960, 49152, or 57344</dt>
|
|
1486
|
+
* <dd>
|
|
1487
|
+
* <p>
|
|
1488
|
+
* <code>VCPU</code> = 8 or 16</p>
|
|
1489
|
+
* </dd>
|
|
1490
|
+
* <dt>value = 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880</dt>
|
|
1491
|
+
* <dd>
|
|
1492
|
+
* <p>
|
|
1493
|
+
* <code>VCPU</code> = 16</p>
|
|
1494
|
+
* </dd>
|
|
1470
1495
|
* </dl>
|
|
1471
1496
|
* </dd>
|
|
1472
1497
|
* <dt>type="VCPU"</dt>
|
|
@@ -1476,9 +1501,11 @@ export interface ResourceRequirement {
|
|
|
1476
1501
|
* <a href="https://docs.docker.com/engine/reference/run/">docker run</a>. Each vCPU is equivalent to 1,024 CPU shares. For EC2
|
|
1477
1502
|
* resources, you must specify at least one vCPU. This is required but can be specified in several places; it must be
|
|
1478
1503
|
* specified for each node at least once.</p>
|
|
1504
|
+
* <p>The default for the Fargate On-Demand vCPU resource count quota is 6 vCPUs. For more information about
|
|
1505
|
+
* Fargate quotas, see <a href="https://docs.aws.amazon.com/general/latest/gr/ecs-service.html#service-quotas-fargate">Fargate quotas</a> in the <i>Amazon Web Services General Reference</i>.</p>
|
|
1479
1506
|
* <p>For jobs that are running on Fargate resources, then <code>value</code> must match one of the supported
|
|
1480
1507
|
* values and the <code>MEMORY</code> values must be one of the values supported for that <code>VCPU</code> value.
|
|
1481
|
-
* The supported values are 0.25, 0.5, 1, 2, and
|
|
1508
|
+
* The supported values are 0.25, 0.5, 1, 2, 4, 8, and 16</p>
|
|
1482
1509
|
* <dl>
|
|
1483
1510
|
* <dt>value = 0.25</dt>
|
|
1484
1511
|
* <dd>
|
|
@@ -1506,6 +1533,18 @@ export interface ResourceRequirement {
|
|
|
1506
1533
|
* <code>MEMORY</code> = 8192, 9216, 10240, 11264, 12288, 13312, 14336, 15360, 16384, 17408, 18432, 19456,
|
|
1507
1534
|
* 20480, 21504, 22528, 23552, 24576, 25600, 26624, 27648, 28672, 29696, or 30720</p>
|
|
1508
1535
|
* </dd>
|
|
1536
|
+
* <dt>value = 8</dt>
|
|
1537
|
+
* <dd>
|
|
1538
|
+
* <p>
|
|
1539
|
+
* <code>MEMORY</code> = 16384, 20480, 24576, 28672, 32768, 36864, 40960, 45056, 49152, 53248, 57344, or 61440
|
|
1540
|
+
* </p>
|
|
1541
|
+
* </dd>
|
|
1542
|
+
* <dt>value = 16</dt>
|
|
1543
|
+
* <dd>
|
|
1544
|
+
* <p>
|
|
1545
|
+
* <code>MEMORY</code> = 32768, 40960, 49152, 57344, 65536, 73728, 81920, 90112, 98304, 106496, 114688, or 122880
|
|
1546
|
+
* </p>
|
|
1547
|
+
* </dd>
|
|
1509
1548
|
* </dl>
|
|
1510
1549
|
* </dd>
|
|
1511
1550
|
* </dl>
|
|
@@ -2179,8 +2218,7 @@ export interface EksPodProperties {
|
|
|
2179
2218
|
* that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver
|
|
2180
2219
|
* inherited from the node. For more information, see <a href="https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy">Pod's DNS
|
|
2181
2220
|
* policy</a> in the <i>Kubernetes documentation</i>.</p>
|
|
2182
|
-
* <p>Valid values: <code>Default</code> | <code>ClusterFirst</code> | <code>ClusterFirstWithHostNet</code>
|
|
2183
|
-
* <code>None</code>
|
|
2221
|
+
* <p>Valid values: <code>Default</code> | <code>ClusterFirst</code> | <code>ClusterFirstWithHostNet</code>
|
|
2184
2222
|
* </p>
|
|
2185
2223
|
*/
|
|
2186
2224
|
dnsPolicy?: string;
|
|
@@ -2856,10 +2894,12 @@ export interface EksPodPropertiesDetail {
|
|
|
2856
2894
|
* <p>The DNS policy for the pod. The default value is <code>ClusterFirst</code>. If the <code>hostNetwork</code>
|
|
2857
2895
|
* parameter is not specified, the default is <code>ClusterFirstWithHostNet</code>. <code>ClusterFirst</code> indicates
|
|
2858
2896
|
* that any DNS query that does not match the configured cluster domain suffix is forwarded to the upstream nameserver
|
|
2859
|
-
* inherited from the node.
|
|
2897
|
+
* inherited from the node. If no value was specified for <code>dnsPolicy</code> in the <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_RegisterJobDefinition.html">RegisterJobDefinition</a> API operation, then no
|
|
2898
|
+
* value will be returned for <code>dnsPolicy</code> by either of <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobDefinitions.html">DescribeJobDefinitions</a> or <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_DescribeJobs.html">DescribeJobs</a> API operations. The
|
|
2899
|
+
* pod spec setting will contain either <code>ClusterFirst</code> or <code>ClusterFirstWithHostNet</code>, depending
|
|
2900
|
+
* on the value of the <code>hostNetwork</code> parameter. For more information, see <a href="https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#pod-s-dns-policy">Pod's DNS
|
|
2860
2901
|
* policy</a> in the <i>Kubernetes documentation</i>.</p>
|
|
2861
|
-
* <p>Valid values: <code>Default</code> | <code>ClusterFirst</code> | <code>ClusterFirstWithHostNet</code>
|
|
2862
|
-
* <code>None</code>
|
|
2902
|
+
* <p>Valid values: <code>Default</code> | <code>ClusterFirst</code> | <code>ClusterFirstWithHostNet</code>
|
|
2863
2903
|
* </p>
|
|
2864
2904
|
*/
|
|
2865
2905
|
dnsPolicy?: string;
|
|
@@ -3839,6 +3879,10 @@ export interface ComputeResourceUpdate {
|
|
|
3839
3879
|
* <note>
|
|
3840
3880
|
* <p>This parameter isn't applicable to jobs that are running on Fargate resources. Don't specify it.</p>
|
|
3841
3881
|
* </note>
|
|
3882
|
+
* <note>
|
|
3883
|
+
* <p>Batch doesn't support changing the desired number of vCPUs of an existing compute environment. Don't specify
|
|
3884
|
+
* this parameter for compute environments using Amazon EKS clusters.</p>
|
|
3885
|
+
* </note>
|
|
3842
3886
|
*/
|
|
3843
3887
|
desiredvCpus?: number;
|
|
3844
3888
|
/**
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-batch",
|
|
3
3
|
"description": "AWS SDK for JavaScript Batch Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.213.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -19,36 +19,36 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@aws-crypto/sha256-browser": "2.0.0",
|
|
21
21
|
"@aws-crypto/sha256-js": "2.0.0",
|
|
22
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
-
"@aws-sdk/config-resolver": "3.
|
|
24
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
26
|
-
"@aws-sdk/hash-node": "3.
|
|
27
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
28
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
29
|
-
"@aws-sdk/middleware-endpoint": "3.
|
|
30
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
31
|
-
"@aws-sdk/middleware-logger": "3.
|
|
32
|
-
"@aws-sdk/middleware-recursion-detection": "3.
|
|
33
|
-
"@aws-sdk/middleware-retry": "3.
|
|
34
|
-
"@aws-sdk/middleware-serde": "3.
|
|
35
|
-
"@aws-sdk/middleware-signing": "3.
|
|
36
|
-
"@aws-sdk/middleware-stack": "3.
|
|
37
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
38
|
-
"@aws-sdk/node-config-provider": "3.
|
|
39
|
-
"@aws-sdk/node-http-handler": "3.
|
|
40
|
-
"@aws-sdk/protocol-http": "3.
|
|
41
|
-
"@aws-sdk/smithy-client": "3.
|
|
42
|
-
"@aws-sdk/types": "3.
|
|
43
|
-
"@aws-sdk/url-parser": "3.
|
|
22
|
+
"@aws-sdk/client-sts": "3.213.0",
|
|
23
|
+
"@aws-sdk/config-resolver": "3.212.0",
|
|
24
|
+
"@aws-sdk/credential-provider-node": "3.212.0",
|
|
25
|
+
"@aws-sdk/fetch-http-handler": "3.212.0",
|
|
26
|
+
"@aws-sdk/hash-node": "3.212.0",
|
|
27
|
+
"@aws-sdk/invalid-dependency": "3.212.0",
|
|
28
|
+
"@aws-sdk/middleware-content-length": "3.212.0",
|
|
29
|
+
"@aws-sdk/middleware-endpoint": "3.212.0",
|
|
30
|
+
"@aws-sdk/middleware-host-header": "3.212.0",
|
|
31
|
+
"@aws-sdk/middleware-logger": "3.212.0",
|
|
32
|
+
"@aws-sdk/middleware-recursion-detection": "3.212.0",
|
|
33
|
+
"@aws-sdk/middleware-retry": "3.212.0",
|
|
34
|
+
"@aws-sdk/middleware-serde": "3.212.0",
|
|
35
|
+
"@aws-sdk/middleware-signing": "3.212.0",
|
|
36
|
+
"@aws-sdk/middleware-stack": "3.212.0",
|
|
37
|
+
"@aws-sdk/middleware-user-agent": "3.212.0",
|
|
38
|
+
"@aws-sdk/node-config-provider": "3.212.0",
|
|
39
|
+
"@aws-sdk/node-http-handler": "3.212.0",
|
|
40
|
+
"@aws-sdk/protocol-http": "3.212.0",
|
|
41
|
+
"@aws-sdk/smithy-client": "3.212.0",
|
|
42
|
+
"@aws-sdk/types": "3.212.0",
|
|
43
|
+
"@aws-sdk/url-parser": "3.212.0",
|
|
44
44
|
"@aws-sdk/util-base64": "3.208.0",
|
|
45
45
|
"@aws-sdk/util-body-length-browser": "3.188.0",
|
|
46
46
|
"@aws-sdk/util-body-length-node": "3.208.0",
|
|
47
|
-
"@aws-sdk/util-defaults-mode-browser": "3.
|
|
48
|
-
"@aws-sdk/util-defaults-mode-node": "3.
|
|
49
|
-
"@aws-sdk/util-endpoints": "3.
|
|
50
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
51
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
47
|
+
"@aws-sdk/util-defaults-mode-browser": "3.212.0",
|
|
48
|
+
"@aws-sdk/util-defaults-mode-node": "3.212.0",
|
|
49
|
+
"@aws-sdk/util-endpoints": "3.212.0",
|
|
50
|
+
"@aws-sdk/util-user-agent-browser": "3.212.0",
|
|
51
|
+
"@aws-sdk/util-user-agent-node": "3.212.0",
|
|
52
52
|
"@aws-sdk/util-utf8-browser": "3.188.0",
|
|
53
53
|
"@aws-sdk/util-utf8-node": "3.208.0",
|
|
54
54
|
"tslib": "^2.3.1"
|