google-apis-batch_v1 0.46.0 → 0.48.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 +8 -0
- data/lib/google/apis/batch_v1/classes.rb +26 -18
- data/lib/google/apis/batch_v1/gem_version.rb +2 -2
- data/lib/google/apis/batch_v1/service.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 706294e4fbbcff76d71b10d8620d2e55dba85b250188c0cddd19db667a9f9c73
|
4
|
+
data.tar.gz: 32410a3468cd97e79356724321e94e05f5554ca3466995e62da3e514177a5f16
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5979c1c3d3d0d2a49f1b842b42278b0619107be568fe62b6e8a9c69ff4ec1ddcc4140ad685bf544190894552860406e15bce71705c1c2bc2770605de2f9edbd
|
7
|
+
data.tar.gz: a3d8cf9834ecb345e675907ff9ea1c1c51f851701a4a5b84a881d6cee75efe9b32c2e19ec016dfc4ac1427d9e2e85563e32cc817005f68f28554762b081c84b1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-batch_v1
|
2
2
|
|
3
|
+
### v0.48.0 (2024-12-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20241204
|
6
|
+
|
7
|
+
### v0.47.0 (2024-11-17)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20241106
|
10
|
+
|
3
11
|
### v0.46.0 (2024-10-20)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20241002
|
@@ -778,11 +778,11 @@ module Google
|
|
778
778
|
class CloudLoggingOption
|
779
779
|
include Google::Apis::Core::Hashable
|
780
780
|
|
781
|
-
# Optional. Set this
|
782
|
-
#
|
783
|
-
# by this Batch job from the [`batch.googleapis.com/Job`](https://
|
784
|
-
# com/monitoring/api/resources#tag_batch.googleapis.com/Job) type
|
785
|
-
# formerly used [`generic_task`](https://cloud.google.com/monitoring/api/
|
781
|
+
# Optional. Set this field to `true` to change the [monitored resource type](
|
782
|
+
# https://cloud.google.com/monitoring/api/resources) for Cloud Logging logs
|
783
|
+
# generated by this Batch job from the [`batch.googleapis.com/Job`](https://
|
784
|
+
# cloud.google.com/monitoring/api/resources#tag_batch.googleapis.com/Job) type
|
785
|
+
# to the formerly used [`generic_task`](https://cloud.google.com/monitoring/api/
|
786
786
|
# resources#tag_generic_task) type.
|
787
787
|
# Corresponds to the JSON property `useGenericTaskMonitoredResource`
|
788
788
|
# @return [Boolean]
|
@@ -1224,8 +1224,8 @@ module Google
|
|
1224
1224
|
|
1225
1225
|
# Name of an instance template used to create VMs. Named the field as '
|
1226
1226
|
# instance_template' instead of 'template' to avoid C++ keyword conflict. Batch
|
1227
|
-
# only supports global instance templates
|
1228
|
-
# template as a full or partial URL.
|
1227
|
+
# only supports global instance templates from the same project as the job. You
|
1228
|
+
# can specify the global instance template as a full or partial URL.
|
1229
1229
|
# Corresponds to the JSON property `instanceTemplate`
|
1230
1230
|
# @return [String]
|
1231
1231
|
attr_accessor :instance_template
|
@@ -1317,8 +1317,10 @@ module Google
|
|
1317
1317
|
# @return [Hash<String,String>]
|
1318
1318
|
attr_accessor :labels
|
1319
1319
|
|
1320
|
-
# LogsPolicy describes
|
1321
|
-
#
|
1320
|
+
# LogsPolicy describes if and how a job's logs are preserved. Logs include
|
1321
|
+
# information that is automatically written by the Batch service agent and any
|
1322
|
+
# information that you configured the job's runnables to write to the `stdout`
|
1323
|
+
# or `stderr` streams.
|
1322
1324
|
# Corresponds to the JSON property `logsPolicy`
|
1323
1325
|
# @return [Google::Apis::BatchV1::LogsPolicy]
|
1324
1326
|
attr_accessor :logs_policy
|
@@ -1695,8 +1697,10 @@ module Google
|
|
1695
1697
|
end
|
1696
1698
|
end
|
1697
1699
|
|
1698
|
-
# LogsPolicy describes
|
1699
|
-
#
|
1700
|
+
# LogsPolicy describes if and how a job's logs are preserved. Logs include
|
1701
|
+
# information that is automatically written by the Batch service agent and any
|
1702
|
+
# information that you configured the job's runnables to write to the `stdout`
|
1703
|
+
# or `stderr` streams.
|
1700
1704
|
class LogsPolicy
|
1701
1705
|
include Google::Apis::Core::Hashable
|
1702
1706
|
|
@@ -1706,14 +1710,18 @@ module Google
|
|
1706
1710
|
# @return [Google::Apis::BatchV1::CloudLoggingOption]
|
1707
1711
|
attr_accessor :cloud_logging_option
|
1708
1712
|
|
1709
|
-
#
|
1713
|
+
# If and where logs should be saved.
|
1710
1714
|
# Corresponds to the JSON property `destination`
|
1711
1715
|
# @return [String]
|
1712
1716
|
attr_accessor :destination
|
1713
1717
|
|
1714
|
-
#
|
1715
|
-
#
|
1716
|
-
#
|
1718
|
+
# When `destination` is set to `PATH`, you must set this field to the path where
|
1719
|
+
# you want logs to be saved. This path can point to a local directory on the VM
|
1720
|
+
# or (if congifured) a directory under the mount path of any Cloud Storage
|
1721
|
+
# bucket, network file system (NFS), or writable persistent disk that is mounted
|
1722
|
+
# to the job. For example, if the job has a bucket with `mountPath` set to `/mnt/
|
1723
|
+
# disks/my-bucket`, you can write logs to the root directory of the `remotePath`
|
1724
|
+
# of that bucket by setting this field to `/mnt/disks/my-bucket/`.
|
1717
1725
|
# Corresponds to the JSON property `logsPath`
|
1718
1726
|
# @return [String]
|
1719
1727
|
attr_accessor :logs_path
|
@@ -1934,9 +1942,9 @@ module Google
|
|
1934
1942
|
attr_accessor :end_time
|
1935
1943
|
|
1936
1944
|
# Output only. Identifies whether the user has requested cancellation of the
|
1937
|
-
# operation. Operations that have successfully been cancelled have
|
1938
|
-
# error value with a google.rpc.Status.code of 1,
|
1939
|
-
# CANCELLED`.
|
1945
|
+
# operation. Operations that have successfully been cancelled have google.
|
1946
|
+
# longrunning.Operation.error value with a google.rpc.Status.code of 1,
|
1947
|
+
# corresponding to `Code.CANCELLED`.
|
1940
1948
|
# Corresponds to the JSON property `requestedCancellation`
|
1941
1949
|
# @return [Boolean]
|
1942
1950
|
attr_accessor :requested_cancellation
|
@@ -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.48.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20241204"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -373,8 +373,8 @@ module Google
|
|
373
373
|
# Clients can use Operations.GetOperation or other methods to check whether the
|
374
374
|
# cancellation succeeded or whether the operation completed despite cancellation.
|
375
375
|
# On successful cancellation, the operation is not deleted; instead, it becomes
|
376
|
-
# an operation with an Operation.error value with a google.rpc.Status.code of 1
|
377
|
-
# corresponding to `Code.CANCELLED`.
|
376
|
+
# an operation with an Operation.error value with a google.rpc.Status.code of `1`
|
377
|
+
# , corresponding to `Code.CANCELLED`.
|
378
378
|
# @param [String] name
|
379
379
|
# The name of the operation resource to be cancelled.
|
380
380
|
# @param [Google::Apis::BatchV1::CancelOperationRequest] cancel_operation_request_object
|
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.48.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-12-15 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.48.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: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.5.
|
78
|
+
rubygems_version: 3.5.23
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Batch API V1
|