google-apis-batch_v1 0.7.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/lib/google/apis/batch_v1/classes.rb +28 -27
- data/lib/google/apis/batch_v1/gem_version.rb +2 -2
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d2b37949ddbd278ebe515ce2020a14e9285a8e05f0337427cfa35e66629d3199
|
|
4
|
+
data.tar.gz: da552015e911ca62fdc196496f9b049f485ef42dd14c7e6a04c4ad8b77fe06fa
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 50269c1f66ffd97564cd12036a65dcd7e388d0ad2ee087a1efc1ed918e2a2c6fe5130f0a24cbcc0811155c9baf8b4d06ea4d9f9f02c46351d5340b1527f9ddca
|
|
7
|
+
data.tar.gz: b4463158c6dd213e93ec8744cdd345e7039202cd3867a27ef8636d5d2d81d1f819bbcd543aded910d4793a67369a5dfbf6b8bdc822149471cdde07991fec7a03
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-batch_v1
|
|
2
2
|
|
|
3
|
+
### v0.9.0 (2023-03-12)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20230301
|
|
6
|
+
|
|
7
|
+
### v0.8.0 (2023-03-05)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20230226
|
|
10
|
+
|
|
3
11
|
### v0.7.0 (2023-02-19)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20230213
|
|
@@ -364,8 +364,8 @@ module Google
|
|
|
364
364
|
attr_accessor :existing_disk
|
|
365
365
|
|
|
366
366
|
# A new persistent disk or a local ssd. A VM can only have one local SSD setting
|
|
367
|
-
# but multiple local SSD partitions. https://cloud.google.com/compute/docs/
|
|
368
|
-
# pdspecs
|
|
367
|
+
# but multiple local SSD partitions. See https://cloud.google.com/compute/docs/
|
|
368
|
+
# disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
|
|
369
369
|
# Corresponds to the JSON property `newDisk`
|
|
370
370
|
# @return [Google::Apis::BatchV1::Disk]
|
|
371
371
|
attr_accessor :new_disk
|
|
@@ -450,8 +450,9 @@ module Google
|
|
|
450
450
|
class Container
|
|
451
451
|
include Google::Apis::Core::Hashable
|
|
452
452
|
|
|
453
|
-
# If set to true, external network access to and from container will be blocked
|
|
454
|
-
#
|
|
453
|
+
# If set to true, external network access to and from container will be blocked,
|
|
454
|
+
# containers that are with block_external_network as true can still communicate
|
|
455
|
+
# with each other, network cannot be specified in the `container.options` field.
|
|
455
456
|
# Corresponds to the JSON property `blockExternalNetwork`
|
|
456
457
|
# @return [Boolean]
|
|
457
458
|
attr_accessor :block_external_network
|
|
@@ -519,8 +520,8 @@ module Google
|
|
|
519
520
|
end
|
|
520
521
|
|
|
521
522
|
# A new persistent disk or a local ssd. A VM can only have one local SSD setting
|
|
522
|
-
# but multiple local SSD partitions. https://cloud.google.com/compute/docs/
|
|
523
|
-
# pdspecs
|
|
523
|
+
# but multiple local SSD partitions. See https://cloud.google.com/compute/docs/
|
|
524
|
+
# disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
|
|
524
525
|
class Disk
|
|
525
526
|
include Google::Apis::Core::Hashable
|
|
526
527
|
|
|
@@ -532,13 +533,12 @@ module Google
|
|
|
532
533
|
attr_accessor :disk_interface
|
|
533
534
|
|
|
534
535
|
# Name of a public or custom image used as the data source. For example, the
|
|
535
|
-
# following are all valid URLs:
|
|
536
|
-
#
|
|
537
|
-
#
|
|
538
|
-
#
|
|
539
|
-
#
|
|
540
|
-
#
|
|
541
|
-
# images.
|
|
536
|
+
# following are all valid URLs: * Specify the image by its family name: projects/
|
|
537
|
+
# `project`/global/images/family/`image_family` * Specify the image version:
|
|
538
|
+
# projects/`project`/global/images/`image_version` You can also use Batch
|
|
539
|
+
# customized image in short names. The following image values are supported for
|
|
540
|
+
# a boot disk: * "batch-debian": use Batch Debian images. * "batch-centos": use
|
|
541
|
+
# Batch CentOS images. * "batch-cos": use Batch Container-Optimized images.
|
|
542
542
|
# Corresponds to the JSON property `image`
|
|
543
543
|
# @return [String]
|
|
544
544
|
attr_accessor :image
|
|
@@ -554,7 +554,8 @@ module Google
|
|
|
554
554
|
# @return [Fixnum]
|
|
555
555
|
attr_accessor :size_gb
|
|
556
556
|
|
|
557
|
-
# Name of a snapshot used as the data source.
|
|
557
|
+
# Name of a snapshot used as the data source. Snapshot is not supported as boot
|
|
558
|
+
# disk now.
|
|
558
559
|
# Corresponds to the JSON property `snapshot`
|
|
559
560
|
# @return [String]
|
|
560
561
|
attr_accessor :snapshot
|
|
@@ -661,8 +662,8 @@ module Google
|
|
|
661
662
|
attr_accessor :accelerators
|
|
662
663
|
|
|
663
664
|
# A new persistent disk or a local ssd. A VM can only have one local SSD setting
|
|
664
|
-
# but multiple local SSD partitions. https://cloud.google.com/compute/docs/
|
|
665
|
-
# pdspecs
|
|
665
|
+
# but multiple local SSD partitions. See https://cloud.google.com/compute/docs/
|
|
666
|
+
# disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
|
|
666
667
|
# Corresponds to the JSON property `bootDisk`
|
|
667
668
|
# @return [Google::Apis::BatchV1::Disk]
|
|
668
669
|
attr_accessor :boot_disk
|
|
@@ -678,8 +679,8 @@ module Google
|
|
|
678
679
|
# @return [String]
|
|
679
680
|
attr_accessor :machine_type
|
|
680
681
|
|
|
681
|
-
# The minimum CPU platform. See
|
|
682
|
-
# specify-min-cpu-platform
|
|
682
|
+
# The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/
|
|
683
|
+
# specify-min-cpu-platform. Not yet implemented.
|
|
683
684
|
# Corresponds to the JSON property `minCpuPlatform`
|
|
684
685
|
# @return [String]
|
|
685
686
|
attr_accessor :min_cpu_platform
|
|
@@ -745,8 +746,8 @@ module Google
|
|
|
745
746
|
include Google::Apis::Core::Hashable
|
|
746
747
|
|
|
747
748
|
# A new persistent disk or a local ssd. A VM can only have one local SSD setting
|
|
748
|
-
# but multiple local SSD partitions. https://cloud.google.com/compute/docs/
|
|
749
|
-
# pdspecs
|
|
749
|
+
# but multiple local SSD partitions. See https://cloud.google.com/compute/docs/
|
|
750
|
+
# disks#pdspecs and https://cloud.google.com/compute/docs/disks#localssds.
|
|
750
751
|
# Corresponds to the JSON property `bootDisk`
|
|
751
752
|
# @return [Google::Apis::BatchV1::Disk]
|
|
752
753
|
attr_accessor :boot_disk
|
|
@@ -1263,9 +1264,9 @@ module Google
|
|
|
1263
1264
|
include Google::Apis::Core::Hashable
|
|
1264
1265
|
|
|
1265
1266
|
# The URL of an existing network resource. You can specify the network as a full
|
|
1266
|
-
# or partial URL. For example, the following are all valid URLs: https://www.
|
|
1267
|
-
# googleapis.com/compute/v1/projects/`project`/global/networks/`network`
|
|
1268
|
-
# projects/`project`/global/networks/`network` global/networks/`network`
|
|
1267
|
+
# or partial URL. For example, the following are all valid URLs: * https://www.
|
|
1268
|
+
# googleapis.com/compute/v1/projects/`project`/global/networks/`network` *
|
|
1269
|
+
# projects/`project`/global/networks/`network` * global/networks/`network`
|
|
1269
1270
|
# Corresponds to the JSON property `network`
|
|
1270
1271
|
# @return [String]
|
|
1271
1272
|
attr_accessor :network
|
|
@@ -1282,9 +1283,9 @@ module Google
|
|
|
1282
1283
|
|
|
1283
1284
|
# The URL of an existing subnetwork resource in the network. You can specify the
|
|
1284
1285
|
# subnetwork as a full or partial URL. For example, the following are all valid
|
|
1285
|
-
# URLs: https://www.googleapis.com/compute/v1/projects/`project`/regions/`
|
|
1286
|
-
#
|
|
1287
|
-
# subnetwork` regions/`region`/subnetworks/`subnetwork`
|
|
1286
|
+
# URLs: * https://www.googleapis.com/compute/v1/projects/`project`/regions/`
|
|
1287
|
+
# region`/subnetworks/`subnetwork` * projects/`project`/regions/`region`/
|
|
1288
|
+
# subnetworks/`subnetwork` * regions/`region`/subnetworks/`subnetwork`
|
|
1288
1289
|
# Corresponds to the JSON property `subnetwork`
|
|
1289
1290
|
# @return [String]
|
|
1290
1291
|
attr_accessor :subnetwork
|
|
@@ -1804,7 +1805,7 @@ module Google
|
|
|
1804
1805
|
attr_accessor :require_hosts_file
|
|
1805
1806
|
alias_method :require_hosts_file?, :require_hosts_file
|
|
1806
1807
|
|
|
1807
|
-
# Number of Tasks in the TaskGroup.
|
|
1808
|
+
# Number of Tasks in the TaskGroup. Default is 1.
|
|
1808
1809
|
# Corresponds to the JSON property `taskCount`
|
|
1809
1810
|
# @return [Fixnum]
|
|
1810
1811
|
attr_accessor :task_count
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module BatchV1
|
|
18
18
|
# Version of the google-apis-batch_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.9.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20230301"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-batch_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-03-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-apis-core
|
|
@@ -58,7 +58,7 @@ licenses:
|
|
|
58
58
|
metadata:
|
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-batch_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.9.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-batch_v1
|
|
63
63
|
post_install_message:
|
|
64
64
|
rdoc_options: []
|