google-apis-batch_v1 0.12.0 → 0.14.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7137aa654cb1128f3de69f66dac9eef55653e80a1cfa2475f456d3b88c9c3f63
4
- data.tar.gz: d40bea3b14a9910010e837c0f024a4efdfb626f3c129b422337c415692f82988
3
+ metadata.gz: 54c507e8d0d05bd01b00b1accc9af2f7b89d15c5190e4a247f5f44a306427bd3
4
+ data.tar.gz: e8694e41a2eaf6950310bd4b40087645708365e19f0f9e8b83b97103578e4b72
5
5
  SHA512:
6
- metadata.gz: acb785a6937afb685362dd314bb5500b283bf5605bf0c6a9a5269decd5c5e979e7a549d31cbb9dad044c2eb644e40bd19b2295ac5a4fe8e98f6c087adb27226c
7
- data.tar.gz: 7e5cd4b5adf326187f46841c908fa2911f5481db099d51823c053f6d61b1b851e9fc2aa10fc41512db9c70e82cf533524663a8fb3bb0acf02f1b13912a24e216
6
+ metadata.gz: 84eee48f40925be6efa50810cb97f24ce33614492b08b9a617f830f1e0b0a0566f2137445729dab70051a0396f7c0e88ec089cb2dc705e87ba40126d8c04e9f9
7
+ data.tar.gz: b36a1fb8f7d30d8943c6bd09160abb304b644d431cc71e540788bb6bf7d2e710608a94a4f627ac6790744642735bbdc4f011356ae4081e584e7827c1b562cb10
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-batch_v1
2
2
 
3
+ ### v0.14.0 (2023-05-28)
4
+
5
+ * Regenerated from discovery document revision 20230518
6
+
7
+ ### v0.13.0 (2023-05-21)
8
+
9
+ * Regenerated from discovery document revision 20230509
10
+
3
11
  ### v0.12.0 (2023-05-07)
4
12
 
5
13
  * Regenerated from discovery document revision 20230426
@@ -693,7 +693,7 @@ module Google
693
693
  attr_accessor :machine_type
694
694
 
695
695
  # The minimum CPU platform. See https://cloud.google.com/compute/docs/instances/
696
- # specify-min-cpu-platform. Not yet implemented.
696
+ # specify-min-cpu-platform.
697
697
  # Corresponds to the JSON property `minCpuPlatform`
698
698
  # @return [String]
699
699
  attr_accessor :min_cpu_platform
@@ -1824,8 +1824,7 @@ module Google
1824
1824
  end
1825
1825
  end
1826
1826
 
1827
- # A TaskGroup contains one or multiple Tasks that share the same Runnable but
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). task_environments supports up to 200 entries.
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.12.0"
19
+ GEM_VERSION = "0.14.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 = "20230426"
25
+ REVISION = "20230518"
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.12.0
4
+ version: 0.14.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-14 00:00:00.000000000 Z
11
+ date: 2023-05-28 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.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-batch_v1/v0.14.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: []