google-apis-batch_v1 0.28.0 → 0.30.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 +9 -0
- data/lib/google/apis/batch_v1/classes.rb +26 -12
- data/lib/google/apis/batch_v1/gem_version.rb +3 -3
- 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: 749cf7309c7237a997d93016586b8d03cb2c5a662a4eea5a0cb18dd06471ae56
|
|
4
|
+
data.tar.gz: 98659d5734e907dc3de236e5c5ff76f8b151672c9c53d297a1215aa090bb3699
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 186dbafb315b5fb4963bcf703038730a7b45a7f97db6b1d7483672b3748ea1fa958273f36d1ddc88ab9cbc549175735400bf68473d5965681dc29a9eb8dfcdbc
|
|
7
|
+
data.tar.gz: 97a8e999a041f402a32338f6006b269b0e8bf923c75fd9859bdd826bd7199358d2f4756cfbb7f5d34cd38dec053e06a40e089f19b5f9b325431bf0bb9fedccec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-batch_v1
|
|
2
2
|
|
|
3
|
+
### v0.30.0 (2024-02-18)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20240206
|
|
6
|
+
|
|
7
|
+
### v0.29.0 (2024-02-04)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20240127
|
|
10
|
+
* Regenerated using generator version 0.13.1
|
|
11
|
+
|
|
3
12
|
### v0.28.0 (2024-01-23)
|
|
4
13
|
|
|
5
14
|
* Regenerated from discovery document revision 20240112
|
|
@@ -868,16 +868,30 @@ module Google
|
|
|
868
868
|
# @return [String]
|
|
869
869
|
attr_accessor :options
|
|
870
870
|
|
|
871
|
-
#
|
|
872
|
-
#
|
|
873
|
-
# Secret
|
|
871
|
+
# Required if the container image is from a private Docker registry. The
|
|
872
|
+
# password to login to the Docker registry that contains the image. For security,
|
|
873
|
+
# it is strongly recommended to specify an encrypted password by using a Secret
|
|
874
|
+
# Manager secret: `projects/*/secrets/*/versions/*`. Warning: If you specify the
|
|
875
|
+
# password using plain text, you risk the password being exposed to any users
|
|
876
|
+
# who can view the job or its logs. To avoid this risk, specify a secret that
|
|
877
|
+
# contains the password instead. Learn more about [Secret Manager](https://cloud.
|
|
878
|
+
# google.com/secret-manager/docs/) and [using Secret Manager with Batch](https://
|
|
879
|
+
# cloud.google.com/batch/docs/create-run-job-secret-manager).
|
|
874
880
|
# Corresponds to the JSON property `password`
|
|
875
881
|
# @return [String]
|
|
876
882
|
attr_accessor :password
|
|
877
883
|
|
|
878
|
-
#
|
|
879
|
-
#
|
|
880
|
-
#
|
|
884
|
+
# Required if the container image is from a private Docker registry. The
|
|
885
|
+
# username to login to the Docker registry that contains the image. You can
|
|
886
|
+
# either specify the username directly by using plain text or specify an
|
|
887
|
+
# encrypted username by using a Secret Manager secret: `projects/*/secrets/*/
|
|
888
|
+
# versions/*`. However, using a secret is recommended for enhanced security.
|
|
889
|
+
# Caution: If you specify the username using plain text, you risk the username
|
|
890
|
+
# being exposed to any users who can view the job or its logs. To avoid this
|
|
891
|
+
# risk, specify a secret that contains the username instead. Learn more about [
|
|
892
|
+
# Secret Manager](https://cloud.google.com/secret-manager/docs/) and [using
|
|
893
|
+
# Secret Manager with Batch](https://cloud.google.com/batch/docs/create-run-job-
|
|
894
|
+
# secret-manager).
|
|
881
895
|
# Corresponds to the JSON property `username`
|
|
882
896
|
# @return [String]
|
|
883
897
|
attr_accessor :username
|
|
@@ -1258,7 +1272,7 @@ module Google
|
|
|
1258
1272
|
# @return [Array<Google::Apis::BatchV1::TaskGroup>]
|
|
1259
1273
|
attr_accessor :task_groups
|
|
1260
1274
|
|
|
1261
|
-
# Output only. A system generated unique ID
|
|
1275
|
+
# Output only. A system generated unique ID for the Job.
|
|
1262
1276
|
# Corresponds to the JSON property `uid`
|
|
1263
1277
|
# @return [String]
|
|
1264
1278
|
attr_accessor :uid
|
|
@@ -2289,17 +2303,17 @@ module Google
|
|
|
2289
2303
|
|
|
2290
2304
|
# When true, Batch will populate a file with a list of all VMs assigned to the
|
|
2291
2305
|
# TaskGroup and set the BATCH_HOSTS_FILE environment variable to the path of
|
|
2292
|
-
# that file. Defaults to false.
|
|
2306
|
+
# that file. Defaults to false. The host file supports up to 1000 VMs.
|
|
2293
2307
|
# Corresponds to the JSON property `requireHostsFile`
|
|
2294
2308
|
# @return [Boolean]
|
|
2295
2309
|
attr_accessor :require_hosts_file
|
|
2296
2310
|
alias_method :require_hosts_file?, :require_hosts_file
|
|
2297
2311
|
|
|
2298
2312
|
# Optional. If not set or set to false, Batch uses the root user to execute
|
|
2299
|
-
# runnables. If set to true, Batch
|
|
2300
|
-
#
|
|
2301
|
-
#
|
|
2302
|
-
#
|
|
2313
|
+
# runnables. If set to true, Batch runs the runnables using a non-root user.
|
|
2314
|
+
# Currently, the non-root user Batch used is generated by OS Login. For more
|
|
2315
|
+
# information, see [About OS Login](https://cloud.google.com/compute/docs/
|
|
2316
|
+
# oslogin).
|
|
2303
2317
|
# Corresponds to the JSON property `runAsNonRoot`
|
|
2304
2318
|
# @return [Boolean]
|
|
2305
2319
|
attr_accessor :run_as_non_root
|
|
@@ -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.30.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.13.
|
|
22
|
+
GENERATOR_VERSION = "0.13.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240206"
|
|
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.30.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-02-18 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.30.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: []
|