@aws-sdk/client-batch 3.100.0 → 3.105.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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.105.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.104.0...v3.105.0) (2022-06-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **clients:** support recursion detection in Lambda ([#3654](https://github.com/aws/aws-sdk-js-v3/issues/3654)) ([ecfe46e](https://github.com/aws/aws-sdk-js-v3/commit/ecfe46ea1fd8b6e3812b75b3dc6c03554fb4b3fa))
12
+
13
+
14
+
15
+
16
+
6
17
  # [3.100.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.99.0...v3.100.0) (2022-05-26)
7
18
 
8
19
  **Note:** Version bump only for package @aws-sdk/client-batch
@@ -5,6 +5,7 @@ const config_resolver_1 = require("@aws-sdk/config-resolver");
5
5
  const middleware_content_length_1 = require("@aws-sdk/middleware-content-length");
6
6
  const middleware_host_header_1 = require("@aws-sdk/middleware-host-header");
7
7
  const middleware_logger_1 = require("@aws-sdk/middleware-logger");
8
+ const middleware_recursion_detection_1 = require("@aws-sdk/middleware-recursion-detection");
8
9
  const middleware_retry_1 = require("@aws-sdk/middleware-retry");
9
10
  const middleware_signing_1 = require("@aws-sdk/middleware-signing");
10
11
  const middleware_user_agent_1 = require("@aws-sdk/middleware-user-agent");
@@ -25,6 +26,7 @@ class BatchClient extends smithy_client_1.Client {
25
26
  this.middlewareStack.use((0, middleware_content_length_1.getContentLengthPlugin)(this.config));
26
27
  this.middlewareStack.use((0, middleware_host_header_1.getHostHeaderPlugin)(this.config));
27
28
  this.middlewareStack.use((0, middleware_logger_1.getLoggerPlugin)(this.config));
29
+ this.middlewareStack.use((0, middleware_recursion_detection_1.getRecursionDetectionPlugin)(this.config));
28
30
  this.middlewareStack.use((0, middleware_signing_1.getAwsAuthPlugin)(this.config));
29
31
  this.middlewareStack.use((0, middleware_user_agent_1.getUserAgentPlugin)(this.config));
30
32
  }
@@ -3,6 +3,7 @@ import { resolveEndpointsConfig, resolveRegionConfig, } from "@aws-sdk/config-re
3
3
  import { getContentLengthPlugin } from "@aws-sdk/middleware-content-length";
4
4
  import { getHostHeaderPlugin, resolveHostHeaderConfig, } from "@aws-sdk/middleware-host-header";
5
5
  import { getLoggerPlugin } from "@aws-sdk/middleware-logger";
6
+ import { getRecursionDetectionPlugin } from "@aws-sdk/middleware-recursion-detection";
6
7
  import { getRetryPlugin, resolveRetryConfig } from "@aws-sdk/middleware-retry";
7
8
  import { getAwsAuthPlugin, resolveAwsAuthConfig, } from "@aws-sdk/middleware-signing";
8
9
  import { getUserAgentPlugin, resolveUserAgentConfig, } from "@aws-sdk/middleware-user-agent";
@@ -25,6 +26,7 @@ var BatchClient = (function (_super) {
25
26
  _this.middlewareStack.use(getContentLengthPlugin(_this.config));
26
27
  _this.middlewareStack.use(getHostHeaderPlugin(_this.config));
27
28
  _this.middlewareStack.use(getLoggerPlugin(_this.config));
29
+ _this.middlewareStack.use(getRecursionDetectionPlugin(_this.config));
28
30
  _this.middlewareStack.use(getAwsAuthPlugin(_this.config));
29
31
  _this.middlewareStack.use(getUserAgentPlugin(_this.config));
30
32
  return _this;
@@ -27,9 +27,7 @@ export interface ArrayPropertiesDetail {
27
27
  * <p>A summary of the number of array job children in each available job status. This parameter is returned for
28
28
  * parent array jobs.</p>
29
29
  */
30
- statusSummary?: {
31
- [key: string]: number;
32
- };
30
+ statusSummary?: Record<string, number>;
33
31
  /**
34
32
  * <p>The size of the array job. This parameter is returned for parent array jobs.</p>
35
33
  */
@@ -498,9 +496,7 @@ export interface ComputeResource {
498
496
  * specified.</p>
499
497
  * </note>
500
498
  */
501
- tags?: {
502
- [key: string]: string;
503
- };
499
+ tags?: Record<string, string>;
504
500
  /**
505
501
  * <p>The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel
506
502
  * jobs to your compute environment, you should consider creating a cluster placement group and associate it with your
@@ -648,9 +644,7 @@ export interface CreateComputeEnvironmentRequest {
648
644
  * <p>These tags can be updated or removed using the <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_TagResource.html">TagResource</a> and <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_UntagResource.html">UntagResource</a> API operations. These tags don't
649
645
  * propagate to the underlying compute resources.</p>
650
646
  */
651
- tags?: {
652
- [key: string]: string;
653
- };
647
+ tags?: Record<string, string>;
654
648
  }
655
649
  export declare namespace CreateComputeEnvironmentRequest {
656
650
  /**
@@ -761,9 +755,7 @@ export interface CreateJobQueueRequest {
761
755
  * <p>The tags that you apply to the job queue to help you categorize and organize your resources. Each tag consists
762
756
  * of a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html">Tagging your Batch resources</a> in <i>Batch User Guide</i>.</p>
763
757
  */
764
- tags?: {
765
- [key: string]: string;
766
- };
758
+ tags?: Record<string, string>;
767
759
  }
768
760
  export declare namespace CreateJobQueueRequest {
769
761
  /**
@@ -874,9 +866,7 @@ export interface CreateSchedulingPolicyRequest {
874
866
  * Reference</i>.</p>
875
867
  * <p>These tags can be updated or removed using the <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_TagResource.html">TagResource</a> and <a href="https://docs.aws.amazon.com/batch/latest/APIReference/API_UntagResource.html">UntagResource</a> API operations.</p>
876
868
  */
877
- tags?: {
878
- [key: string]: string;
879
- };
869
+ tags?: Record<string, string>;
880
870
  }
881
871
  export declare namespace CreateSchedulingPolicyRequest {
882
872
  /**
@@ -1084,9 +1074,7 @@ export interface ComputeEnvironmentDetail {
1084
1074
  /**
1085
1075
  * <p>The tags applied to the compute environment.</p>
1086
1076
  */
1087
- tags?: {
1088
- [key: string]: string;
1089
- };
1077
+ tags?: Record<string, string>;
1090
1078
  /**
1091
1079
  * <p>The type of the compute environment: <code>MANAGED</code> or <code>UNMANAGED</code>. For more information, see
1092
1080
  * <a href="https://docs.aws.amazon.com/batch/latest/userguide/compute_environments.html">Compute environments</a> in the
@@ -1523,9 +1511,7 @@ export interface LogConfiguration {
1523
1511
  * container instance and run the following command: <code>sudo docker version | grep "Server API version"</code>
1524
1512
  * </p>
1525
1513
  */
1526
- options?: {
1527
- [key: string]: string;
1528
- };
1514
+ options?: Record<string, string>;
1529
1515
  /**
1530
1516
  * <p>The secrets to pass to the log configuration. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/specifying-sensitive-data.html">Specifying sensitive data</a> in the
1531
1517
  * <i>Batch User Guide</i>.</p>
@@ -2261,9 +2247,7 @@ export interface JobDefinition {
2261
2247
  * parameter defaults from the job definition. For more information about specifying parameters, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/job_definition_parameters.html">Job definition parameters</a> in the
2262
2248
  * <i>Batch User Guide</i>.</p>
2263
2249
  */
2264
- parameters?: {
2265
- [key: string]: string;
2266
- };
2250
+ parameters?: Record<string, string>;
2267
2251
  /**
2268
2252
  * <p>The retry strategy to use for failed jobs that are submitted with this job definition.</p>
2269
2253
  */
@@ -2288,9 +2272,7 @@ export interface JobDefinition {
2288
2272
  /**
2289
2273
  * <p>The tags applied to the job definition.</p>
2290
2274
  */
2291
- tags?: {
2292
- [key: string]: string;
2293
- };
2275
+ tags?: Record<string, string>;
2294
2276
  /**
2295
2277
  * <p>Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no
2296
2278
  * value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For
@@ -2423,9 +2405,7 @@ export interface JobQueueDetail {
2423
2405
  * <p>The tags applied to the job queue. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html">Tagging your Batch resources</a> in
2424
2406
  * <i>Batch User Guide</i>.</p>
2425
2407
  */
2426
- tags?: {
2427
- [key: string]: string;
2428
- };
2408
+ tags?: Record<string, string>;
2429
2409
  }
2430
2410
  export declare namespace JobQueueDetail {
2431
2411
  /**
@@ -2772,9 +2752,7 @@ export interface JobDetail {
2772
2752
  * <p>Additional parameters passed to the job that replace parameter substitution placeholders or override any
2773
2753
  * corresponding parameter defaults from the job definition.</p>
2774
2754
  */
2775
- parameters?: {
2776
- [key: string]: string;
2777
- };
2755
+ parameters?: Record<string, string>;
2778
2756
  /**
2779
2757
  * <p>An object representing the details of the container that's associated with the job.</p>
2780
2758
  */
@@ -2801,9 +2779,7 @@ export interface JobDetail {
2801
2779
  /**
2802
2780
  * <p>The tags applied to the job.</p>
2803
2781
  */
2804
- tags?: {
2805
- [key: string]: string;
2806
- };
2782
+ tags?: Record<string, string>;
2807
2783
  /**
2808
2784
  * <p>Specifies whether to propagate the tags from the job or job definition to the corresponding Amazon ECS task. If no
2809
2785
  * value is specified, the tags aren't propagated. Tags can only be propagated to the tasks during task creation. For
@@ -2873,9 +2849,7 @@ export interface SchedulingPolicyDetail {
2873
2849
  * a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services resources</a> in <i>Amazon Web Services General
2874
2850
  * Reference</i>.</p>
2875
2851
  */
2876
- tags?: {
2877
- [key: string]: string;
2878
- };
2852
+ tags?: Record<string, string>;
2879
2853
  }
2880
2854
  export declare namespace SchedulingPolicyDetail {
2881
2855
  /**
@@ -3223,9 +3197,7 @@ export interface ListTagsForResourceResponse {
3223
3197
  /**
3224
3198
  * <p>The tags for the resource.</p>
3225
3199
  */
3226
- tags?: {
3227
- [key: string]: string;
3228
- };
3200
+ tags?: Record<string, string>;
3229
3201
  }
3230
3202
  export declare namespace ListTagsForResourceResponse {
3231
3203
  /**
@@ -3259,9 +3231,7 @@ export interface RegisterJobDefinitionRequest {
3259
3231
  * key-value pair mapping. Parameters in a <code>SubmitJob</code> request override any corresponding parameter defaults
3260
3232
  * from the job definition.</p>
3261
3233
  */
3262
- parameters?: {
3263
- [key: string]: string;
3264
- };
3234
+ parameters?: Record<string, string>;
3265
3235
  /**
3266
3236
  * <p>The scheduling priority for jobs that are submitted with this job definition. This will only affect jobs in job
3267
3237
  * queues with a fair share policy. Jobs with a higher scheduling priority will be scheduled before jobs with a lower
@@ -3315,9 +3285,7 @@ export interface RegisterJobDefinitionRequest {
3315
3285
  * <p>The tags that you apply to the job definition to help you categorize and organize your resources. Each tag
3316
3286
  * consists of a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/batch/latest/userguide/using-tags.html">Tagging Amazon Web Services Resources</a> in <i>Batch User Guide</i>.</p>
3317
3287
  */
3318
- tags?: {
3319
- [key: string]: string;
3320
- };
3288
+ tags?: Record<string, string>;
3321
3289
  /**
3322
3290
  * <p>The platform capabilities required by the job definition. If no value is specified, it defaults to
3323
3291
  * <code>EC2</code>. To run the job on Fargate resources, specify <code>FARGATE</code>.</p>
@@ -3527,9 +3495,7 @@ export interface SubmitJobRequest {
3527
3495
  * definition. Parameters are specified as a key and value pair mapping. Parameters in a <code>SubmitJob</code> request
3528
3496
  * override any corresponding parameter defaults from the job definition.</p>
3529
3497
  */
3530
- parameters?: {
3531
- [key: string]: string;
3532
- };
3498
+ parameters?: Record<string, string>;
3533
3499
  /**
3534
3500
  * <p>A list of container overrides in the JSON format that specify the name of a container in the specified job
3535
3501
  * definition and the overrides it receives. You can override the default command for a container, which is specified in
@@ -3574,9 +3540,7 @@ export interface SubmitJobRequest {
3574
3540
  * of a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a> in <i>Amazon Web Services General
3575
3541
  * Reference</i>.</p>
3576
3542
  */
3577
- tags?: {
3578
- [key: string]: string;
3579
- };
3543
+ tags?: Record<string, string>;
3580
3544
  }
3581
3545
  export declare namespace SubmitJobRequest {
3582
3546
  /**
@@ -3618,9 +3582,7 @@ export interface TagResourceRequest {
3618
3582
  * a key and an optional value. For more information, see <a href="https://docs.aws.amazon.com/general/latest/gr/aws_tagging.html">Tagging Amazon Web Services Resources</a> in <i>Amazon Web Services General
3619
3583
  * Reference</i>.</p>
3620
3584
  */
3621
- tags: {
3622
- [key: string]: string;
3623
- } | undefined;
3585
+ tags: Record<string, string> | undefined;
3624
3586
  }
3625
3587
  export declare namespace TagResourceRequest {
3626
3588
  /**
@@ -3847,9 +3809,7 @@ export interface ComputeResourceUpdate {
3847
3809
  * specified.</p>
3848
3810
  * </note>
3849
3811
  */
3850
- tags?: {
3851
- [key: string]: string;
3852
- };
3812
+ tags?: Record<string, string>;
3853
3813
  /**
3854
3814
  * <p>The Amazon EC2 placement group to associate with your compute resources. If you intend to submit multi-node parallel
3855
3815
  * jobs to your compute environment, you should consider creating a cluster placement group and associate it with your
@@ -16,9 +16,7 @@ export declare namespace ArrayProperties {
16
16
 
17
17
  export interface ArrayPropertiesDetail {
18
18
 
19
- statusSummary?: {
20
- [key: string]: number;
21
- };
19
+ statusSummary?: Record<string, number>;
22
20
 
23
21
  size?: number;
24
22
 
@@ -181,9 +179,7 @@ export interface ComputeResource {
181
179
 
182
180
  instanceRole?: string;
183
181
 
184
- tags?: {
185
- [key: string]: string;
186
- };
182
+ tags?: Record<string, string>;
187
183
 
188
184
  placementGroup?: string;
189
185
 
@@ -222,9 +218,7 @@ export interface CreateComputeEnvironmentRequest {
222
218
 
223
219
  serviceRole?: string;
224
220
 
225
- tags?: {
226
- [key: string]: string;
227
- };
221
+ tags?: Record<string, string>;
228
222
  }
229
223
  export declare namespace CreateComputeEnvironmentRequest {
230
224
 
@@ -268,9 +262,7 @@ export interface CreateJobQueueRequest {
268
262
 
269
263
  computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
270
264
 
271
- tags?: {
272
- [key: string]: string;
273
- };
265
+ tags?: Record<string, string>;
274
266
  }
275
267
  export declare namespace CreateJobQueueRequest {
276
268
 
@@ -317,9 +309,7 @@ export interface CreateSchedulingPolicyRequest {
317
309
 
318
310
  fairsharePolicy?: FairsharePolicy;
319
311
 
320
- tags?: {
321
- [key: string]: string;
322
- };
312
+ tags?: Record<string, string>;
323
313
  }
324
314
  export declare namespace CreateSchedulingPolicyRequest {
325
315
 
@@ -437,9 +427,7 @@ export interface ComputeEnvironmentDetail {
437
427
 
438
428
  ecsClusterArn?: string;
439
429
 
440
- tags?: {
441
- [key: string]: string;
442
- };
430
+ tags?: Record<string, string>;
443
431
 
444
432
  type?: CEType | string;
445
433
 
@@ -581,9 +569,7 @@ export interface LogConfiguration {
581
569
 
582
570
  logDriver: LogDriver | string | undefined;
583
571
 
584
- options?: {
585
- [key: string]: string;
586
- };
572
+ options?: Record<string, string>;
587
573
 
588
574
  secretOptions?: Secret[];
589
575
  }
@@ -829,9 +815,7 @@ export interface JobDefinition {
829
815
 
830
816
  schedulingPriority?: number;
831
817
 
832
- parameters?: {
833
- [key: string]: string;
834
- };
818
+ parameters?: Record<string, string>;
835
819
 
836
820
  retryStrategy?: RetryStrategy;
837
821
 
@@ -841,9 +825,7 @@ export interface JobDefinition {
841
825
 
842
826
  nodeProperties?: NodeProperties;
843
827
 
844
- tags?: {
845
- [key: string]: string;
846
- };
828
+ tags?: Record<string, string>;
847
829
 
848
830
  propagateTags?: boolean;
849
831
 
@@ -903,9 +885,7 @@ export interface JobQueueDetail {
903
885
 
904
886
  computeEnvironmentOrder: ComputeEnvironmentOrder[] | undefined;
905
887
 
906
- tags?: {
907
- [key: string]: string;
908
- };
888
+ tags?: Record<string, string>;
909
889
  }
910
890
  export declare namespace JobQueueDetail {
911
891
 
@@ -1053,9 +1033,7 @@ export interface JobDetail {
1053
1033
 
1054
1034
  jobDefinition: string | undefined;
1055
1035
 
1056
- parameters?: {
1057
- [key: string]: string;
1058
- };
1036
+ parameters?: Record<string, string>;
1059
1037
 
1060
1038
  container?: ContainerDetail;
1061
1039
 
@@ -1067,9 +1045,7 @@ export interface JobDetail {
1067
1045
 
1068
1046
  timeout?: JobTimeout;
1069
1047
 
1070
- tags?: {
1071
- [key: string]: string;
1072
- };
1048
+ tags?: Record<string, string>;
1073
1049
 
1074
1050
  propagateTags?: boolean;
1075
1051
 
@@ -1105,9 +1081,7 @@ export interface SchedulingPolicyDetail {
1105
1081
 
1106
1082
  fairsharePolicy?: FairsharePolicy;
1107
1083
 
1108
- tags?: {
1109
- [key: string]: string;
1110
- };
1084
+ tags?: Record<string, string>;
1111
1085
  }
1112
1086
  export declare namespace SchedulingPolicyDetail {
1113
1087
 
@@ -1259,9 +1233,7 @@ export declare namespace ListTagsForResourceRequest {
1259
1233
  }
1260
1234
  export interface ListTagsForResourceResponse {
1261
1235
 
1262
- tags?: {
1263
- [key: string]: string;
1264
- };
1236
+ tags?: Record<string, string>;
1265
1237
  }
1266
1238
  export declare namespace ListTagsForResourceResponse {
1267
1239
 
@@ -1278,9 +1250,7 @@ export interface RegisterJobDefinitionRequest {
1278
1250
 
1279
1251
  type: JobDefinitionType | string | undefined;
1280
1252
 
1281
- parameters?: {
1282
- [key: string]: string;
1283
- };
1253
+ parameters?: Record<string, string>;
1284
1254
 
1285
1255
  schedulingPriority?: number;
1286
1256
 
@@ -1294,9 +1264,7 @@ export interface RegisterJobDefinitionRequest {
1294
1264
 
1295
1265
  timeout?: JobTimeout;
1296
1266
 
1297
- tags?: {
1298
- [key: string]: string;
1299
- };
1267
+ tags?: Record<string, string>;
1300
1268
 
1301
1269
  platformCapabilities?: (PlatformCapability | string)[];
1302
1270
  }
@@ -1374,9 +1342,7 @@ export interface SubmitJobRequest {
1374
1342
 
1375
1343
  jobDefinition: string | undefined;
1376
1344
 
1377
- parameters?: {
1378
- [key: string]: string;
1379
- };
1345
+ parameters?: Record<string, string>;
1380
1346
 
1381
1347
  containerOverrides?: ContainerOverrides;
1382
1348
 
@@ -1388,9 +1354,7 @@ export interface SubmitJobRequest {
1388
1354
 
1389
1355
  timeout?: JobTimeout;
1390
1356
 
1391
- tags?: {
1392
- [key: string]: string;
1393
- };
1357
+ tags?: Record<string, string>;
1394
1358
  }
1395
1359
  export declare namespace SubmitJobRequest {
1396
1360
 
@@ -1413,9 +1377,7 @@ export interface TagResourceRequest {
1413
1377
 
1414
1378
  resourceArn: string | undefined;
1415
1379
 
1416
- tags: {
1417
- [key: string]: string;
1418
- } | undefined;
1380
+ tags: Record<string, string> | undefined;
1419
1381
  }
1420
1382
  export declare namespace TagResourceRequest {
1421
1383
 
@@ -1486,9 +1448,7 @@ export interface ComputeResourceUpdate {
1486
1448
 
1487
1449
  instanceRole?: string;
1488
1450
 
1489
- tags?: {
1490
- [key: string]: string;
1491
- };
1451
+ tags?: Record<string, string>;
1492
1452
 
1493
1453
  placementGroup?: string;
1494
1454
 
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.100.0",
4
+ "version": "3.105.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",
@@ -18,15 +18,16 @@
18
18
  "dependencies": {
19
19
  "@aws-crypto/sha256-browser": "2.0.0",
20
20
  "@aws-crypto/sha256-js": "2.0.0",
21
- "@aws-sdk/client-sts": "3.100.0",
21
+ "@aws-sdk/client-sts": "3.105.0",
22
22
  "@aws-sdk/config-resolver": "3.80.0",
23
- "@aws-sdk/credential-provider-node": "3.100.0",
23
+ "@aws-sdk/credential-provider-node": "3.105.0",
24
24
  "@aws-sdk/fetch-http-handler": "3.78.0",
25
25
  "@aws-sdk/hash-node": "3.78.0",
26
26
  "@aws-sdk/invalid-dependency": "3.78.0",
27
27
  "@aws-sdk/middleware-content-length": "3.78.0",
28
28
  "@aws-sdk/middleware-host-header": "3.78.0",
29
29
  "@aws-sdk/middleware-logger": "3.78.0",
30
+ "@aws-sdk/middleware-recursion-detection": "3.105.0",
30
31
  "@aws-sdk/middleware-retry": "3.80.0",
31
32
  "@aws-sdk/middleware-serde": "3.78.0",
32
33
  "@aws-sdk/middleware-signing": "3.78.0",