google-apis-batch_v1 0.12.0 → 0.13.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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fdca39b9bcce5ba56cf41a0c0d034951f14ab3ef319c8520ed7a1e7968192d3e
|
|
4
|
+
data.tar.gz: d99dc563bf11782e8fa01780a068f8e4e18ee1be8de9232a52598c27bcd42637
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6131b15a778f8ec46798a0b36369701193e5b3e846f1bc0277138fa33ebe9f55d06b1687065e56d64cb0b9c08981916449408286891d3de98ee2e195efe1c97b
|
|
7
|
+
data.tar.gz: e2819b6318b1f349eb0b3b853583a43eaaf204c7e7b1292e946405edc0fe4834514ec9a72c1ca52990025f23073775b20425c1ad3647cadee82c7d4527753763
|
data/CHANGELOG.md
CHANGED
|
@@ -1824,8 +1824,7 @@ module Google
|
|
|
1824
1824
|
end
|
|
1825
1825
|
end
|
|
1826
1826
|
|
|
1827
|
-
# A TaskGroup
|
|
1828
|
-
# with different runtime parameters.
|
|
1827
|
+
# A TaskGroup defines one or more Tasks that all share the same TaskSpec.
|
|
1829
1828
|
class TaskGroup
|
|
1830
1829
|
include Google::Apis::Core::Hashable
|
|
1831
1830
|
|
|
@@ -1857,6 +1856,12 @@ module Google
|
|
|
1857
1856
|
attr_accessor :require_hosts_file
|
|
1858
1857
|
alias_method :require_hosts_file?, :require_hosts_file
|
|
1859
1858
|
|
|
1859
|
+
# Scheduling policy for Tasks in the TaskGroup. The default value is
|
|
1860
|
+
# AS_SOON_AS_POSSIBLE.
|
|
1861
|
+
# Corresponds to the JSON property `schedulingPolicy`
|
|
1862
|
+
# @return [String]
|
|
1863
|
+
attr_accessor :scheduling_policy
|
|
1864
|
+
|
|
1860
1865
|
# Number of Tasks in the TaskGroup. Default is 1.
|
|
1861
1866
|
# Corresponds to the JSON property `taskCount`
|
|
1862
1867
|
# @return [Fixnum]
|
|
@@ -1876,7 +1881,7 @@ module Google
|
|
|
1876
1881
|
# environment variable, in addition to any environment variables set in
|
|
1877
1882
|
# task_environments, specifying the number of Tasks in the Task's parent
|
|
1878
1883
|
# TaskGroup, and the specific Task's index in the TaskGroup (0 through
|
|
1879
|
-
# BATCH_TASK_COUNT - 1).
|
|
1884
|
+
# BATCH_TASK_COUNT - 1).
|
|
1880
1885
|
# Corresponds to the JSON property `taskEnvironments`
|
|
1881
1886
|
# @return [Array<Google::Apis::BatchV1::Environment>]
|
|
1882
1887
|
attr_accessor :task_environments
|
|
@@ -1896,6 +1901,7 @@ module Google
|
|
|
1896
1901
|
@parallelism = args[:parallelism] if args.key?(:parallelism)
|
|
1897
1902
|
@permissive_ssh = args[:permissive_ssh] if args.key?(:permissive_ssh)
|
|
1898
1903
|
@require_hosts_file = args[:require_hosts_file] if args.key?(:require_hosts_file)
|
|
1904
|
+
@scheduling_policy = args[:scheduling_policy] if args.key?(:scheduling_policy)
|
|
1899
1905
|
@task_count = args[:task_count] if args.key?(:task_count)
|
|
1900
1906
|
@task_count_per_node = args[:task_count_per_node] if args.key?(:task_count_per_node)
|
|
1901
1907
|
@task_environments = args[:task_environments] if args.key?(:task_environments)
|
|
@@ -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.13.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 = "20230509"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -841,6 +841,7 @@ module Google
|
|
|
841
841
|
property :parallelism, :numeric_string => true, as: 'parallelism'
|
|
842
842
|
property :permissive_ssh, as: 'permissiveSsh'
|
|
843
843
|
property :require_hosts_file, as: 'requireHostsFile'
|
|
844
|
+
property :scheduling_policy, as: 'schedulingPolicy'
|
|
844
845
|
property :task_count, :numeric_string => true, as: 'taskCount'
|
|
845
846
|
property :task_count_per_node, :numeric_string => true, as: 'taskCountPerNode'
|
|
846
847
|
collection :task_environments, as: 'taskEnvironments', class: Google::Apis::BatchV1::Environment, decorator: Google::Apis::BatchV1::Environment::Representation
|
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.13.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-05-
|
|
11
|
+
date: 2023-05-21 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.13.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: []
|