File: batch_v1.projects.locations.jobs.html

package info (click to toggle)
python-googleapi 2.180.0-1
  • links: PTS
  • area: main
  • in suites: forky
  • size: 527,124 kB
  • sloc: python: 11,076; javascript: 249; sh: 114; makefile: 59
file content (1304 lines) | stat: -rw-r--r-- 206,255 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
<html><body>
<style>

body, h1, h2, h3, div, span, p, pre, a {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body {
  font-size: 13px;
  padding: 1em;
}

h1 {
  font-size: 26px;
  margin-bottom: 1em;
}

h2 {
  font-size: 24px;
  margin-bottom: 1em;
}

h3 {
  font-size: 20px;
  margin-bottom: 1em;
  margin-top: 1em;
}

pre, code {
  line-height: 1.5;
  font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
}

pre {
  margin-top: 0.5em;
}

h1, h2, h3, p {
  font-family: Arial, sans serif;
}

h1, h2, h3 {
  border-bottom: solid #CCC 1px;
}

.toc_element {
  margin-top: 0.5em;
}

.firstline {
  margin-left: 2 em;
}

.method  {
  margin-top: 1em;
  border: solid 1px #CCC;
  padding: 1em;
  background: #EEE;
}

.details {
  font-weight: bold;
  font-size: 14px;
}

</style>

<h1><a href="batch_v1.html">Batch API</a> . <a href="batch_v1.projects.html">projects</a> . <a href="batch_v1.projects.locations.html">locations</a> . <a href="batch_v1.projects.locations.jobs.html">jobs</a></h1>
<h2>Instance Methods</h2>
<p class="toc_element">
  <code><a href="batch_v1.projects.locations.jobs.taskGroups.html">taskGroups()</a></code>
</p>
<p class="firstline">Returns the taskGroups Resource.</p>

<p class="toc_element">
  <code><a href="#cancel">cancel(name, body=None, x__xgafv=None)</a></code></p>
<p class="firstline">Cancel a Job.</p>
<p class="toc_element">
  <code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
<p class="toc_element">
  <code><a href="#create">create(parent, body=None, jobId=None, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Create a Job.</p>
<p class="toc_element">
  <code><a href="#delete">delete(name, reason=None, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Delete a Job.</p>
<p class="toc_element">
  <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
<p class="firstline">Get a Job specified by its resource name.</p>
<p class="toc_element">
  <code><a href="#list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
<p class="firstline">List all Jobs for a project within a region.</p>
<p class="toc_element">
  <code><a href="#list_next">list_next()</a></code></p>
<p class="firstline">Retrieves the next page of results.</p>
<h3>Method Details</h3>
<div class="method">
    <code class="details" id="cancel">cancel(name, body=None, x__xgafv=None)</code>
  <pre>Cancel a Job.

Args:
  name: string, Required. Job name. (required)
  body: object, The request body.
    The object takes the form of:

{ # CancelJob Request.
  &quot;requestId&quot;: &quot;A String&quot;, # Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
}

  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents a long-running operation that is the result of a network API call.
  &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
  &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
      {
        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
      },
    ],
    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
  },
  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
  },
  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
  &quot;response&quot;: { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="close">close()</code>
  <pre>Close httplib2 connections.</pre>
</div>

<div class="method">
    <code class="details" id="create">create(parent, body=None, jobId=None, requestId=None, x__xgafv=None)</code>
  <pre>Create a Job.

Args:
  parent: string, Required. The parent resource name where the Job will be created. Pattern: &quot;projects/{project}/locations/{location}&quot; (required)
  body: object, The request body.
    The object takes the form of:

{ # The Cloud Batch Job description.
  &quot;allocationPolicy&quot;: { # A Job&#x27;s resource allocation policy describes when, where, and how compute resources should be allocated for the Job. # Compute resource allocation for all TaskGroups in the Job.
    &quot;instances&quot;: [ # Describe instances that can be created by this AllocationPolicy. Only instances[0] is supported now.
      { # InstancePolicyOrTemplate lets you define the type of resources to use for this job either with an InstancePolicy or an instance template. If undefined, Batch picks the type of VM to use and doesn&#x27;t include optional VM resources such as GPUs and extra disks.
        &quot;blockProjectSshKeys&quot;: True or False, # Optional. Set this field to `true` if you want Batch to block project-level SSH keys from accessing this job&#x27;s VMs. Alternatively, you can configure the job to specify a VM instance template that blocks project-level SSH keys. In either case, Batch blocks project-level SSH keys while creating the VMs for this job. Batch allows project-level SSH keys for a job&#x27;s VMs only if all the following are true: + This field is undefined or set to `false`. + The job&#x27;s VM instance template (if any) doesn&#x27;t block project-level SSH keys. Notably, you can override this behavior by manually updating a VM to block or allow project-level SSH keys. For more information about blocking project-level SSH keys, see the Compute Engine documentation: https://cloud.google.com/compute/docs/connect/restrict-ssh-keys#block-keys
        &quot;installGpuDrivers&quot;: True or False, # Set this field true if you want Batch to help fetch drivers from a third party location and install them for GPUs specified in `policy.accelerators` or `instance_template` on your behalf. Default is false. For Container-Optimized Image cases, Batch will install the accelerator driver following milestones of https://cloud.google.com/container-optimized-os/docs/release-notes. For non Container-Optimized Image cases, following https://github.com/GoogleCloudPlatform/compute-gpu-installation/blob/main/linux/install_gpu_driver.py.
        &quot;installOpsAgent&quot;: True or False, # Optional. Set this field true if you want Batch to install Ops Agent on your behalf. Default is false.
        &quot;instanceTemplate&quot;: &quot;A String&quot;, # Name of an instance template used to create VMs. Named the field as &#x27;instance_template&#x27; instead of &#x27;template&#x27; to avoid C++ keyword conflict. Batch only supports global instance templates from the same project as the job. You can specify the global instance template as a full or partial URL.
        &quot;policy&quot;: { # InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy. # InstancePolicy.
          &quot;accelerators&quot;: [ # The accelerators attached to each VM instance.
            { # Accelerator describes Compute Engine accelerators to be attached to the VM.
              &quot;count&quot;: &quot;A String&quot;, # The number of accelerators of this type.
              &quot;driverVersion&quot;: &quot;A String&quot;, # Optional. The NVIDIA GPU driver version that should be installed for this type. You can define the specific driver version such as &quot;470.103.01&quot;, following the driver version requirements in https://cloud.google.com/compute/docs/gpus/install-drivers-gpu#minimum-driver. Batch will install the specific accelerator driver if qualified.
              &quot;installGpuDrivers&quot;: True or False, # Deprecated: please use instances[0].install_gpu_drivers instead.
              &quot;type&quot;: &quot;A String&quot;, # The accelerator type. For example, &quot;nvidia-tesla-t4&quot;. See `gcloud compute accelerator-types list`.
            },
          ],
          &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # Boot disk to be created and attached to each VM by this InstancePolicy. Boot disk will be deleted when the VM is deleted. Batch API now only supports booting from image.
            &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
            &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
            &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
            &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
            &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
          },
          &quot;disks&quot;: [ # Non-boot disks to be attached for each VM created by this InstancePolicy. New disks will be deleted when the VM is deleted. A non-boot disk is a disk that can be of a device with a file system or a raw storage drive that is not ready for data storage and accessing.
            { # A new or an existing persistent disk (PD) or a local ssd attached to a VM instance.
              &quot;deviceName&quot;: &quot;A String&quot;, # Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.
              &quot;existingDisk&quot;: &quot;A String&quot;, # Name of an existing PD.
              &quot;newDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
                &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
              },
            },
          ],
          &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
          &quot;minCpuPlatform&quot;: &quot;A String&quot;, # The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
          &quot;provisioningModel&quot;: &quot;A String&quot;, # The provisioning model.
          &quot;reservation&quot;: &quot;A String&quot;, # Optional. If not specified (default), VMs will consume any applicable reservation. If &quot;NO_RESERVATION&quot; is specified, VMs will not consume any reservation. Otherwise, if specified, VMs will consume only the specified reservation.
        },
      },
    ],
    &quot;labels&quot;: { # Custom labels to apply to the job and all the Compute Engine resources that both are created by this allocation policy and support labels. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;location&quot;: { # Location where compute resources should be allocated for the Job.
      &quot;allowedLocations&quot;: [ # A list of allowed location names represented by internal URLs. Each location can be a region or a zone. Only one region or multiple zones in one region is supported now. For example, [&quot;regions/us-central1&quot;] allow VMs in any zones in region us-central1. [&quot;zones/us-central1-a&quot;, &quot;zones/us-central1-c&quot;] only allow VMs in zones us-central1-a and us-central1-c. Mixing locations from different regions would cause errors. For example, [&quot;regions/us-central1&quot;, &quot;zones/us-central1-a&quot;, &quot;zones/us-central1-b&quot;, &quot;zones/us-west1-a&quot;] contains locations from two distinct regions: us-central1 and us-west1. This combination will trigger an error.
        &quot;A String&quot;,
      ],
    },
    &quot;network&quot;: { # NetworkPolicy describes VM instance network configurations. # The network policy. If you define an instance template in the `InstancePolicyOrTemplate` field, Batch will use the network settings in the instance template instead of this field.
      &quot;networkInterfaces&quot;: [ # Network configurations.
        { # A network interface.
          &quot;network&quot;: &quot;A String&quot;, # The URL of an existing network resource. You can specify the network as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * projects/{project}/global/networks/{network} * global/networks/{network}
          &quot;noExternalIpAddress&quot;: True or False, # Default is false (with an external IP address). Required if no external public IP address is attached to the VM. If no external public IP address, additional configuration is required to allow the VM to access Google Services. See https://cloud.google.com/vpc/docs/configure-private-google-access and https://cloud.google.com/nat/docs/gce-example#create-nat for more information.
          &quot;subnetwork&quot;: &quot;A String&quot;, # The URL of an existing subnetwork resource in the network. You can specify the subnetwork as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork} * projects/{project}/regions/{region}/subnetworks/{subnetwork} * regions/{region}/subnetworks/{subnetwork}
        },
      ],
    },
    &quot;placement&quot;: { # PlacementPolicy describes a group placement policy for the VMs controlled by this AllocationPolicy. # The placement policy.
      &quot;collocation&quot;: &quot;A String&quot;, # UNSPECIFIED vs. COLLOCATED (default UNSPECIFIED). Use COLLOCATED when you want VMs to be located close to each other for low network latency between the VMs. No placement policy will be generated when collocation is UNSPECIFIED.
      &quot;maxDistance&quot;: &quot;A String&quot;, # When specified, causes the job to fail if more than max_distance logical switches are required between VMs. Batch uses the most compact possible placement of VMs even when max_distance is not specified. An explicit max_distance makes that level of compactness a strict requirement. Not yet implemented
    },
    &quot;serviceAccount&quot;: { # Carries information about a Google Cloud service account. # Defines the service account for Batch-created VMs. If omitted, the [default Compute Engine service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. Must match the service account specified in any used instance template configured in the Batch job. Includes the following fields: * email: The service account&#x27;s email address. If not set, the default Compute Engine service account is used. * scopes: Additional OAuth scopes to grant the service account, beyond the default cloud-platform scope. (list of strings)
      &quot;email&quot;: &quot;A String&quot;, # Email address of the service account.
      &quot;scopes&quot;: [ # List of scopes to be enabled for this service account.
        &quot;A String&quot;,
      ],
    },
    &quot;tags&quot;: [ # Optional. Tags applied to the VM instances. The tags identify valid sources or targets for network firewalls. Each tag must be 1-63 characters long, and comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
      &quot;A String&quot;,
    ],
  },
  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Job was created.
  &quot;labels&quot;: { # Custom labels to apply to the job and any Cloud Logging [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) that it generates. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;logsPolicy&quot;: { # LogsPolicy describes if and how a job&#x27;s logs are preserved. Logs include information that is automatically written by the Batch service agent and any information that you configured the job&#x27;s runnables to write to the `stdout` or `stderr` streams. # Log preservation policy for the Job.
    &quot;cloudLoggingOption&quot;: { # `CloudLoggingOption` contains additional settings for Cloud Logging logs generated by Batch job. # Optional. When `destination` is set to `CLOUD_LOGGING`, you can optionally set this field to configure additional settings for Cloud Logging.
      &quot;useGenericTaskMonitoredResource&quot;: True or False, # Optional. Set this field to `true` to change the [monitored resource type](https://cloud.google.com/monitoring/api/resources) for Cloud Logging logs generated by this Batch job from the [`batch.googleapis.com/Job`](https://cloud.google.com/monitoring/api/resources#tag_batch.googleapis.com/Job) type to the formerly used [`generic_task`](https://cloud.google.com/monitoring/api/resources#tag_generic_task) type.
    },
    &quot;destination&quot;: &quot;A String&quot;, # If and where logs should be saved.
    &quot;logsPath&quot;: &quot;A String&quot;, # When `destination` is set to `PATH`, you must set this field to the path where you want logs to be saved. This path can point to a local directory on the VM or (if congifured) a directory under the mount path of any Cloud Storage bucket, network file system (NFS), or writable persistent disk that is mounted to the job. For example, if the job has a bucket with `mountPath` set to `/mnt/disks/my-bucket`, you can write logs to the root directory of the `remotePath` of that bucket by setting this field to `/mnt/disks/my-bucket/`.
  },
  &quot;name&quot;: &quot;A String&quot;, # Output only. Job name. For example: &quot;projects/123456/locations/us-central1/jobs/job01&quot;.
  &quot;notifications&quot;: [ # Notification configurations.
    { # Notification configurations.
      &quot;message&quot;: { # Message details. Describe the conditions under which messages will be sent. If no attribute is defined, no message will be sent by default. One message should specify either the job or the task level attributes, but not both. For example, job level: JOB_STATE_CHANGED and/or a specified new_job_state; task level: TASK_STATE_CHANGED and/or a specified new_task_state. # The attribute requirements of messages to be sent to this Pub/Sub topic. Without this field, no message will be sent.
        &quot;newJobState&quot;: &quot;A String&quot;, # The new job state.
        &quot;newTaskState&quot;: &quot;A String&quot;, # The new task state.
        &quot;type&quot;: &quot;A String&quot;, # The message type.
      },
      &quot;pubsubTopic&quot;: &quot;A String&quot;, # The Pub/Sub topic where notifications for the job, like state changes, will be published. If undefined, no Pub/Sub notifications are sent for this job. Specify the topic using the following format: `projects/{project}/topics/{topic}`. Notably, if you want to specify a Pub/Sub topic that is in a different project than the job, your administrator must grant your project&#x27;s Batch service agent permission to publish to that topic. For more information about configuring Pub/Sub notifications for a job, see https://cloud.google.com/batch/docs/enable-notifications.
    },
  ],
  &quot;priority&quot;: &quot;A String&quot;, # Priority of the Job. The valid value range is [0, 100). Default value is 0. Higher value indicates higher priority. A job with higher priority value is more likely to run earlier if all other requirements are satisfied.
  &quot;status&quot;: { # Job status. # Output only. Job status. It is read only for users.
    &quot;runDuration&quot;: &quot;A String&quot;, # The duration of time that the Job spent in status RUNNING.
    &quot;state&quot;: &quot;A String&quot;, # Job state
    &quot;statusEvents&quot;: [ # Job status events
      { # Status event.
        &quot;description&quot;: &quot;A String&quot;, # Description of the event.
        &quot;eventTime&quot;: &quot;A String&quot;, # The time this event occurred.
        &quot;taskExecution&quot;: { # This Task Execution field includes detail information for task execution procedures, based on StatusEvent types. # Task Execution. This field is only defined for task-level status events where the task fails.
          &quot;exitCode&quot;: 42, # The exit code of a finished task. If the task succeeded, the exit code will be 0. If the task failed but not due to the following reasons, the exit code will be 50000. Otherwise, it can be from different sources: * Batch known failures: https://cloud.google.com/batch/docs/troubleshooting#reserved-exit-codes. * Batch runnable execution failures; you can rely on Batch logs to further diagnose: https://cloud.google.com/batch/docs/analyze-job-using-logs. If there are multiple runnables failures, Batch only exposes the first error.
        },
        &quot;taskState&quot;: &quot;A String&quot;, # Task State. This field is only defined for task-level status events.
        &quot;type&quot;: &quot;A String&quot;, # Type of the event.
      },
    ],
    &quot;taskGroups&quot;: { # Aggregated task status for each TaskGroup in the Job. The map key is TaskGroup ID.
      &quot;a_key&quot;: { # Aggregated task status for a TaskGroup.
        &quot;counts&quot;: { # Count of task in each state in the TaskGroup. The map key is task state name.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;instances&quot;: [ # Status of instances allocated for the TaskGroup.
          { # VM instance status.
            &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # The VM boot disk.
              &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
              &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
              &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
              &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
              &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
            },
            &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
            &quot;provisioningModel&quot;: &quot;A String&quot;, # The VM instance provisioning model.
            &quot;taskPack&quot;: &quot;A String&quot;, # The max number of tasks can be assigned to this instance type.
          },
        ],
      },
    },
  },
  &quot;taskGroups&quot;: [ # Required. TaskGroups in the Job. Only one TaskGroup is supported now.
    { # A TaskGroup defines one or more Tasks that all share the same TaskSpec.
      &quot;name&quot;: &quot;A String&quot;, # Output only. TaskGroup name. The system generates this field based on parent Job name. For example: &quot;projects/123456/locations/us-west1/jobs/job01/taskGroups/group01&quot;.
      &quot;parallelism&quot;: &quot;A String&quot;, # Max number of tasks that can run in parallel. Default to min(task_count, parallel tasks per job limit). See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
      &quot;permissiveSsh&quot;: True or False, # When true, Batch will configure SSH to allow passwordless login between VMs running the Batch tasks in the same TaskGroup.
      &quot;requireHostsFile&quot;: True or False, # When true, Batch will populate a file with a list of all VMs assigned to the TaskGroup and set the BATCH_HOSTS_FILE environment variable to the path of that file. Defaults to false. The host file supports up to 1000 VMs.
      &quot;runAsNonRoot&quot;: True or False, # Optional. If not set or set to false, Batch uses the root user to execute runnables. If set to true, Batch runs the runnables using a non-root user. Currently, the non-root user Batch used is generated by OS Login. For more information, see [About OS Login](https://cloud.google.com/compute/docs/oslogin).
      &quot;schedulingPolicy&quot;: &quot;A String&quot;, # Scheduling policy for Tasks in the TaskGroup. The default value is AS_SOON_AS_POSSIBLE.
      &quot;taskCount&quot;: &quot;A String&quot;, # Number of Tasks in the TaskGroup. Default is 1.
      &quot;taskCountPerNode&quot;: &quot;A String&quot;, # Max number of tasks that can be run on a VM at the same time. If not specified, the system will decide a value based on available compute resources on a VM and task requirements.
      &quot;taskEnvironments&quot;: [ # An array of environment variable mappings, which are passed to Tasks with matching indices. If task_environments is used then task_count should not be specified in the request (and will be ignored). Task count will be the length of task_environments. Tasks get a BATCH_TASK_INDEX and BATCH_TASK_COUNT environment variable, in addition to any environment variables set in task_environments, specifying the number of Tasks in the Task&#x27;s parent TaskGroup, and the specific Task&#x27;s index in the TaskGroup (0 through BATCH_TASK_COUNT - 1).
        { # An Environment describes a collection of environment variables to set when executing Tasks.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
      ],
      &quot;taskSpec&quot;: { # Spec of a task # Required. Tasks in the group share the same task spec.
        &quot;computeResource&quot;: { # Compute resource requirements. ComputeResource defines the amount of resources required for each task. Make sure your tasks have enough resources to successfully run. If you also define the types of resources for a job to use with the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure both fields are compatible with each other. # ComputeResource requirements.
          &quot;bootDiskMib&quot;: &quot;A String&quot;, # Extra boot disk size in MiB for each task.
          &quot;cpuMilli&quot;: &quot;A String&quot;, # The milliCPU count. `cpuMilli` defines the amount of CPU resources per task in milliCPU units. For example, `1000` corresponds to 1 vCPU per task. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the CPU resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 2 vCPUs each, you are recommended to set `cpuMilli` no more than `2000`, or you are recommended to run two tasks on the same VM if you set `cpuMilli` to `1000` or less.
          &quot;memoryMib&quot;: &quot;A String&quot;, # Memory in MiB. `memoryMib` defines the amount of memory per task in MiB units. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the memory resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 8 GiB each, you are recommended to set `memoryMib` to no more than `8192`, or you are recommended to run two tasks on the same VM if you set `memoryMib` to `4096` or less.
        },
        &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables to set before running the Task.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
        &quot;environments&quot;: { # Deprecated: please use environment(non-plural) instead.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;lifecyclePolicies&quot;: [ # Lifecycle management schema when any task in a task group is failed. Currently we only support one lifecycle policy. When the lifecycle policy condition is met, the action in the policy will execute. If task execution result does not meet with the defined lifecycle policy, we consider it as the default policy. Default policy means if the exit code is 0, exit task. If task ends with non-zero exit code, retry the task with max_retry_count.
          { # LifecyclePolicy describes how to deal with task failures based on different conditions.
            &quot;action&quot;: &quot;A String&quot;, # Action to execute when ActionCondition is true. When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found.
            &quot;actionCondition&quot;: { # Conditions for actions to deal with task failures. # Conditions that decide why a task failure is dealt with a specific action.
              &quot;exitCodes&quot;: [ # Exit codes of a task execution. If there are more than 1 exit codes, when task executes with any of the exit code in the list, the condition is met and the action will be executed.
                42,
              ],
            },
          },
        ],
        &quot;maxRetryCount&quot;: 42, # Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10].
        &quot;maxRunDuration&quot;: &quot;A String&quot;, # Maximum duration the task should run before being automatically retried (if enabled) or automatically failed. Format the value of this field as a time limit in seconds followed by `s`—for example, `3600s` for 1 hour. The field accepts any value between 0 and the maximum listed for the `Duration` field type at https://protobuf.dev/reference/protobuf/google.protobuf/#duration; however, the actual maximum run time for a job will be limited to the maximum run time for a job listed at https://cloud.google.com/batch/quotas#max-job-duration.
        &quot;runnables&quot;: [ # Required. The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run. Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn&#x27;t finish, but you enabled its `background` subfield. + The runnable exited with a non-zero status, but you enabled its `ignore_exit_status` subfield.
          { # Runnable describes instructions for executing a specific script or container as part of a Task.
            &quot;alwaysRun&quot;: True or False, # By default, after a Runnable fails, no further Runnable are executed. This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task&#x27;s overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.
            &quot;background&quot;: True or False, # Normally, a runnable that doesn&#x27;t exit causes its task to fail. However, you can set this field to `true` to configure a background runnable. Background runnables are allowed continue running in the background while the task executes subsequent runnables. For example, background runnables are useful for providing services to other runnables or providing debugging-support tools like SSH servers. Specifically, background runnables are killed automatically (if they have not already exited) a short time after all foreground runnables have completed. Even though this is likely to result in a non-zero exit status for the background runnable, these automatic kills are not treated as task failures.
            &quot;barrier&quot;: { # A barrier runnable automatically blocks the execution of subsequent runnables until all the tasks in the task group reach the barrier. # Barrier runnable.
              &quot;name&quot;: &quot;A String&quot;, # Barriers are identified by their index in runnable list. Names are not required, but if present should be an identifier.
            },
            &quot;container&quot;: { # Container runnable. # Container runnable.
              &quot;blockExternalNetwork&quot;: True or False, # If set to true, external network access to and from container will be blocked, containers that are with block_external_network as true can still communicate with each other, network cannot be specified in the `container.options` field.
              &quot;commands&quot;: [ # Required for some container images. Overrides the `CMD` specified in the container. If there is an `ENTRYPOINT` (either in the container image or with the `entrypoint` field below) then these commands are appended as arguments to the `ENTRYPOINT`.
                &quot;A String&quot;,
              ],
              &quot;enableImageStreaming&quot;: True or False, # Optional. If set to true, this container runnable uses Image streaming. Use Image streaming to allow the runnable to initialize without waiting for the entire container image to download, which can significantly reduce startup time for large container images. When `enableImageStreaming` is set to true, the container runtime is [containerd](https://containerd.io/) instead of Docker. Additionally, this container runnable only supports the following `container` subfields: `imageUri`, `commands[]`, `entrypoint`, and `volumes[]`; any other `container` subfields are ignored. For more information about the requirements and limitations for using Image streaming with Batch, see the [`image-streaming` sample on GitHub](https://github.com/GoogleCloudPlatform/batch-samples/tree/main/api-samples/image-streaming).
              &quot;entrypoint&quot;: &quot;A String&quot;, # Required for some container images. Overrides the `ENTRYPOINT` specified in the container.
              &quot;imageUri&quot;: &quot;A String&quot;, # Required. The URI to pull the container image from.
              &quot;options&quot;: &quot;A String&quot;, # Required for some container images. Arbitrary additional options to include in the `docker run` command when running this container—for example, `--network host`. For the `--volume` option, use the `volumes` field for the container.
              &quot;password&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The password to login to the Docker registry that contains the image. For security, it is strongly recommended to specify an encrypted password by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. Warning: If you specify the password using plain text, you risk the password being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the password instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;username&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The username to login to the Docker registry that contains the image. You can either specify the username directly by using plain text or specify an encrypted username by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. However, using a secret is recommended for enhanced security. Caution: If you specify the username using plain text, you risk the username being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the username instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;volumes&quot;: [ # Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match `--volume` option for the `docker run` command—for example, `/foo:/bar` or `/foo:/bar:ro`. If the `TaskSpec.Volumes` field is specified but this field is not, Batch will mount each volume from the host machine to the container with the same mount path by default. In this case, the default mount option for containers will be read-only (`ro`) for existing persistent disks and read-write (`rw`) for other volume types, regardless of the original mount options specified in `TaskSpec.Volumes`. If you need different mount settings, you can explicitly configure them in this field.
                &quot;A String&quot;,
              ],
            },
            &quot;displayName&quot;: &quot;A String&quot;, # Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for users to understand the logs. If not provided the index of the runnable will be used for outputs.
            &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup).
              &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
              },
              &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
              &quot;variables&quot;: { # A map of environment variable names to values.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
            },
            &quot;ignoreExitStatus&quot;: True or False, # Normally, a runnable that returns a non-zero exit status fails and causes the task to fail. However, you can set this field to `true` to allow the task to continue executing its other runnables even if this runnable fails.
            &quot;labels&quot;: { # Labels for this Runnable.
              &quot;a_key&quot;: &quot;A String&quot;,
            },
            &quot;script&quot;: { # Script runnable. # Script runnable.
              &quot;path&quot;: &quot;A String&quot;, # The path to a script file that is accessible from the host VM(s). Unless the script file supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) as the first line of the file. For example, to execute the script using bash, include `#!/bin/bash` as the first line of the file. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3` as the first line of the file.
              &quot;text&quot;: &quot;A String&quot;, # The text for a script. Unless the script text supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) at the beginning of the text. For example, to execute the script using bash, include `#!/bin/bash\n` at the beginning of the text. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3\n` at the beginning of the text.
            },
            &quot;timeout&quot;: &quot;A String&quot;, # Timeout for this Runnable.
          },
        ],
        &quot;volumes&quot;: [ # Volumes to mount before running Tasks using this TaskSpec.
          { # Volume describes a volume and parameters for it to be mounted to a VM.
            &quot;deviceName&quot;: &quot;A String&quot;, # Device name of an attached disk volume, which should align with a device_name specified by job.allocation_policy.instances[0].policy.disks[i].device_name or defined by the given instance template in job.allocation_policy.instances[0].instance_template.
            &quot;gcs&quot;: { # Represents a Google Cloud Storage volume. # A Google Cloud Storage (GCS) volume.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote path, either a bucket name or a subdirectory of a bucket, e.g.: bucket_name, bucket_name/subdirectory/
            },
            &quot;mountOptions&quot;: [ # Mount options vary based on the type of storage volume: * For a Cloud Storage bucket, all the mount options provided by the [`gcsfuse` tool](https://cloud.google.com/storage/docs/gcsfuse-cli) are supported. * For an existing persistent disk, all mount options provided by the [`mount` command](https://man7.org/linux/man-pages/man8/mount.8.html) except writing are supported. This is due to restrictions of [multi-writer mode](https://cloud.google.com/compute/docs/disks/sharing-disks-between-vms). * For any other disk or a Network File System (NFS), all the mount options provided by the `mount` command are supported.
              &quot;A String&quot;,
            ],
            &quot;mountPath&quot;: &quot;A String&quot;, # The mount path for the volume, e.g. /mnt/disks/share.
            &quot;nfs&quot;: { # Represents an NFS volume. # A Network File System (NFS) volume. For example, a Filestore file share.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote source path exported from the NFS, e.g., &quot;/share&quot;.
              &quot;server&quot;: &quot;A String&quot;, # The IP address of the NFS.
            },
          },
        ],
      },
    },
  ],
  &quot;uid&quot;: &quot;A String&quot;, # Output only. A system generated unique ID for the Job.
  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last time the Job was updated.
}

  jobId: string, ID used to uniquely identify the Job within its parent scope. This field should contain at most 63 characters and must start with lowercase characters. Only lowercase characters, numbers and &#x27;-&#x27; are accepted. The &#x27;-&#x27; character cannot be the first or the last one. A system generated ID will be used if the field is not set. The job.name field in the request will be ignored and the created resource name of the Job will be &quot;{parent}/jobs/{job_id}&quot;.
  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes since the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The Cloud Batch Job description.
  &quot;allocationPolicy&quot;: { # A Job&#x27;s resource allocation policy describes when, where, and how compute resources should be allocated for the Job. # Compute resource allocation for all TaskGroups in the Job.
    &quot;instances&quot;: [ # Describe instances that can be created by this AllocationPolicy. Only instances[0] is supported now.
      { # InstancePolicyOrTemplate lets you define the type of resources to use for this job either with an InstancePolicy or an instance template. If undefined, Batch picks the type of VM to use and doesn&#x27;t include optional VM resources such as GPUs and extra disks.
        &quot;blockProjectSshKeys&quot;: True or False, # Optional. Set this field to `true` if you want Batch to block project-level SSH keys from accessing this job&#x27;s VMs. Alternatively, you can configure the job to specify a VM instance template that blocks project-level SSH keys. In either case, Batch blocks project-level SSH keys while creating the VMs for this job. Batch allows project-level SSH keys for a job&#x27;s VMs only if all the following are true: + This field is undefined or set to `false`. + The job&#x27;s VM instance template (if any) doesn&#x27;t block project-level SSH keys. Notably, you can override this behavior by manually updating a VM to block or allow project-level SSH keys. For more information about blocking project-level SSH keys, see the Compute Engine documentation: https://cloud.google.com/compute/docs/connect/restrict-ssh-keys#block-keys
        &quot;installGpuDrivers&quot;: True or False, # Set this field true if you want Batch to help fetch drivers from a third party location and install them for GPUs specified in `policy.accelerators` or `instance_template` on your behalf. Default is false. For Container-Optimized Image cases, Batch will install the accelerator driver following milestones of https://cloud.google.com/container-optimized-os/docs/release-notes. For non Container-Optimized Image cases, following https://github.com/GoogleCloudPlatform/compute-gpu-installation/blob/main/linux/install_gpu_driver.py.
        &quot;installOpsAgent&quot;: True or False, # Optional. Set this field true if you want Batch to install Ops Agent on your behalf. Default is false.
        &quot;instanceTemplate&quot;: &quot;A String&quot;, # Name of an instance template used to create VMs. Named the field as &#x27;instance_template&#x27; instead of &#x27;template&#x27; to avoid C++ keyword conflict. Batch only supports global instance templates from the same project as the job. You can specify the global instance template as a full or partial URL.
        &quot;policy&quot;: { # InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy. # InstancePolicy.
          &quot;accelerators&quot;: [ # The accelerators attached to each VM instance.
            { # Accelerator describes Compute Engine accelerators to be attached to the VM.
              &quot;count&quot;: &quot;A String&quot;, # The number of accelerators of this type.
              &quot;driverVersion&quot;: &quot;A String&quot;, # Optional. The NVIDIA GPU driver version that should be installed for this type. You can define the specific driver version such as &quot;470.103.01&quot;, following the driver version requirements in https://cloud.google.com/compute/docs/gpus/install-drivers-gpu#minimum-driver. Batch will install the specific accelerator driver if qualified.
              &quot;installGpuDrivers&quot;: True or False, # Deprecated: please use instances[0].install_gpu_drivers instead.
              &quot;type&quot;: &quot;A String&quot;, # The accelerator type. For example, &quot;nvidia-tesla-t4&quot;. See `gcloud compute accelerator-types list`.
            },
          ],
          &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # Boot disk to be created and attached to each VM by this InstancePolicy. Boot disk will be deleted when the VM is deleted. Batch API now only supports booting from image.
            &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
            &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
            &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
            &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
            &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
          },
          &quot;disks&quot;: [ # Non-boot disks to be attached for each VM created by this InstancePolicy. New disks will be deleted when the VM is deleted. A non-boot disk is a disk that can be of a device with a file system or a raw storage drive that is not ready for data storage and accessing.
            { # A new or an existing persistent disk (PD) or a local ssd attached to a VM instance.
              &quot;deviceName&quot;: &quot;A String&quot;, # Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.
              &quot;existingDisk&quot;: &quot;A String&quot;, # Name of an existing PD.
              &quot;newDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
                &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
              },
            },
          ],
          &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
          &quot;minCpuPlatform&quot;: &quot;A String&quot;, # The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
          &quot;provisioningModel&quot;: &quot;A String&quot;, # The provisioning model.
          &quot;reservation&quot;: &quot;A String&quot;, # Optional. If not specified (default), VMs will consume any applicable reservation. If &quot;NO_RESERVATION&quot; is specified, VMs will not consume any reservation. Otherwise, if specified, VMs will consume only the specified reservation.
        },
      },
    ],
    &quot;labels&quot;: { # Custom labels to apply to the job and all the Compute Engine resources that both are created by this allocation policy and support labels. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;location&quot;: { # Location where compute resources should be allocated for the Job.
      &quot;allowedLocations&quot;: [ # A list of allowed location names represented by internal URLs. Each location can be a region or a zone. Only one region or multiple zones in one region is supported now. For example, [&quot;regions/us-central1&quot;] allow VMs in any zones in region us-central1. [&quot;zones/us-central1-a&quot;, &quot;zones/us-central1-c&quot;] only allow VMs in zones us-central1-a and us-central1-c. Mixing locations from different regions would cause errors. For example, [&quot;regions/us-central1&quot;, &quot;zones/us-central1-a&quot;, &quot;zones/us-central1-b&quot;, &quot;zones/us-west1-a&quot;] contains locations from two distinct regions: us-central1 and us-west1. This combination will trigger an error.
        &quot;A String&quot;,
      ],
    },
    &quot;network&quot;: { # NetworkPolicy describes VM instance network configurations. # The network policy. If you define an instance template in the `InstancePolicyOrTemplate` field, Batch will use the network settings in the instance template instead of this field.
      &quot;networkInterfaces&quot;: [ # Network configurations.
        { # A network interface.
          &quot;network&quot;: &quot;A String&quot;, # The URL of an existing network resource. You can specify the network as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * projects/{project}/global/networks/{network} * global/networks/{network}
          &quot;noExternalIpAddress&quot;: True or False, # Default is false (with an external IP address). Required if no external public IP address is attached to the VM. If no external public IP address, additional configuration is required to allow the VM to access Google Services. See https://cloud.google.com/vpc/docs/configure-private-google-access and https://cloud.google.com/nat/docs/gce-example#create-nat for more information.
          &quot;subnetwork&quot;: &quot;A String&quot;, # The URL of an existing subnetwork resource in the network. You can specify the subnetwork as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork} * projects/{project}/regions/{region}/subnetworks/{subnetwork} * regions/{region}/subnetworks/{subnetwork}
        },
      ],
    },
    &quot;placement&quot;: { # PlacementPolicy describes a group placement policy for the VMs controlled by this AllocationPolicy. # The placement policy.
      &quot;collocation&quot;: &quot;A String&quot;, # UNSPECIFIED vs. COLLOCATED (default UNSPECIFIED). Use COLLOCATED when you want VMs to be located close to each other for low network latency between the VMs. No placement policy will be generated when collocation is UNSPECIFIED.
      &quot;maxDistance&quot;: &quot;A String&quot;, # When specified, causes the job to fail if more than max_distance logical switches are required between VMs. Batch uses the most compact possible placement of VMs even when max_distance is not specified. An explicit max_distance makes that level of compactness a strict requirement. Not yet implemented
    },
    &quot;serviceAccount&quot;: { # Carries information about a Google Cloud service account. # Defines the service account for Batch-created VMs. If omitted, the [default Compute Engine service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. Must match the service account specified in any used instance template configured in the Batch job. Includes the following fields: * email: The service account&#x27;s email address. If not set, the default Compute Engine service account is used. * scopes: Additional OAuth scopes to grant the service account, beyond the default cloud-platform scope. (list of strings)
      &quot;email&quot;: &quot;A String&quot;, # Email address of the service account.
      &quot;scopes&quot;: [ # List of scopes to be enabled for this service account.
        &quot;A String&quot;,
      ],
    },
    &quot;tags&quot;: [ # Optional. Tags applied to the VM instances. The tags identify valid sources or targets for network firewalls. Each tag must be 1-63 characters long, and comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
      &quot;A String&quot;,
    ],
  },
  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Job was created.
  &quot;labels&quot;: { # Custom labels to apply to the job and any Cloud Logging [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) that it generates. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;logsPolicy&quot;: { # LogsPolicy describes if and how a job&#x27;s logs are preserved. Logs include information that is automatically written by the Batch service agent and any information that you configured the job&#x27;s runnables to write to the `stdout` or `stderr` streams. # Log preservation policy for the Job.
    &quot;cloudLoggingOption&quot;: { # `CloudLoggingOption` contains additional settings for Cloud Logging logs generated by Batch job. # Optional. When `destination` is set to `CLOUD_LOGGING`, you can optionally set this field to configure additional settings for Cloud Logging.
      &quot;useGenericTaskMonitoredResource&quot;: True or False, # Optional. Set this field to `true` to change the [monitored resource type](https://cloud.google.com/monitoring/api/resources) for Cloud Logging logs generated by this Batch job from the [`batch.googleapis.com/Job`](https://cloud.google.com/monitoring/api/resources#tag_batch.googleapis.com/Job) type to the formerly used [`generic_task`](https://cloud.google.com/monitoring/api/resources#tag_generic_task) type.
    },
    &quot;destination&quot;: &quot;A String&quot;, # If and where logs should be saved.
    &quot;logsPath&quot;: &quot;A String&quot;, # When `destination` is set to `PATH`, you must set this field to the path where you want logs to be saved. This path can point to a local directory on the VM or (if congifured) a directory under the mount path of any Cloud Storage bucket, network file system (NFS), or writable persistent disk that is mounted to the job. For example, if the job has a bucket with `mountPath` set to `/mnt/disks/my-bucket`, you can write logs to the root directory of the `remotePath` of that bucket by setting this field to `/mnt/disks/my-bucket/`.
  },
  &quot;name&quot;: &quot;A String&quot;, # Output only. Job name. For example: &quot;projects/123456/locations/us-central1/jobs/job01&quot;.
  &quot;notifications&quot;: [ # Notification configurations.
    { # Notification configurations.
      &quot;message&quot;: { # Message details. Describe the conditions under which messages will be sent. If no attribute is defined, no message will be sent by default. One message should specify either the job or the task level attributes, but not both. For example, job level: JOB_STATE_CHANGED and/or a specified new_job_state; task level: TASK_STATE_CHANGED and/or a specified new_task_state. # The attribute requirements of messages to be sent to this Pub/Sub topic. Without this field, no message will be sent.
        &quot;newJobState&quot;: &quot;A String&quot;, # The new job state.
        &quot;newTaskState&quot;: &quot;A String&quot;, # The new task state.
        &quot;type&quot;: &quot;A String&quot;, # The message type.
      },
      &quot;pubsubTopic&quot;: &quot;A String&quot;, # The Pub/Sub topic where notifications for the job, like state changes, will be published. If undefined, no Pub/Sub notifications are sent for this job. Specify the topic using the following format: `projects/{project}/topics/{topic}`. Notably, if you want to specify a Pub/Sub topic that is in a different project than the job, your administrator must grant your project&#x27;s Batch service agent permission to publish to that topic. For more information about configuring Pub/Sub notifications for a job, see https://cloud.google.com/batch/docs/enable-notifications.
    },
  ],
  &quot;priority&quot;: &quot;A String&quot;, # Priority of the Job. The valid value range is [0, 100). Default value is 0. Higher value indicates higher priority. A job with higher priority value is more likely to run earlier if all other requirements are satisfied.
  &quot;status&quot;: { # Job status. # Output only. Job status. It is read only for users.
    &quot;runDuration&quot;: &quot;A String&quot;, # The duration of time that the Job spent in status RUNNING.
    &quot;state&quot;: &quot;A String&quot;, # Job state
    &quot;statusEvents&quot;: [ # Job status events
      { # Status event.
        &quot;description&quot;: &quot;A String&quot;, # Description of the event.
        &quot;eventTime&quot;: &quot;A String&quot;, # The time this event occurred.
        &quot;taskExecution&quot;: { # This Task Execution field includes detail information for task execution procedures, based on StatusEvent types. # Task Execution. This field is only defined for task-level status events where the task fails.
          &quot;exitCode&quot;: 42, # The exit code of a finished task. If the task succeeded, the exit code will be 0. If the task failed but not due to the following reasons, the exit code will be 50000. Otherwise, it can be from different sources: * Batch known failures: https://cloud.google.com/batch/docs/troubleshooting#reserved-exit-codes. * Batch runnable execution failures; you can rely on Batch logs to further diagnose: https://cloud.google.com/batch/docs/analyze-job-using-logs. If there are multiple runnables failures, Batch only exposes the first error.
        },
        &quot;taskState&quot;: &quot;A String&quot;, # Task State. This field is only defined for task-level status events.
        &quot;type&quot;: &quot;A String&quot;, # Type of the event.
      },
    ],
    &quot;taskGroups&quot;: { # Aggregated task status for each TaskGroup in the Job. The map key is TaskGroup ID.
      &quot;a_key&quot;: { # Aggregated task status for a TaskGroup.
        &quot;counts&quot;: { # Count of task in each state in the TaskGroup. The map key is task state name.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;instances&quot;: [ # Status of instances allocated for the TaskGroup.
          { # VM instance status.
            &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # The VM boot disk.
              &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
              &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
              &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
              &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
              &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
            },
            &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
            &quot;provisioningModel&quot;: &quot;A String&quot;, # The VM instance provisioning model.
            &quot;taskPack&quot;: &quot;A String&quot;, # The max number of tasks can be assigned to this instance type.
          },
        ],
      },
    },
  },
  &quot;taskGroups&quot;: [ # Required. TaskGroups in the Job. Only one TaskGroup is supported now.
    { # A TaskGroup defines one or more Tasks that all share the same TaskSpec.
      &quot;name&quot;: &quot;A String&quot;, # Output only. TaskGroup name. The system generates this field based on parent Job name. For example: &quot;projects/123456/locations/us-west1/jobs/job01/taskGroups/group01&quot;.
      &quot;parallelism&quot;: &quot;A String&quot;, # Max number of tasks that can run in parallel. Default to min(task_count, parallel tasks per job limit). See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
      &quot;permissiveSsh&quot;: True or False, # When true, Batch will configure SSH to allow passwordless login between VMs running the Batch tasks in the same TaskGroup.
      &quot;requireHostsFile&quot;: True or False, # When true, Batch will populate a file with a list of all VMs assigned to the TaskGroup and set the BATCH_HOSTS_FILE environment variable to the path of that file. Defaults to false. The host file supports up to 1000 VMs.
      &quot;runAsNonRoot&quot;: True or False, # Optional. If not set or set to false, Batch uses the root user to execute runnables. If set to true, Batch runs the runnables using a non-root user. Currently, the non-root user Batch used is generated by OS Login. For more information, see [About OS Login](https://cloud.google.com/compute/docs/oslogin).
      &quot;schedulingPolicy&quot;: &quot;A String&quot;, # Scheduling policy for Tasks in the TaskGroup. The default value is AS_SOON_AS_POSSIBLE.
      &quot;taskCount&quot;: &quot;A String&quot;, # Number of Tasks in the TaskGroup. Default is 1.
      &quot;taskCountPerNode&quot;: &quot;A String&quot;, # Max number of tasks that can be run on a VM at the same time. If not specified, the system will decide a value based on available compute resources on a VM and task requirements.
      &quot;taskEnvironments&quot;: [ # An array of environment variable mappings, which are passed to Tasks with matching indices. If task_environments is used then task_count should not be specified in the request (and will be ignored). Task count will be the length of task_environments. Tasks get a BATCH_TASK_INDEX and BATCH_TASK_COUNT environment variable, in addition to any environment variables set in task_environments, specifying the number of Tasks in the Task&#x27;s parent TaskGroup, and the specific Task&#x27;s index in the TaskGroup (0 through BATCH_TASK_COUNT - 1).
        { # An Environment describes a collection of environment variables to set when executing Tasks.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
      ],
      &quot;taskSpec&quot;: { # Spec of a task # Required. Tasks in the group share the same task spec.
        &quot;computeResource&quot;: { # Compute resource requirements. ComputeResource defines the amount of resources required for each task. Make sure your tasks have enough resources to successfully run. If you also define the types of resources for a job to use with the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure both fields are compatible with each other. # ComputeResource requirements.
          &quot;bootDiskMib&quot;: &quot;A String&quot;, # Extra boot disk size in MiB for each task.
          &quot;cpuMilli&quot;: &quot;A String&quot;, # The milliCPU count. `cpuMilli` defines the amount of CPU resources per task in milliCPU units. For example, `1000` corresponds to 1 vCPU per task. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the CPU resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 2 vCPUs each, you are recommended to set `cpuMilli` no more than `2000`, or you are recommended to run two tasks on the same VM if you set `cpuMilli` to `1000` or less.
          &quot;memoryMib&quot;: &quot;A String&quot;, # Memory in MiB. `memoryMib` defines the amount of memory per task in MiB units. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the memory resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 8 GiB each, you are recommended to set `memoryMib` to no more than `8192`, or you are recommended to run two tasks on the same VM if you set `memoryMib` to `4096` or less.
        },
        &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables to set before running the Task.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
        &quot;environments&quot;: { # Deprecated: please use environment(non-plural) instead.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;lifecyclePolicies&quot;: [ # Lifecycle management schema when any task in a task group is failed. Currently we only support one lifecycle policy. When the lifecycle policy condition is met, the action in the policy will execute. If task execution result does not meet with the defined lifecycle policy, we consider it as the default policy. Default policy means if the exit code is 0, exit task. If task ends with non-zero exit code, retry the task with max_retry_count.
          { # LifecyclePolicy describes how to deal with task failures based on different conditions.
            &quot;action&quot;: &quot;A String&quot;, # Action to execute when ActionCondition is true. When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found.
            &quot;actionCondition&quot;: { # Conditions for actions to deal with task failures. # Conditions that decide why a task failure is dealt with a specific action.
              &quot;exitCodes&quot;: [ # Exit codes of a task execution. If there are more than 1 exit codes, when task executes with any of the exit code in the list, the condition is met and the action will be executed.
                42,
              ],
            },
          },
        ],
        &quot;maxRetryCount&quot;: 42, # Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10].
        &quot;maxRunDuration&quot;: &quot;A String&quot;, # Maximum duration the task should run before being automatically retried (if enabled) or automatically failed. Format the value of this field as a time limit in seconds followed by `s`—for example, `3600s` for 1 hour. The field accepts any value between 0 and the maximum listed for the `Duration` field type at https://protobuf.dev/reference/protobuf/google.protobuf/#duration; however, the actual maximum run time for a job will be limited to the maximum run time for a job listed at https://cloud.google.com/batch/quotas#max-job-duration.
        &quot;runnables&quot;: [ # Required. The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run. Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn&#x27;t finish, but you enabled its `background` subfield. + The runnable exited with a non-zero status, but you enabled its `ignore_exit_status` subfield.
          { # Runnable describes instructions for executing a specific script or container as part of a Task.
            &quot;alwaysRun&quot;: True or False, # By default, after a Runnable fails, no further Runnable are executed. This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task&#x27;s overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.
            &quot;background&quot;: True or False, # Normally, a runnable that doesn&#x27;t exit causes its task to fail. However, you can set this field to `true` to configure a background runnable. Background runnables are allowed continue running in the background while the task executes subsequent runnables. For example, background runnables are useful for providing services to other runnables or providing debugging-support tools like SSH servers. Specifically, background runnables are killed automatically (if they have not already exited) a short time after all foreground runnables have completed. Even though this is likely to result in a non-zero exit status for the background runnable, these automatic kills are not treated as task failures.
            &quot;barrier&quot;: { # A barrier runnable automatically blocks the execution of subsequent runnables until all the tasks in the task group reach the barrier. # Barrier runnable.
              &quot;name&quot;: &quot;A String&quot;, # Barriers are identified by their index in runnable list. Names are not required, but if present should be an identifier.
            },
            &quot;container&quot;: { # Container runnable. # Container runnable.
              &quot;blockExternalNetwork&quot;: True or False, # If set to true, external network access to and from container will be blocked, containers that are with block_external_network as true can still communicate with each other, network cannot be specified in the `container.options` field.
              &quot;commands&quot;: [ # Required for some container images. Overrides the `CMD` specified in the container. If there is an `ENTRYPOINT` (either in the container image or with the `entrypoint` field below) then these commands are appended as arguments to the `ENTRYPOINT`.
                &quot;A String&quot;,
              ],
              &quot;enableImageStreaming&quot;: True or False, # Optional. If set to true, this container runnable uses Image streaming. Use Image streaming to allow the runnable to initialize without waiting for the entire container image to download, which can significantly reduce startup time for large container images. When `enableImageStreaming` is set to true, the container runtime is [containerd](https://containerd.io/) instead of Docker. Additionally, this container runnable only supports the following `container` subfields: `imageUri`, `commands[]`, `entrypoint`, and `volumes[]`; any other `container` subfields are ignored. For more information about the requirements and limitations for using Image streaming with Batch, see the [`image-streaming` sample on GitHub](https://github.com/GoogleCloudPlatform/batch-samples/tree/main/api-samples/image-streaming).
              &quot;entrypoint&quot;: &quot;A String&quot;, # Required for some container images. Overrides the `ENTRYPOINT` specified in the container.
              &quot;imageUri&quot;: &quot;A String&quot;, # Required. The URI to pull the container image from.
              &quot;options&quot;: &quot;A String&quot;, # Required for some container images. Arbitrary additional options to include in the `docker run` command when running this container—for example, `--network host`. For the `--volume` option, use the `volumes` field for the container.
              &quot;password&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The password to login to the Docker registry that contains the image. For security, it is strongly recommended to specify an encrypted password by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. Warning: If you specify the password using plain text, you risk the password being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the password instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;username&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The username to login to the Docker registry that contains the image. You can either specify the username directly by using plain text or specify an encrypted username by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. However, using a secret is recommended for enhanced security. Caution: If you specify the username using plain text, you risk the username being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the username instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;volumes&quot;: [ # Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match `--volume` option for the `docker run` command—for example, `/foo:/bar` or `/foo:/bar:ro`. If the `TaskSpec.Volumes` field is specified but this field is not, Batch will mount each volume from the host machine to the container with the same mount path by default. In this case, the default mount option for containers will be read-only (`ro`) for existing persistent disks and read-write (`rw`) for other volume types, regardless of the original mount options specified in `TaskSpec.Volumes`. If you need different mount settings, you can explicitly configure them in this field.
                &quot;A String&quot;,
              ],
            },
            &quot;displayName&quot;: &quot;A String&quot;, # Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for users to understand the logs. If not provided the index of the runnable will be used for outputs.
            &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup).
              &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
              },
              &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
              &quot;variables&quot;: { # A map of environment variable names to values.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
            },
            &quot;ignoreExitStatus&quot;: True or False, # Normally, a runnable that returns a non-zero exit status fails and causes the task to fail. However, you can set this field to `true` to allow the task to continue executing its other runnables even if this runnable fails.
            &quot;labels&quot;: { # Labels for this Runnable.
              &quot;a_key&quot;: &quot;A String&quot;,
            },
            &quot;script&quot;: { # Script runnable. # Script runnable.
              &quot;path&quot;: &quot;A String&quot;, # The path to a script file that is accessible from the host VM(s). Unless the script file supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) as the first line of the file. For example, to execute the script using bash, include `#!/bin/bash` as the first line of the file. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3` as the first line of the file.
              &quot;text&quot;: &quot;A String&quot;, # The text for a script. Unless the script text supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) at the beginning of the text. For example, to execute the script using bash, include `#!/bin/bash\n` at the beginning of the text. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3\n` at the beginning of the text.
            },
            &quot;timeout&quot;: &quot;A String&quot;, # Timeout for this Runnable.
          },
        ],
        &quot;volumes&quot;: [ # Volumes to mount before running Tasks using this TaskSpec.
          { # Volume describes a volume and parameters for it to be mounted to a VM.
            &quot;deviceName&quot;: &quot;A String&quot;, # Device name of an attached disk volume, which should align with a device_name specified by job.allocation_policy.instances[0].policy.disks[i].device_name or defined by the given instance template in job.allocation_policy.instances[0].instance_template.
            &quot;gcs&quot;: { # Represents a Google Cloud Storage volume. # A Google Cloud Storage (GCS) volume.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote path, either a bucket name or a subdirectory of a bucket, e.g.: bucket_name, bucket_name/subdirectory/
            },
            &quot;mountOptions&quot;: [ # Mount options vary based on the type of storage volume: * For a Cloud Storage bucket, all the mount options provided by the [`gcsfuse` tool](https://cloud.google.com/storage/docs/gcsfuse-cli) are supported. * For an existing persistent disk, all mount options provided by the [`mount` command](https://man7.org/linux/man-pages/man8/mount.8.html) except writing are supported. This is due to restrictions of [multi-writer mode](https://cloud.google.com/compute/docs/disks/sharing-disks-between-vms). * For any other disk or a Network File System (NFS), all the mount options provided by the `mount` command are supported.
              &quot;A String&quot;,
            ],
            &quot;mountPath&quot;: &quot;A String&quot;, # The mount path for the volume, e.g. /mnt/disks/share.
            &quot;nfs&quot;: { # Represents an NFS volume. # A Network File System (NFS) volume. For example, a Filestore file share.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote source path exported from the NFS, e.g., &quot;/share&quot;.
              &quot;server&quot;: &quot;A String&quot;, # The IP address of the NFS.
            },
          },
        ],
      },
    },
  ],
  &quot;uid&quot;: &quot;A String&quot;, # Output only. A system generated unique ID for the Job.
  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last time the Job was updated.
}</pre>
</div>

<div class="method">
    <code class="details" id="delete">delete(name, reason=None, requestId=None, x__xgafv=None)</code>
  <pre>Delete a Job.

Args:
  name: string, Job name. (required)
  reason: string, Optional. Reason for this deletion.
  requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # This resource represents a long-running operation that is the result of a network API call.
  &quot;done&quot;: True or False, # If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
  &quot;error&quot;: { # The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). # The error result of the operation in case of failure or cancellation.
    &quot;code&quot;: 42, # The status code, which should be an enum value of google.rpc.Code.
    &quot;details&quot;: [ # A list of messages that carry the error details. There is a common set of message types for APIs to use.
      {
        &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
      },
    ],
    &quot;message&quot;: &quot;A String&quot;, # A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
  },
  &quot;metadata&quot;: { # Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
  },
  &quot;name&quot;: &quot;A String&quot;, # The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
  &quot;response&quot;: { # The normal, successful response of the operation. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
    &quot;a_key&quot;: &quot;&quot;, # Properties of the object. Contains field @type with type URL.
  },
}</pre>
</div>

<div class="method">
    <code class="details" id="get">get(name, x__xgafv=None)</code>
  <pre>Get a Job specified by its resource name.

Args:
  name: string, Required. Job name. (required)
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # The Cloud Batch Job description.
  &quot;allocationPolicy&quot;: { # A Job&#x27;s resource allocation policy describes when, where, and how compute resources should be allocated for the Job. # Compute resource allocation for all TaskGroups in the Job.
    &quot;instances&quot;: [ # Describe instances that can be created by this AllocationPolicy. Only instances[0] is supported now.
      { # InstancePolicyOrTemplate lets you define the type of resources to use for this job either with an InstancePolicy or an instance template. If undefined, Batch picks the type of VM to use and doesn&#x27;t include optional VM resources such as GPUs and extra disks.
        &quot;blockProjectSshKeys&quot;: True or False, # Optional. Set this field to `true` if you want Batch to block project-level SSH keys from accessing this job&#x27;s VMs. Alternatively, you can configure the job to specify a VM instance template that blocks project-level SSH keys. In either case, Batch blocks project-level SSH keys while creating the VMs for this job. Batch allows project-level SSH keys for a job&#x27;s VMs only if all the following are true: + This field is undefined or set to `false`. + The job&#x27;s VM instance template (if any) doesn&#x27;t block project-level SSH keys. Notably, you can override this behavior by manually updating a VM to block or allow project-level SSH keys. For more information about blocking project-level SSH keys, see the Compute Engine documentation: https://cloud.google.com/compute/docs/connect/restrict-ssh-keys#block-keys
        &quot;installGpuDrivers&quot;: True or False, # Set this field true if you want Batch to help fetch drivers from a third party location and install them for GPUs specified in `policy.accelerators` or `instance_template` on your behalf. Default is false. For Container-Optimized Image cases, Batch will install the accelerator driver following milestones of https://cloud.google.com/container-optimized-os/docs/release-notes. For non Container-Optimized Image cases, following https://github.com/GoogleCloudPlatform/compute-gpu-installation/blob/main/linux/install_gpu_driver.py.
        &quot;installOpsAgent&quot;: True or False, # Optional. Set this field true if you want Batch to install Ops Agent on your behalf. Default is false.
        &quot;instanceTemplate&quot;: &quot;A String&quot;, # Name of an instance template used to create VMs. Named the field as &#x27;instance_template&#x27; instead of &#x27;template&#x27; to avoid C++ keyword conflict. Batch only supports global instance templates from the same project as the job. You can specify the global instance template as a full or partial URL.
        &quot;policy&quot;: { # InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy. # InstancePolicy.
          &quot;accelerators&quot;: [ # The accelerators attached to each VM instance.
            { # Accelerator describes Compute Engine accelerators to be attached to the VM.
              &quot;count&quot;: &quot;A String&quot;, # The number of accelerators of this type.
              &quot;driverVersion&quot;: &quot;A String&quot;, # Optional. The NVIDIA GPU driver version that should be installed for this type. You can define the specific driver version such as &quot;470.103.01&quot;, following the driver version requirements in https://cloud.google.com/compute/docs/gpus/install-drivers-gpu#minimum-driver. Batch will install the specific accelerator driver if qualified.
              &quot;installGpuDrivers&quot;: True or False, # Deprecated: please use instances[0].install_gpu_drivers instead.
              &quot;type&quot;: &quot;A String&quot;, # The accelerator type. For example, &quot;nvidia-tesla-t4&quot;. See `gcloud compute accelerator-types list`.
            },
          ],
          &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # Boot disk to be created and attached to each VM by this InstancePolicy. Boot disk will be deleted when the VM is deleted. Batch API now only supports booting from image.
            &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
            &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
            &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
            &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
            &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
          },
          &quot;disks&quot;: [ # Non-boot disks to be attached for each VM created by this InstancePolicy. New disks will be deleted when the VM is deleted. A non-boot disk is a disk that can be of a device with a file system or a raw storage drive that is not ready for data storage and accessing.
            { # A new or an existing persistent disk (PD) or a local ssd attached to a VM instance.
              &quot;deviceName&quot;: &quot;A String&quot;, # Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.
              &quot;existingDisk&quot;: &quot;A String&quot;, # Name of an existing PD.
              &quot;newDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
                &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
              },
            },
          ],
          &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
          &quot;minCpuPlatform&quot;: &quot;A String&quot;, # The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
          &quot;provisioningModel&quot;: &quot;A String&quot;, # The provisioning model.
          &quot;reservation&quot;: &quot;A String&quot;, # Optional. If not specified (default), VMs will consume any applicable reservation. If &quot;NO_RESERVATION&quot; is specified, VMs will not consume any reservation. Otherwise, if specified, VMs will consume only the specified reservation.
        },
      },
    ],
    &quot;labels&quot;: { # Custom labels to apply to the job and all the Compute Engine resources that both are created by this allocation policy and support labels. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
      &quot;a_key&quot;: &quot;A String&quot;,
    },
    &quot;location&quot;: { # Location where compute resources should be allocated for the Job.
      &quot;allowedLocations&quot;: [ # A list of allowed location names represented by internal URLs. Each location can be a region or a zone. Only one region or multiple zones in one region is supported now. For example, [&quot;regions/us-central1&quot;] allow VMs in any zones in region us-central1. [&quot;zones/us-central1-a&quot;, &quot;zones/us-central1-c&quot;] only allow VMs in zones us-central1-a and us-central1-c. Mixing locations from different regions would cause errors. For example, [&quot;regions/us-central1&quot;, &quot;zones/us-central1-a&quot;, &quot;zones/us-central1-b&quot;, &quot;zones/us-west1-a&quot;] contains locations from two distinct regions: us-central1 and us-west1. This combination will trigger an error.
        &quot;A String&quot;,
      ],
    },
    &quot;network&quot;: { # NetworkPolicy describes VM instance network configurations. # The network policy. If you define an instance template in the `InstancePolicyOrTemplate` field, Batch will use the network settings in the instance template instead of this field.
      &quot;networkInterfaces&quot;: [ # Network configurations.
        { # A network interface.
          &quot;network&quot;: &quot;A String&quot;, # The URL of an existing network resource. You can specify the network as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * projects/{project}/global/networks/{network} * global/networks/{network}
          &quot;noExternalIpAddress&quot;: True or False, # Default is false (with an external IP address). Required if no external public IP address is attached to the VM. If no external public IP address, additional configuration is required to allow the VM to access Google Services. See https://cloud.google.com/vpc/docs/configure-private-google-access and https://cloud.google.com/nat/docs/gce-example#create-nat for more information.
          &quot;subnetwork&quot;: &quot;A String&quot;, # The URL of an existing subnetwork resource in the network. You can specify the subnetwork as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork} * projects/{project}/regions/{region}/subnetworks/{subnetwork} * regions/{region}/subnetworks/{subnetwork}
        },
      ],
    },
    &quot;placement&quot;: { # PlacementPolicy describes a group placement policy for the VMs controlled by this AllocationPolicy. # The placement policy.
      &quot;collocation&quot;: &quot;A String&quot;, # UNSPECIFIED vs. COLLOCATED (default UNSPECIFIED). Use COLLOCATED when you want VMs to be located close to each other for low network latency between the VMs. No placement policy will be generated when collocation is UNSPECIFIED.
      &quot;maxDistance&quot;: &quot;A String&quot;, # When specified, causes the job to fail if more than max_distance logical switches are required between VMs. Batch uses the most compact possible placement of VMs even when max_distance is not specified. An explicit max_distance makes that level of compactness a strict requirement. Not yet implemented
    },
    &quot;serviceAccount&quot;: { # Carries information about a Google Cloud service account. # Defines the service account for Batch-created VMs. If omitted, the [default Compute Engine service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. Must match the service account specified in any used instance template configured in the Batch job. Includes the following fields: * email: The service account&#x27;s email address. If not set, the default Compute Engine service account is used. * scopes: Additional OAuth scopes to grant the service account, beyond the default cloud-platform scope. (list of strings)
      &quot;email&quot;: &quot;A String&quot;, # Email address of the service account.
      &quot;scopes&quot;: [ # List of scopes to be enabled for this service account.
        &quot;A String&quot;,
      ],
    },
    &quot;tags&quot;: [ # Optional. Tags applied to the VM instances. The tags identify valid sources or targets for network firewalls. Each tag must be 1-63 characters long, and comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
      &quot;A String&quot;,
    ],
  },
  &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Job was created.
  &quot;labels&quot;: { # Custom labels to apply to the job and any Cloud Logging [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) that it generates. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
    &quot;a_key&quot;: &quot;A String&quot;,
  },
  &quot;logsPolicy&quot;: { # LogsPolicy describes if and how a job&#x27;s logs are preserved. Logs include information that is automatically written by the Batch service agent and any information that you configured the job&#x27;s runnables to write to the `stdout` or `stderr` streams. # Log preservation policy for the Job.
    &quot;cloudLoggingOption&quot;: { # `CloudLoggingOption` contains additional settings for Cloud Logging logs generated by Batch job. # Optional. When `destination` is set to `CLOUD_LOGGING`, you can optionally set this field to configure additional settings for Cloud Logging.
      &quot;useGenericTaskMonitoredResource&quot;: True or False, # Optional. Set this field to `true` to change the [monitored resource type](https://cloud.google.com/monitoring/api/resources) for Cloud Logging logs generated by this Batch job from the [`batch.googleapis.com/Job`](https://cloud.google.com/monitoring/api/resources#tag_batch.googleapis.com/Job) type to the formerly used [`generic_task`](https://cloud.google.com/monitoring/api/resources#tag_generic_task) type.
    },
    &quot;destination&quot;: &quot;A String&quot;, # If and where logs should be saved.
    &quot;logsPath&quot;: &quot;A String&quot;, # When `destination` is set to `PATH`, you must set this field to the path where you want logs to be saved. This path can point to a local directory on the VM or (if congifured) a directory under the mount path of any Cloud Storage bucket, network file system (NFS), or writable persistent disk that is mounted to the job. For example, if the job has a bucket with `mountPath` set to `/mnt/disks/my-bucket`, you can write logs to the root directory of the `remotePath` of that bucket by setting this field to `/mnt/disks/my-bucket/`.
  },
  &quot;name&quot;: &quot;A String&quot;, # Output only. Job name. For example: &quot;projects/123456/locations/us-central1/jobs/job01&quot;.
  &quot;notifications&quot;: [ # Notification configurations.
    { # Notification configurations.
      &quot;message&quot;: { # Message details. Describe the conditions under which messages will be sent. If no attribute is defined, no message will be sent by default. One message should specify either the job or the task level attributes, but not both. For example, job level: JOB_STATE_CHANGED and/or a specified new_job_state; task level: TASK_STATE_CHANGED and/or a specified new_task_state. # The attribute requirements of messages to be sent to this Pub/Sub topic. Without this field, no message will be sent.
        &quot;newJobState&quot;: &quot;A String&quot;, # The new job state.
        &quot;newTaskState&quot;: &quot;A String&quot;, # The new task state.
        &quot;type&quot;: &quot;A String&quot;, # The message type.
      },
      &quot;pubsubTopic&quot;: &quot;A String&quot;, # The Pub/Sub topic where notifications for the job, like state changes, will be published. If undefined, no Pub/Sub notifications are sent for this job. Specify the topic using the following format: `projects/{project}/topics/{topic}`. Notably, if you want to specify a Pub/Sub topic that is in a different project than the job, your administrator must grant your project&#x27;s Batch service agent permission to publish to that topic. For more information about configuring Pub/Sub notifications for a job, see https://cloud.google.com/batch/docs/enable-notifications.
    },
  ],
  &quot;priority&quot;: &quot;A String&quot;, # Priority of the Job. The valid value range is [0, 100). Default value is 0. Higher value indicates higher priority. A job with higher priority value is more likely to run earlier if all other requirements are satisfied.
  &quot;status&quot;: { # Job status. # Output only. Job status. It is read only for users.
    &quot;runDuration&quot;: &quot;A String&quot;, # The duration of time that the Job spent in status RUNNING.
    &quot;state&quot;: &quot;A String&quot;, # Job state
    &quot;statusEvents&quot;: [ # Job status events
      { # Status event.
        &quot;description&quot;: &quot;A String&quot;, # Description of the event.
        &quot;eventTime&quot;: &quot;A String&quot;, # The time this event occurred.
        &quot;taskExecution&quot;: { # This Task Execution field includes detail information for task execution procedures, based on StatusEvent types. # Task Execution. This field is only defined for task-level status events where the task fails.
          &quot;exitCode&quot;: 42, # The exit code of a finished task. If the task succeeded, the exit code will be 0. If the task failed but not due to the following reasons, the exit code will be 50000. Otherwise, it can be from different sources: * Batch known failures: https://cloud.google.com/batch/docs/troubleshooting#reserved-exit-codes. * Batch runnable execution failures; you can rely on Batch logs to further diagnose: https://cloud.google.com/batch/docs/analyze-job-using-logs. If there are multiple runnables failures, Batch only exposes the first error.
        },
        &quot;taskState&quot;: &quot;A String&quot;, # Task State. This field is only defined for task-level status events.
        &quot;type&quot;: &quot;A String&quot;, # Type of the event.
      },
    ],
    &quot;taskGroups&quot;: { # Aggregated task status for each TaskGroup in the Job. The map key is TaskGroup ID.
      &quot;a_key&quot;: { # Aggregated task status for a TaskGroup.
        &quot;counts&quot;: { # Count of task in each state in the TaskGroup. The map key is task state name.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;instances&quot;: [ # Status of instances allocated for the TaskGroup.
          { # VM instance status.
            &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # The VM boot disk.
              &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
              &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
              &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
              &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
              &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
            },
            &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
            &quot;provisioningModel&quot;: &quot;A String&quot;, # The VM instance provisioning model.
            &quot;taskPack&quot;: &quot;A String&quot;, # The max number of tasks can be assigned to this instance type.
          },
        ],
      },
    },
  },
  &quot;taskGroups&quot;: [ # Required. TaskGroups in the Job. Only one TaskGroup is supported now.
    { # A TaskGroup defines one or more Tasks that all share the same TaskSpec.
      &quot;name&quot;: &quot;A String&quot;, # Output only. TaskGroup name. The system generates this field based on parent Job name. For example: &quot;projects/123456/locations/us-west1/jobs/job01/taskGroups/group01&quot;.
      &quot;parallelism&quot;: &quot;A String&quot;, # Max number of tasks that can run in parallel. Default to min(task_count, parallel tasks per job limit). See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
      &quot;permissiveSsh&quot;: True or False, # When true, Batch will configure SSH to allow passwordless login between VMs running the Batch tasks in the same TaskGroup.
      &quot;requireHostsFile&quot;: True or False, # When true, Batch will populate a file with a list of all VMs assigned to the TaskGroup and set the BATCH_HOSTS_FILE environment variable to the path of that file. Defaults to false. The host file supports up to 1000 VMs.
      &quot;runAsNonRoot&quot;: True or False, # Optional. If not set or set to false, Batch uses the root user to execute runnables. If set to true, Batch runs the runnables using a non-root user. Currently, the non-root user Batch used is generated by OS Login. For more information, see [About OS Login](https://cloud.google.com/compute/docs/oslogin).
      &quot;schedulingPolicy&quot;: &quot;A String&quot;, # Scheduling policy for Tasks in the TaskGroup. The default value is AS_SOON_AS_POSSIBLE.
      &quot;taskCount&quot;: &quot;A String&quot;, # Number of Tasks in the TaskGroup. Default is 1.
      &quot;taskCountPerNode&quot;: &quot;A String&quot;, # Max number of tasks that can be run on a VM at the same time. If not specified, the system will decide a value based on available compute resources on a VM and task requirements.
      &quot;taskEnvironments&quot;: [ # An array of environment variable mappings, which are passed to Tasks with matching indices. If task_environments is used then task_count should not be specified in the request (and will be ignored). Task count will be the length of task_environments. Tasks get a BATCH_TASK_INDEX and BATCH_TASK_COUNT environment variable, in addition to any environment variables set in task_environments, specifying the number of Tasks in the Task&#x27;s parent TaskGroup, and the specific Task&#x27;s index in the TaskGroup (0 through BATCH_TASK_COUNT - 1).
        { # An Environment describes a collection of environment variables to set when executing Tasks.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
      ],
      &quot;taskSpec&quot;: { # Spec of a task # Required. Tasks in the group share the same task spec.
        &quot;computeResource&quot;: { # Compute resource requirements. ComputeResource defines the amount of resources required for each task. Make sure your tasks have enough resources to successfully run. If you also define the types of resources for a job to use with the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure both fields are compatible with each other. # ComputeResource requirements.
          &quot;bootDiskMib&quot;: &quot;A String&quot;, # Extra boot disk size in MiB for each task.
          &quot;cpuMilli&quot;: &quot;A String&quot;, # The milliCPU count. `cpuMilli` defines the amount of CPU resources per task in milliCPU units. For example, `1000` corresponds to 1 vCPU per task. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the CPU resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 2 vCPUs each, you are recommended to set `cpuMilli` no more than `2000`, or you are recommended to run two tasks on the same VM if you set `cpuMilli` to `1000` or less.
          &quot;memoryMib&quot;: &quot;A String&quot;, # Memory in MiB. `memoryMib` defines the amount of memory per task in MiB units. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the memory resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 8 GiB each, you are recommended to set `memoryMib` to no more than `8192`, or you are recommended to run two tasks on the same VM if you set `memoryMib` to `4096` or less.
        },
        &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables to set before running the Task.
          &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
            &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
            &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
          },
          &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
          &quot;variables&quot;: { # A map of environment variable names to values.
            &quot;a_key&quot;: &quot;A String&quot;,
          },
        },
        &quot;environments&quot;: { # Deprecated: please use environment(non-plural) instead.
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;lifecyclePolicies&quot;: [ # Lifecycle management schema when any task in a task group is failed. Currently we only support one lifecycle policy. When the lifecycle policy condition is met, the action in the policy will execute. If task execution result does not meet with the defined lifecycle policy, we consider it as the default policy. Default policy means if the exit code is 0, exit task. If task ends with non-zero exit code, retry the task with max_retry_count.
          { # LifecyclePolicy describes how to deal with task failures based on different conditions.
            &quot;action&quot;: &quot;A String&quot;, # Action to execute when ActionCondition is true. When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found.
            &quot;actionCondition&quot;: { # Conditions for actions to deal with task failures. # Conditions that decide why a task failure is dealt with a specific action.
              &quot;exitCodes&quot;: [ # Exit codes of a task execution. If there are more than 1 exit codes, when task executes with any of the exit code in the list, the condition is met and the action will be executed.
                42,
              ],
            },
          },
        ],
        &quot;maxRetryCount&quot;: 42, # Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10].
        &quot;maxRunDuration&quot;: &quot;A String&quot;, # Maximum duration the task should run before being automatically retried (if enabled) or automatically failed. Format the value of this field as a time limit in seconds followed by `s`—for example, `3600s` for 1 hour. The field accepts any value between 0 and the maximum listed for the `Duration` field type at https://protobuf.dev/reference/protobuf/google.protobuf/#duration; however, the actual maximum run time for a job will be limited to the maximum run time for a job listed at https://cloud.google.com/batch/quotas#max-job-duration.
        &quot;runnables&quot;: [ # Required. The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run. Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn&#x27;t finish, but you enabled its `background` subfield. + The runnable exited with a non-zero status, but you enabled its `ignore_exit_status` subfield.
          { # Runnable describes instructions for executing a specific script or container as part of a Task.
            &quot;alwaysRun&quot;: True or False, # By default, after a Runnable fails, no further Runnable are executed. This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task&#x27;s overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.
            &quot;background&quot;: True or False, # Normally, a runnable that doesn&#x27;t exit causes its task to fail. However, you can set this field to `true` to configure a background runnable. Background runnables are allowed continue running in the background while the task executes subsequent runnables. For example, background runnables are useful for providing services to other runnables or providing debugging-support tools like SSH servers. Specifically, background runnables are killed automatically (if they have not already exited) a short time after all foreground runnables have completed. Even though this is likely to result in a non-zero exit status for the background runnable, these automatic kills are not treated as task failures.
            &quot;barrier&quot;: { # A barrier runnable automatically blocks the execution of subsequent runnables until all the tasks in the task group reach the barrier. # Barrier runnable.
              &quot;name&quot;: &quot;A String&quot;, # Barriers are identified by their index in runnable list. Names are not required, but if present should be an identifier.
            },
            &quot;container&quot;: { # Container runnable. # Container runnable.
              &quot;blockExternalNetwork&quot;: True or False, # If set to true, external network access to and from container will be blocked, containers that are with block_external_network as true can still communicate with each other, network cannot be specified in the `container.options` field.
              &quot;commands&quot;: [ # Required for some container images. Overrides the `CMD` specified in the container. If there is an `ENTRYPOINT` (either in the container image or with the `entrypoint` field below) then these commands are appended as arguments to the `ENTRYPOINT`.
                &quot;A String&quot;,
              ],
              &quot;enableImageStreaming&quot;: True or False, # Optional. If set to true, this container runnable uses Image streaming. Use Image streaming to allow the runnable to initialize without waiting for the entire container image to download, which can significantly reduce startup time for large container images. When `enableImageStreaming` is set to true, the container runtime is [containerd](https://containerd.io/) instead of Docker. Additionally, this container runnable only supports the following `container` subfields: `imageUri`, `commands[]`, `entrypoint`, and `volumes[]`; any other `container` subfields are ignored. For more information about the requirements and limitations for using Image streaming with Batch, see the [`image-streaming` sample on GitHub](https://github.com/GoogleCloudPlatform/batch-samples/tree/main/api-samples/image-streaming).
              &quot;entrypoint&quot;: &quot;A String&quot;, # Required for some container images. Overrides the `ENTRYPOINT` specified in the container.
              &quot;imageUri&quot;: &quot;A String&quot;, # Required. The URI to pull the container image from.
              &quot;options&quot;: &quot;A String&quot;, # Required for some container images. Arbitrary additional options to include in the `docker run` command when running this container—for example, `--network host`. For the `--volume` option, use the `volumes` field for the container.
              &quot;password&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The password to login to the Docker registry that contains the image. For security, it is strongly recommended to specify an encrypted password by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. Warning: If you specify the password using plain text, you risk the password being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the password instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;username&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The username to login to the Docker registry that contains the image. You can either specify the username directly by using plain text or specify an encrypted username by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. However, using a secret is recommended for enhanced security. Caution: If you specify the username using plain text, you risk the username being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the username instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
              &quot;volumes&quot;: [ # Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match `--volume` option for the `docker run` command—for example, `/foo:/bar` or `/foo:/bar:ro`. If the `TaskSpec.Volumes` field is specified but this field is not, Batch will mount each volume from the host machine to the container with the same mount path by default. In this case, the default mount option for containers will be read-only (`ro`) for existing persistent disks and read-write (`rw`) for other volume types, regardless of the original mount options specified in `TaskSpec.Volumes`. If you need different mount settings, you can explicitly configure them in this field.
                &quot;A String&quot;,
              ],
            },
            &quot;displayName&quot;: &quot;A String&quot;, # Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for users to understand the logs. If not provided the index of the runnable will be used for outputs.
            &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup).
              &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
              },
              &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
              &quot;variables&quot;: { # A map of environment variable names to values.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
            },
            &quot;ignoreExitStatus&quot;: True or False, # Normally, a runnable that returns a non-zero exit status fails and causes the task to fail. However, you can set this field to `true` to allow the task to continue executing its other runnables even if this runnable fails.
            &quot;labels&quot;: { # Labels for this Runnable.
              &quot;a_key&quot;: &quot;A String&quot;,
            },
            &quot;script&quot;: { # Script runnable. # Script runnable.
              &quot;path&quot;: &quot;A String&quot;, # The path to a script file that is accessible from the host VM(s). Unless the script file supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) as the first line of the file. For example, to execute the script using bash, include `#!/bin/bash` as the first line of the file. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3` as the first line of the file.
              &quot;text&quot;: &quot;A String&quot;, # The text for a script. Unless the script text supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) at the beginning of the text. For example, to execute the script using bash, include `#!/bin/bash\n` at the beginning of the text. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3\n` at the beginning of the text.
            },
            &quot;timeout&quot;: &quot;A String&quot;, # Timeout for this Runnable.
          },
        ],
        &quot;volumes&quot;: [ # Volumes to mount before running Tasks using this TaskSpec.
          { # Volume describes a volume and parameters for it to be mounted to a VM.
            &quot;deviceName&quot;: &quot;A String&quot;, # Device name of an attached disk volume, which should align with a device_name specified by job.allocation_policy.instances[0].policy.disks[i].device_name or defined by the given instance template in job.allocation_policy.instances[0].instance_template.
            &quot;gcs&quot;: { # Represents a Google Cloud Storage volume. # A Google Cloud Storage (GCS) volume.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote path, either a bucket name or a subdirectory of a bucket, e.g.: bucket_name, bucket_name/subdirectory/
            },
            &quot;mountOptions&quot;: [ # Mount options vary based on the type of storage volume: * For a Cloud Storage bucket, all the mount options provided by the [`gcsfuse` tool](https://cloud.google.com/storage/docs/gcsfuse-cli) are supported. * For an existing persistent disk, all mount options provided by the [`mount` command](https://man7.org/linux/man-pages/man8/mount.8.html) except writing are supported. This is due to restrictions of [multi-writer mode](https://cloud.google.com/compute/docs/disks/sharing-disks-between-vms). * For any other disk or a Network File System (NFS), all the mount options provided by the `mount` command are supported.
              &quot;A String&quot;,
            ],
            &quot;mountPath&quot;: &quot;A String&quot;, # The mount path for the volume, e.g. /mnt/disks/share.
            &quot;nfs&quot;: { # Represents an NFS volume. # A Network File System (NFS) volume. For example, a Filestore file share.
              &quot;remotePath&quot;: &quot;A String&quot;, # Remote source path exported from the NFS, e.g., &quot;/share&quot;.
              &quot;server&quot;: &quot;A String&quot;, # The IP address of the NFS.
            },
          },
        ],
      },
    },
  ],
  &quot;uid&quot;: &quot;A String&quot;, # Output only. A system generated unique ID for the Job.
  &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last time the Job was updated.
}</pre>
</div>

<div class="method">
    <code class="details" id="list">list(parent, filter=None, orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
  <pre>List all Jobs for a project within a region.

Args:
  parent: string, Parent path. (required)
  filter: string, List filter.
  orderBy: string, Optional. Sort results. Supported are &quot;name&quot;, &quot;name desc&quot;, &quot;create_time&quot;, and &quot;create_time desc&quot;.
  pageSize: integer, Page size.
  pageToken: string, Page token.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # ListJob Response.
  &quot;jobs&quot;: [ # Jobs.
    { # The Cloud Batch Job description.
      &quot;allocationPolicy&quot;: { # A Job&#x27;s resource allocation policy describes when, where, and how compute resources should be allocated for the Job. # Compute resource allocation for all TaskGroups in the Job.
        &quot;instances&quot;: [ # Describe instances that can be created by this AllocationPolicy. Only instances[0] is supported now.
          { # InstancePolicyOrTemplate lets you define the type of resources to use for this job either with an InstancePolicy or an instance template. If undefined, Batch picks the type of VM to use and doesn&#x27;t include optional VM resources such as GPUs and extra disks.
            &quot;blockProjectSshKeys&quot;: True or False, # Optional. Set this field to `true` if you want Batch to block project-level SSH keys from accessing this job&#x27;s VMs. Alternatively, you can configure the job to specify a VM instance template that blocks project-level SSH keys. In either case, Batch blocks project-level SSH keys while creating the VMs for this job. Batch allows project-level SSH keys for a job&#x27;s VMs only if all the following are true: + This field is undefined or set to `false`. + The job&#x27;s VM instance template (if any) doesn&#x27;t block project-level SSH keys. Notably, you can override this behavior by manually updating a VM to block or allow project-level SSH keys. For more information about blocking project-level SSH keys, see the Compute Engine documentation: https://cloud.google.com/compute/docs/connect/restrict-ssh-keys#block-keys
            &quot;installGpuDrivers&quot;: True or False, # Set this field true if you want Batch to help fetch drivers from a third party location and install them for GPUs specified in `policy.accelerators` or `instance_template` on your behalf. Default is false. For Container-Optimized Image cases, Batch will install the accelerator driver following milestones of https://cloud.google.com/container-optimized-os/docs/release-notes. For non Container-Optimized Image cases, following https://github.com/GoogleCloudPlatform/compute-gpu-installation/blob/main/linux/install_gpu_driver.py.
            &quot;installOpsAgent&quot;: True or False, # Optional. Set this field true if you want Batch to install Ops Agent on your behalf. Default is false.
            &quot;instanceTemplate&quot;: &quot;A String&quot;, # Name of an instance template used to create VMs. Named the field as &#x27;instance_template&#x27; instead of &#x27;template&#x27; to avoid C++ keyword conflict. Batch only supports global instance templates from the same project as the job. You can specify the global instance template as a full or partial URL.
            &quot;policy&quot;: { # InstancePolicy describes an instance type and resources attached to each VM created by this InstancePolicy. # InstancePolicy.
              &quot;accelerators&quot;: [ # The accelerators attached to each VM instance.
                { # Accelerator describes Compute Engine accelerators to be attached to the VM.
                  &quot;count&quot;: &quot;A String&quot;, # The number of accelerators of this type.
                  &quot;driverVersion&quot;: &quot;A String&quot;, # Optional. The NVIDIA GPU driver version that should be installed for this type. You can define the specific driver version such as &quot;470.103.01&quot;, following the driver version requirements in https://cloud.google.com/compute/docs/gpus/install-drivers-gpu#minimum-driver. Batch will install the specific accelerator driver if qualified.
                  &quot;installGpuDrivers&quot;: True or False, # Deprecated: please use instances[0].install_gpu_drivers instead.
                  &quot;type&quot;: &quot;A String&quot;, # The accelerator type. For example, &quot;nvidia-tesla-t4&quot;. See `gcloud compute accelerator-types list`.
                },
              ],
              &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # Boot disk to be created and attached to each VM by this InstancePolicy. Boot disk will be deleted when the VM is deleted. Batch API now only supports booting from image.
                &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
              },
              &quot;disks&quot;: [ # Non-boot disks to be attached for each VM created by this InstancePolicy. New disks will be deleted when the VM is deleted. A non-boot disk is a disk that can be of a device with a file system or a raw storage drive that is not ready for data storage and accessing.
                { # A new or an existing persistent disk (PD) or a local ssd attached to a VM instance.
                  &quot;deviceName&quot;: &quot;A String&quot;, # Device name that the guest operating system will see. It is used by Runnable.volumes field to mount disks. So please specify the device_name if you want Batch to help mount the disk, and it should match the device_name field in volumes.
                  &quot;existingDisk&quot;: &quot;A String&quot;, # Name of an existing PD.
                  &quot;newDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
                    &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                    &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                    &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                    &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                    &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
                  },
                },
              ],
              &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
              &quot;minCpuPlatform&quot;: &quot;A String&quot;, # The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/specify-min-cpu-platform.
              &quot;provisioningModel&quot;: &quot;A String&quot;, # The provisioning model.
              &quot;reservation&quot;: &quot;A String&quot;, # Optional. If not specified (default), VMs will consume any applicable reservation. If &quot;NO_RESERVATION&quot; is specified, VMs will not consume any reservation. Otherwise, if specified, VMs will consume only the specified reservation.
            },
          },
        ],
        &quot;labels&quot;: { # Custom labels to apply to the job and all the Compute Engine resources that both are created by this allocation policy and support labels. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
          &quot;a_key&quot;: &quot;A String&quot;,
        },
        &quot;location&quot;: { # Location where compute resources should be allocated for the Job.
          &quot;allowedLocations&quot;: [ # A list of allowed location names represented by internal URLs. Each location can be a region or a zone. Only one region or multiple zones in one region is supported now. For example, [&quot;regions/us-central1&quot;] allow VMs in any zones in region us-central1. [&quot;zones/us-central1-a&quot;, &quot;zones/us-central1-c&quot;] only allow VMs in zones us-central1-a and us-central1-c. Mixing locations from different regions would cause errors. For example, [&quot;regions/us-central1&quot;, &quot;zones/us-central1-a&quot;, &quot;zones/us-central1-b&quot;, &quot;zones/us-west1-a&quot;] contains locations from two distinct regions: us-central1 and us-west1. This combination will trigger an error.
            &quot;A String&quot;,
          ],
        },
        &quot;network&quot;: { # NetworkPolicy describes VM instance network configurations. # The network policy. If you define an instance template in the `InstancePolicyOrTemplate` field, Batch will use the network settings in the instance template instead of this field.
          &quot;networkInterfaces&quot;: [ # Network configurations.
            { # A network interface.
              &quot;network&quot;: &quot;A String&quot;, # The URL of an existing network resource. You can specify the network as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/global/networks/{network} * projects/{project}/global/networks/{network} * global/networks/{network}
              &quot;noExternalIpAddress&quot;: True or False, # Default is false (with an external IP address). Required if no external public IP address is attached to the VM. If no external public IP address, additional configuration is required to allow the VM to access Google Services. See https://cloud.google.com/vpc/docs/configure-private-google-access and https://cloud.google.com/nat/docs/gce-example#create-nat for more information.
              &quot;subnetwork&quot;: &quot;A String&quot;, # The URL of an existing subnetwork resource in the network. You can specify the subnetwork as a full or partial URL. For example, the following are all valid URLs: * https://www.googleapis.com/compute/v1/projects/{project}/regions/{region}/subnetworks/{subnetwork} * projects/{project}/regions/{region}/subnetworks/{subnetwork} * regions/{region}/subnetworks/{subnetwork}
            },
          ],
        },
        &quot;placement&quot;: { # PlacementPolicy describes a group placement policy for the VMs controlled by this AllocationPolicy. # The placement policy.
          &quot;collocation&quot;: &quot;A String&quot;, # UNSPECIFIED vs. COLLOCATED (default UNSPECIFIED). Use COLLOCATED when you want VMs to be located close to each other for low network latency between the VMs. No placement policy will be generated when collocation is UNSPECIFIED.
          &quot;maxDistance&quot;: &quot;A String&quot;, # When specified, causes the job to fail if more than max_distance logical switches are required between VMs. Batch uses the most compact possible placement of VMs even when max_distance is not specified. An explicit max_distance makes that level of compactness a strict requirement. Not yet implemented
        },
        &quot;serviceAccount&quot;: { # Carries information about a Google Cloud service account. # Defines the service account for Batch-created VMs. If omitted, the [default Compute Engine service account](https://cloud.google.com/compute/docs/access/service-accounts#default_service_account) is used. Must match the service account specified in any used instance template configured in the Batch job. Includes the following fields: * email: The service account&#x27;s email address. If not set, the default Compute Engine service account is used. * scopes: Additional OAuth scopes to grant the service account, beyond the default cloud-platform scope. (list of strings)
          &quot;email&quot;: &quot;A String&quot;, # Email address of the service account.
          &quot;scopes&quot;: [ # List of scopes to be enabled for this service account.
            &quot;A String&quot;,
          ],
        },
        &quot;tags&quot;: [ # Optional. Tags applied to the VM instances. The tags identify valid sources or targets for network firewalls. Each tag must be 1-63 characters long, and comply with [RFC1035](https://www.ietf.org/rfc/rfc1035.txt).
          &quot;A String&quot;,
        ],
      },
      &quot;createTime&quot;: &quot;A String&quot;, # Output only. When the Job was created.
      &quot;labels&quot;: { # Custom labels to apply to the job and any Cloud Logging [LogEntry](https://cloud.google.com/logging/docs/reference/v2/rest/v2/LogEntry) that it generates. Use labels to group and describe the resources they are applied to. Batch automatically applies predefined labels and supports multiple `labels` fields for each job, which each let you apply custom labels to various resources. Label names that start with &quot;goog-&quot; or &quot;google-&quot; are reserved for predefined labels. For more information about labels with Batch, see [Organize resources using labels](https://cloud.google.com/batch/docs/organize-resources-using-labels).
        &quot;a_key&quot;: &quot;A String&quot;,
      },
      &quot;logsPolicy&quot;: { # LogsPolicy describes if and how a job&#x27;s logs are preserved. Logs include information that is automatically written by the Batch service agent and any information that you configured the job&#x27;s runnables to write to the `stdout` or `stderr` streams. # Log preservation policy for the Job.
        &quot;cloudLoggingOption&quot;: { # `CloudLoggingOption` contains additional settings for Cloud Logging logs generated by Batch job. # Optional. When `destination` is set to `CLOUD_LOGGING`, you can optionally set this field to configure additional settings for Cloud Logging.
          &quot;useGenericTaskMonitoredResource&quot;: True or False, # Optional. Set this field to `true` to change the [monitored resource type](https://cloud.google.com/monitoring/api/resources) for Cloud Logging logs generated by this Batch job from the [`batch.googleapis.com/Job`](https://cloud.google.com/monitoring/api/resources#tag_batch.googleapis.com/Job) type to the formerly used [`generic_task`](https://cloud.google.com/monitoring/api/resources#tag_generic_task) type.
        },
        &quot;destination&quot;: &quot;A String&quot;, # If and where logs should be saved.
        &quot;logsPath&quot;: &quot;A String&quot;, # When `destination` is set to `PATH`, you must set this field to the path where you want logs to be saved. This path can point to a local directory on the VM or (if congifured) a directory under the mount path of any Cloud Storage bucket, network file system (NFS), or writable persistent disk that is mounted to the job. For example, if the job has a bucket with `mountPath` set to `/mnt/disks/my-bucket`, you can write logs to the root directory of the `remotePath` of that bucket by setting this field to `/mnt/disks/my-bucket/`.
      },
      &quot;name&quot;: &quot;A String&quot;, # Output only. Job name. For example: &quot;projects/123456/locations/us-central1/jobs/job01&quot;.
      &quot;notifications&quot;: [ # Notification configurations.
        { # Notification configurations.
          &quot;message&quot;: { # Message details. Describe the conditions under which messages will be sent. If no attribute is defined, no message will be sent by default. One message should specify either the job or the task level attributes, but not both. For example, job level: JOB_STATE_CHANGED and/or a specified new_job_state; task level: TASK_STATE_CHANGED and/or a specified new_task_state. # The attribute requirements of messages to be sent to this Pub/Sub topic. Without this field, no message will be sent.
            &quot;newJobState&quot;: &quot;A String&quot;, # The new job state.
            &quot;newTaskState&quot;: &quot;A String&quot;, # The new task state.
            &quot;type&quot;: &quot;A String&quot;, # The message type.
          },
          &quot;pubsubTopic&quot;: &quot;A String&quot;, # The Pub/Sub topic where notifications for the job, like state changes, will be published. If undefined, no Pub/Sub notifications are sent for this job. Specify the topic using the following format: `projects/{project}/topics/{topic}`. Notably, if you want to specify a Pub/Sub topic that is in a different project than the job, your administrator must grant your project&#x27;s Batch service agent permission to publish to that topic. For more information about configuring Pub/Sub notifications for a job, see https://cloud.google.com/batch/docs/enable-notifications.
        },
      ],
      &quot;priority&quot;: &quot;A String&quot;, # Priority of the Job. The valid value range is [0, 100). Default value is 0. Higher value indicates higher priority. A job with higher priority value is more likely to run earlier if all other requirements are satisfied.
      &quot;status&quot;: { # Job status. # Output only. Job status. It is read only for users.
        &quot;runDuration&quot;: &quot;A String&quot;, # The duration of time that the Job spent in status RUNNING.
        &quot;state&quot;: &quot;A String&quot;, # Job state
        &quot;statusEvents&quot;: [ # Job status events
          { # Status event.
            &quot;description&quot;: &quot;A String&quot;, # Description of the event.
            &quot;eventTime&quot;: &quot;A String&quot;, # The time this event occurred.
            &quot;taskExecution&quot;: { # This Task Execution field includes detail information for task execution procedures, based on StatusEvent types. # Task Execution. This field is only defined for task-level status events where the task fails.
              &quot;exitCode&quot;: 42, # The exit code of a finished task. If the task succeeded, the exit code will be 0. If the task failed but not due to the following reasons, the exit code will be 50000. Otherwise, it can be from different sources: * Batch known failures: https://cloud.google.com/batch/docs/troubleshooting#reserved-exit-codes. * Batch runnable execution failures; you can rely on Batch logs to further diagnose: https://cloud.google.com/batch/docs/analyze-job-using-logs. If there are multiple runnables failures, Batch only exposes the first error.
            },
            &quot;taskState&quot;: &quot;A String&quot;, # Task State. This field is only defined for task-level status events.
            &quot;type&quot;: &quot;A String&quot;, # Type of the event.
          },
        ],
        &quot;taskGroups&quot;: { # Aggregated task status for each TaskGroup in the Job. The map key is TaskGroup ID.
          &quot;a_key&quot;: { # Aggregated task status for a TaskGroup.
            &quot;counts&quot;: { # Count of task in each state in the TaskGroup. The map key is task state name.
              &quot;a_key&quot;: &quot;A String&quot;,
            },
            &quot;instances&quot;: [ # Status of instances allocated for the TaskGroup.
              { # VM instance status.
                &quot;bootDisk&quot;: { # A new persistent disk or a local ssd. A VM can only have one local SSD setting but multiple local SSD partitions. See https://cloud.google.com/compute/docs/disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds. # The VM boot disk.
                  &quot;diskInterface&quot;: &quot;A String&quot;, # Local SSDs are available through both &quot;SCSI&quot; and &quot;NVMe&quot; interfaces. If not indicated, &quot;NVMe&quot; will be the default one for local ssds. This field is ignored for persistent disks as the interface is chosen automatically. See https://cloud.google.com/compute/docs/disks/persistent-disks#choose_an_interface.
                  &quot;image&quot;: &quot;A String&quot;, # URL for a VM image to use as the data source for this disk. For example, the following are all valid URLs: * Specify the image by its family name: projects/{project}/global/images/family/{image_family} * Specify the image version: projects/{project}/global/images/{image_version} You can also use Batch customized image in short names. The following image values are supported for a boot disk: * `batch-debian`: use Batch Debian images. * `batch-cos`: use Batch Container-Optimized images. * `batch-hpc-rocky`: use Batch HPC Rocky Linux images.
                  &quot;sizeGb&quot;: &quot;A String&quot;, # Disk size in GB. **Non-Boot Disk**: If the `type` specifies a persistent disk, this field is ignored if `data_source` is set as `image` or `snapshot`. If the `type` specifies a local SSD, this field should be a multiple of 375 GB, otherwise, the final size will be the next greater multiple of 375 GB. **Boot Disk**: Batch will calculate the boot disk size based on source image and task requirements if you do not speicify the size. If both this field and the `boot_disk_mib` field in task spec&#x27;s `compute_resource` are defined, Batch will only honor this field. Also, this field should be no smaller than the source disk&#x27;s size when the `data_source` is set as `snapshot` or `image`. For example, if you set an image as the `data_source` field and the image&#x27;s default disk size 30 GB, you can only use this field to make the disk larger or equal to 30 GB.
                  &quot;snapshot&quot;: &quot;A String&quot;, # Name of a snapshot used as the data source. Snapshot is not supported as boot disk now.
                  &quot;type&quot;: &quot;A String&quot;, # Disk type as shown in `gcloud compute disk-types list`. For example, local SSD uses type &quot;local-ssd&quot;. Persistent disks and boot disks use &quot;pd-balanced&quot;, &quot;pd-extreme&quot;, &quot;pd-ssd&quot; or &quot;pd-standard&quot;. If not specified, &quot;pd-standard&quot; will be used as the default type for non-boot disks, &quot;pd-balanced&quot; will be used as the default type for boot disks.
                },
                &quot;machineType&quot;: &quot;A String&quot;, # The Compute Engine machine type.
                &quot;provisioningModel&quot;: &quot;A String&quot;, # The VM instance provisioning model.
                &quot;taskPack&quot;: &quot;A String&quot;, # The max number of tasks can be assigned to this instance type.
              },
            ],
          },
        },
      },
      &quot;taskGroups&quot;: [ # Required. TaskGroups in the Job. Only one TaskGroup is supported now.
        { # A TaskGroup defines one or more Tasks that all share the same TaskSpec.
          &quot;name&quot;: &quot;A String&quot;, # Output only. TaskGroup name. The system generates this field based on parent Job name. For example: &quot;projects/123456/locations/us-west1/jobs/job01/taskGroups/group01&quot;.
          &quot;parallelism&quot;: &quot;A String&quot;, # Max number of tasks that can run in parallel. Default to min(task_count, parallel tasks per job limit). See: [Job Limits](https://cloud.google.com/batch/quotas#job_limits). Field parallelism must be 1 if the scheduling_policy is IN_ORDER.
          &quot;permissiveSsh&quot;: True or False, # When true, Batch will configure SSH to allow passwordless login between VMs running the Batch tasks in the same TaskGroup.
          &quot;requireHostsFile&quot;: True or False, # When true, Batch will populate a file with a list of all VMs assigned to the TaskGroup and set the BATCH_HOSTS_FILE environment variable to the path of that file. Defaults to false. The host file supports up to 1000 VMs.
          &quot;runAsNonRoot&quot;: True or False, # Optional. If not set or set to false, Batch uses the root user to execute runnables. If set to true, Batch runs the runnables using a non-root user. Currently, the non-root user Batch used is generated by OS Login. For more information, see [About OS Login](https://cloud.google.com/compute/docs/oslogin).
          &quot;schedulingPolicy&quot;: &quot;A String&quot;, # Scheduling policy for Tasks in the TaskGroup. The default value is AS_SOON_AS_POSSIBLE.
          &quot;taskCount&quot;: &quot;A String&quot;, # Number of Tasks in the TaskGroup. Default is 1.
          &quot;taskCountPerNode&quot;: &quot;A String&quot;, # Max number of tasks that can be run on a VM at the same time. If not specified, the system will decide a value based on available compute resources on a VM and task requirements.
          &quot;taskEnvironments&quot;: [ # An array of environment variable mappings, which are passed to Tasks with matching indices. If task_environments is used then task_count should not be specified in the request (and will be ignored). Task count will be the length of task_environments. Tasks get a BATCH_TASK_INDEX and BATCH_TASK_COUNT environment variable, in addition to any environment variables set in task_environments, specifying the number of Tasks in the Task&#x27;s parent TaskGroup, and the specific Task&#x27;s index in the TaskGroup (0 through BATCH_TASK_COUNT - 1).
            { # An Environment describes a collection of environment variables to set when executing Tasks.
              &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
              },
              &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
              &quot;variables&quot;: { # A map of environment variable names to values.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
            },
          ],
          &quot;taskSpec&quot;: { # Spec of a task # Required. Tasks in the group share the same task spec.
            &quot;computeResource&quot;: { # Compute resource requirements. ComputeResource defines the amount of resources required for each task. Make sure your tasks have enough resources to successfully run. If you also define the types of resources for a job to use with the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure both fields are compatible with each other. # ComputeResource requirements.
              &quot;bootDiskMib&quot;: &quot;A String&quot;, # Extra boot disk size in MiB for each task.
              &quot;cpuMilli&quot;: &quot;A String&quot;, # The milliCPU count. `cpuMilli` defines the amount of CPU resources per task in milliCPU units. For example, `1000` corresponds to 1 vCPU per task. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the CPU resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 2 vCPUs each, you are recommended to set `cpuMilli` no more than `2000`, or you are recommended to run two tasks on the same VM if you set `cpuMilli` to `1000` or less.
              &quot;memoryMib&quot;: &quot;A String&quot;, # Memory in MiB. `memoryMib` defines the amount of memory per task in MiB units. If undefined, the default value is `2000`. If you also define the VM&#x27;s machine type using the `machineType` in [InstancePolicy](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicy) field or inside the `instanceTemplate` in the [InstancePolicyOrTemplate](https://cloud.google.com/batch/docs/reference/rest/v1/projects.locations.jobs#instancepolicyortemplate) field, make sure the memory resources for both fields are compatible with each other and with how many tasks you want to allow to run on the same VM at the same time. For example, if you specify the `n2-standard-2` machine type, which has 8 GiB each, you are recommended to set `memoryMib` to no more than `8192`, or you are recommended to run two tasks on the same VM if you set `memoryMib` to `4096` or less.
            },
            &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables to set before running the Task.
              &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
              },
              &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
              &quot;variables&quot;: { # A map of environment variable names to values.
                &quot;a_key&quot;: &quot;A String&quot;,
              },
            },
            &quot;environments&quot;: { # Deprecated: please use environment(non-plural) instead.
              &quot;a_key&quot;: &quot;A String&quot;,
            },
            &quot;lifecyclePolicies&quot;: [ # Lifecycle management schema when any task in a task group is failed. Currently we only support one lifecycle policy. When the lifecycle policy condition is met, the action in the policy will execute. If task execution result does not meet with the defined lifecycle policy, we consider it as the default policy. Default policy means if the exit code is 0, exit task. If task ends with non-zero exit code, retry the task with max_retry_count.
              { # LifecyclePolicy describes how to deal with task failures based on different conditions.
                &quot;action&quot;: &quot;A String&quot;, # Action to execute when ActionCondition is true. When RETRY_TASK is specified, we will retry failed tasks if we notice any exit code match and fail tasks if no match is found. Likewise, when FAIL_TASK is specified, we will fail tasks if we notice any exit code match and retry tasks if no match is found.
                &quot;actionCondition&quot;: { # Conditions for actions to deal with task failures. # Conditions that decide why a task failure is dealt with a specific action.
                  &quot;exitCodes&quot;: [ # Exit codes of a task execution. If there are more than 1 exit codes, when task executes with any of the exit code in the list, the condition is met and the action will be executed.
                    42,
                  ],
                },
              },
            ],
            &quot;maxRetryCount&quot;: 42, # Maximum number of retries on failures. The default, 0, which means never retry. The valid value range is [0, 10].
            &quot;maxRunDuration&quot;: &quot;A String&quot;, # Maximum duration the task should run before being automatically retried (if enabled) or automatically failed. Format the value of this field as a time limit in seconds followed by `s`—for example, `3600s` for 1 hour. The field accepts any value between 0 and the maximum listed for the `Duration` field type at https://protobuf.dev/reference/protobuf/google.protobuf/#duration; however, the actual maximum run time for a job will be limited to the maximum run time for a job listed at https://cloud.google.com/batch/quotas#max-job-duration.
            &quot;runnables&quot;: [ # Required. The sequence of one or more runnables (executable scripts, executable containers, and/or barriers) for each task in this task group to run. Each task runs this list of runnables in order. For a task to succeed, all of its script and container runnables each must meet at least one of the following conditions: + The runnable exited with a zero status. + The runnable didn&#x27;t finish, but you enabled its `background` subfield. + The runnable exited with a non-zero status, but you enabled its `ignore_exit_status` subfield.
              { # Runnable describes instructions for executing a specific script or container as part of a Task.
                &quot;alwaysRun&quot;: True or False, # By default, after a Runnable fails, no further Runnable are executed. This flag indicates that this Runnable must be run even if the Task has already failed. This is useful for Runnables that copy output files off of the VM or for debugging. The always_run flag does not override the Task&#x27;s overall max_run_duration. If the max_run_duration has expired then no further Runnables will execute, not even always_run Runnables.
                &quot;background&quot;: True or False, # Normally, a runnable that doesn&#x27;t exit causes its task to fail. However, you can set this field to `true` to configure a background runnable. Background runnables are allowed continue running in the background while the task executes subsequent runnables. For example, background runnables are useful for providing services to other runnables or providing debugging-support tools like SSH servers. Specifically, background runnables are killed automatically (if they have not already exited) a short time after all foreground runnables have completed. Even though this is likely to result in a non-zero exit status for the background runnable, these automatic kills are not treated as task failures.
                &quot;barrier&quot;: { # A barrier runnable automatically blocks the execution of subsequent runnables until all the tasks in the task group reach the barrier. # Barrier runnable.
                  &quot;name&quot;: &quot;A String&quot;, # Barriers are identified by their index in runnable list. Names are not required, but if present should be an identifier.
                },
                &quot;container&quot;: { # Container runnable. # Container runnable.
                  &quot;blockExternalNetwork&quot;: True or False, # If set to true, external network access to and from container will be blocked, containers that are with block_external_network as true can still communicate with each other, network cannot be specified in the `container.options` field.
                  &quot;commands&quot;: [ # Required for some container images. Overrides the `CMD` specified in the container. If there is an `ENTRYPOINT` (either in the container image or with the `entrypoint` field below) then these commands are appended as arguments to the `ENTRYPOINT`.
                    &quot;A String&quot;,
                  ],
                  &quot;enableImageStreaming&quot;: True or False, # Optional. If set to true, this container runnable uses Image streaming. Use Image streaming to allow the runnable to initialize without waiting for the entire container image to download, which can significantly reduce startup time for large container images. When `enableImageStreaming` is set to true, the container runtime is [containerd](https://containerd.io/) instead of Docker. Additionally, this container runnable only supports the following `container` subfields: `imageUri`, `commands[]`, `entrypoint`, and `volumes[]`; any other `container` subfields are ignored. For more information about the requirements and limitations for using Image streaming with Batch, see the [`image-streaming` sample on GitHub](https://github.com/GoogleCloudPlatform/batch-samples/tree/main/api-samples/image-streaming).
                  &quot;entrypoint&quot;: &quot;A String&quot;, # Required for some container images. Overrides the `ENTRYPOINT` specified in the container.
                  &quot;imageUri&quot;: &quot;A String&quot;, # Required. The URI to pull the container image from.
                  &quot;options&quot;: &quot;A String&quot;, # Required for some container images. Arbitrary additional options to include in the `docker run` command when running this container—for example, `--network host`. For the `--volume` option, use the `volumes` field for the container.
                  &quot;password&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The password to login to the Docker registry that contains the image. For security, it is strongly recommended to specify an encrypted password by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. Warning: If you specify the password using plain text, you risk the password being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the password instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
                  &quot;username&quot;: &quot;A String&quot;, # Required if the container image is from a private Docker registry. The username to login to the Docker registry that contains the image. You can either specify the username directly by using plain text or specify an encrypted username by using a Secret Manager secret: `projects/*/secrets/*/versions/*`. However, using a secret is recommended for enhanced security. Caution: If you specify the username using plain text, you risk the username being exposed to any users who can view the job or its logs. To avoid this risk, specify a secret that contains the username instead. Learn more about [Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-secret-manager).
                  &quot;volumes&quot;: [ # Volumes to mount (bind mount) from the host machine files or directories into the container, formatted to match `--volume` option for the `docker run` command—for example, `/foo:/bar` or `/foo:/bar:ro`. If the `TaskSpec.Volumes` field is specified but this field is not, Batch will mount each volume from the host machine to the container with the same mount path by default. In this case, the default mount option for containers will be read-only (`ro`) for existing persistent disks and read-write (`rw`) for other volume types, regardless of the original mount options specified in `TaskSpec.Volumes`. If you need different mount settings, you can explicitly configure them in this field.
                    &quot;A String&quot;,
                  ],
                },
                &quot;displayName&quot;: &quot;A String&quot;, # Optional. DisplayName is an optional field that can be provided by the caller. If provided, it will be used in logs and other outputs to identify the script, making it easier for users to understand the logs. If not provided the index of the runnable will be used for outputs.
                &quot;environment&quot;: { # An Environment describes a collection of environment variables to set when executing Tasks. # Environment variables for this Runnable (overrides variables set for the whole Task or TaskGroup).
                  &quot;encryptedVariables&quot;: { # An encrypted JSON dictionary where the key/value pairs correspond to environment variable names and their values.
                    &quot;cipherText&quot;: &quot;A String&quot;, # The value of the cipherText response from the `encrypt` method.
                    &quot;keyName&quot;: &quot;A String&quot;, # The name of the KMS key that will be used to decrypt the cipher text.
                  },
                  &quot;secretVariables&quot;: { # A map of environment variable names to Secret Manager secret names. The VM will access the named secrets to set the value of each environment variable.
                    &quot;a_key&quot;: &quot;A String&quot;,
                  },
                  &quot;variables&quot;: { # A map of environment variable names to values.
                    &quot;a_key&quot;: &quot;A String&quot;,
                  },
                },
                &quot;ignoreExitStatus&quot;: True or False, # Normally, a runnable that returns a non-zero exit status fails and causes the task to fail. However, you can set this field to `true` to allow the task to continue executing its other runnables even if this runnable fails.
                &quot;labels&quot;: { # Labels for this Runnable.
                  &quot;a_key&quot;: &quot;A String&quot;,
                },
                &quot;script&quot;: { # Script runnable. # Script runnable.
                  &quot;path&quot;: &quot;A String&quot;, # The path to a script file that is accessible from the host VM(s). Unless the script file supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) as the first line of the file. For example, to execute the script using bash, include `#!/bin/bash` as the first line of the file. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3` as the first line of the file.
                  &quot;text&quot;: &quot;A String&quot;, # The text for a script. Unless the script text supports the default `#!/bin/sh` shell interpreter, you must specify an interpreter by including a [shebang line](https://en.wikipedia.org/wiki/Shebang_(Unix) at the beginning of the text. For example, to execute the script using bash, include `#!/bin/bash\n` at the beginning of the text. Alternatively, to execute the script using Python3, include `#!/usr/bin/env python3\n` at the beginning of the text.
                },
                &quot;timeout&quot;: &quot;A String&quot;, # Timeout for this Runnable.
              },
            ],
            &quot;volumes&quot;: [ # Volumes to mount before running Tasks using this TaskSpec.
              { # Volume describes a volume and parameters for it to be mounted to a VM.
                &quot;deviceName&quot;: &quot;A String&quot;, # Device name of an attached disk volume, which should align with a device_name specified by job.allocation_policy.instances[0].policy.disks[i].device_name or defined by the given instance template in job.allocation_policy.instances[0].instance_template.
                &quot;gcs&quot;: { # Represents a Google Cloud Storage volume. # A Google Cloud Storage (GCS) volume.
                  &quot;remotePath&quot;: &quot;A String&quot;, # Remote path, either a bucket name or a subdirectory of a bucket, e.g.: bucket_name, bucket_name/subdirectory/
                },
                &quot;mountOptions&quot;: [ # Mount options vary based on the type of storage volume: * For a Cloud Storage bucket, all the mount options provided by the [`gcsfuse` tool](https://cloud.google.com/storage/docs/gcsfuse-cli) are supported. * For an existing persistent disk, all mount options provided by the [`mount` command](https://man7.org/linux/man-pages/man8/mount.8.html) except writing are supported. This is due to restrictions of [multi-writer mode](https://cloud.google.com/compute/docs/disks/sharing-disks-between-vms). * For any other disk or a Network File System (NFS), all the mount options provided by the `mount` command are supported.
                  &quot;A String&quot;,
                ],
                &quot;mountPath&quot;: &quot;A String&quot;, # The mount path for the volume, e.g. /mnt/disks/share.
                &quot;nfs&quot;: { # Represents an NFS volume. # A Network File System (NFS) volume. For example, a Filestore file share.
                  &quot;remotePath&quot;: &quot;A String&quot;, # Remote source path exported from the NFS, e.g., &quot;/share&quot;.
                  &quot;server&quot;: &quot;A String&quot;, # The IP address of the NFS.
                },
              },
            ],
          },
        },
      ],
      &quot;uid&quot;: &quot;A String&quot;, # Output only. A system generated unique ID for the Job.
      &quot;updateTime&quot;: &quot;A String&quot;, # Output only. The last time the Job was updated.
    },
  ],
  &quot;nextPageToken&quot;: &quot;A String&quot;, # Next page token.
  &quot;unreachable&quot;: [ # Locations that could not be reached.
    &quot;A String&quot;,
  ],
}</pre>
</div>

<div class="method">
    <code class="details" id="list_next">list_next()</code>
  <pre>Retrieves the next page of results.

        Args:
          previous_request: The request for the previous page. (required)
          previous_response: The response from the request for the previous page. (required)

        Returns:
          A request object that you can call &#x27;execute()&#x27; on to request the next
          page. Returns None if there are no more items in the collection.
        </pre>
</div>

</body></html>