google-apis-batch_v1 0.37.0 → 0.38.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/batch_v1/classes.rb +28 -13
- data/lib/google/apis/batch_v1/gem_version.rb +2 -2
- data/lib/google/apis/batch_v1/representations.rb +1 -0
- 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: e594f111a376b6389862947ebe59a14024344c3c2a6829d4e64b6a6cac50cbe8
|
4
|
+
data.tar.gz: d595c128b9667e3442df55209dc24272d63ebcae4cc317b4811d5d3d4fef5e3f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca2c5c9a75fc9fe640e3d266244ed640e39d83326e73c90d9f8535a1a340f93641dbb7e526e318e5e65360a597f63fa0cc76b5f610ec1c3fd04a71dd634e9c23
|
7
|
+
data.tar.gz: 7b4e2e41a87ab08e0550193211a4487d34e1d124771f778311f45c67ac971d8ae00492dd8d402e899fa81eaf3a18dc80bb37c3470470588da7c4ff368ad4731e
|
data/CHANGELOG.md
CHANGED
@@ -991,7 +991,9 @@ module Google
|
|
991
991
|
|
992
992
|
# Disk type as shown in `gcloud compute disk-types list`. For example, local SSD
|
993
993
|
# uses type "local-ssd". Persistent disks and boot disks use "pd-balanced", "pd-
|
994
|
-
# extreme", "pd-ssd" or "pd-standard".
|
994
|
+
# extreme", "pd-ssd" or "pd-standard". If not specified, "pd-standard" will be
|
995
|
+
# used as the default type for non-boot disks, "pd-balanced" will be used as the
|
996
|
+
# default type for boot disks.
|
995
997
|
# Corresponds to the JSON property `type`
|
996
998
|
# @return [String]
|
997
999
|
attr_accessor :type
|
@@ -1163,6 +1165,13 @@ module Google
|
|
1163
1165
|
attr_accessor :install_gpu_drivers
|
1164
1166
|
alias_method :install_gpu_drivers?, :install_gpu_drivers
|
1165
1167
|
|
1168
|
+
# Optional. Set this field true if you want Batch to install Ops Agent on your
|
1169
|
+
# behalf. Default is false.
|
1170
|
+
# Corresponds to the JSON property `installOpsAgent`
|
1171
|
+
# @return [Boolean]
|
1172
|
+
attr_accessor :install_ops_agent
|
1173
|
+
alias_method :install_ops_agent?, :install_ops_agent
|
1174
|
+
|
1166
1175
|
# Name of an instance template used to create VMs. Named the field as '
|
1167
1176
|
# instance_template' instead of 'template' to avoid c++ keyword conflict.
|
1168
1177
|
# Corresponds to the JSON property `instanceTemplate`
|
@@ -1182,6 +1191,7 @@ module Google
|
|
1182
1191
|
# Update properties of this object
|
1183
1192
|
def update!(**args)
|
1184
1193
|
@install_gpu_drivers = args[:install_gpu_drivers] if args.key?(:install_gpu_drivers)
|
1194
|
+
@install_ops_agent = args[:install_ops_agent] if args.key?(:install_ops_agent)
|
1185
1195
|
@instance_template = args[:instance_template] if args.key?(:instance_template)
|
1186
1196
|
@policy = args[:policy] if args.key?(:policy)
|
1187
1197
|
end
|
@@ -1327,10 +1337,14 @@ module Google
|
|
1327
1337
|
# @return [Google::Apis::BatchV1::Message]
|
1328
1338
|
attr_accessor :message
|
1329
1339
|
|
1330
|
-
# The Pub/Sub topic where notifications
|
1331
|
-
# published.
|
1332
|
-
#
|
1333
|
-
#
|
1340
|
+
# The Pub/Sub topic where notifications for the job, like state changes, will be
|
1341
|
+
# published. If undefined, no Pub/Sub notifications are sent for this job.
|
1342
|
+
# Specify the topic using the following format: `projects/`project`/topics/`
|
1343
|
+
# topic``. Notably, if you want to specify a Pub/Sub topic that is in a
|
1344
|
+
# different project than the job, your administrator must grant your project's
|
1345
|
+
# Batch service agent permission to publish to that topic. For more information
|
1346
|
+
# about configuring Pub/Sub notifications for a job, see https://cloud.google.
|
1347
|
+
# com/batch/docs/enable-notifications.
|
1334
1348
|
# Corresponds to the JSON property `pubsubTopic`
|
1335
1349
|
# @return [String]
|
1336
1350
|
attr_accessor :pubsub_topic
|
@@ -2541,14 +2555,15 @@ module Google
|
|
2541
2555
|
# @return [Google::Apis::BatchV1::Gcs]
|
2542
2556
|
attr_accessor :gcs
|
2543
2557
|
|
2544
|
-
#
|
2545
|
-
# gcsfuse tool
|
2546
|
-
#
|
2547
|
-
#
|
2548
|
-
#
|
2549
|
-
#
|
2550
|
-
#
|
2551
|
-
#
|
2558
|
+
# Mount options vary based on the type of storage volume: * For a Cloud Storage
|
2559
|
+
# bucket, all the mount options provided by the [`gcsfuse` tool](https://cloud.
|
2560
|
+
# google.com/storage/docs/gcsfuse-cli) are supported. * For an existing
|
2561
|
+
# persistent disk, all mount options provided by the [`mount` command](https://
|
2562
|
+
# man7.org/linux/man-pages/man8/mount.8.html) except writing are supported. This
|
2563
|
+
# is due to restrictions of [multi-writer mode](https://cloud.google.com/compute/
|
2564
|
+
# docs/disks/sharing-disks-between-vms). * For any other disk or a Network File
|
2565
|
+
# System (NFS), all the mount options provided by the `mount` command are
|
2566
|
+
# supported.
|
2552
2567
|
# Corresponds to the JSON property `mountOptions`
|
2553
2568
|
# @return [Array<String>]
|
2554
2569
|
attr_accessor :mount_options
|
@@ -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.38.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240607"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -668,6 +668,7 @@ module Google
|
|
668
668
|
# @private
|
669
669
|
class Representation < Google::Apis::Core::JsonRepresentation
|
670
670
|
property :install_gpu_drivers, as: 'installGpuDrivers'
|
671
|
+
property :install_ops_agent, as: 'installOpsAgent'
|
671
672
|
property :instance_template, as: 'instanceTemplate'
|
672
673
|
property :policy, as: 'policy', class: Google::Apis::BatchV1::InstancePolicy, decorator: Google::Apis::BatchV1::InstancePolicy::Representation
|
673
674
|
|
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.38.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: 2024-
|
11
|
+
date: 2024-06-16 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.38.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: []
|