google-apis-dataproc_v1 0.69.0 → 0.70.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: 5590c1b54c98b86fd7dd19d4b37e70322a3e361661496ef7e853c0aba09b0259
4
- data.tar.gz: 9d761d9868e41043158224caa5ed80d72aeb6660364925f3986fe4d2aff692f0
3
+ metadata.gz: 528a3689a86bcd709fd35ca822652442c6ee5f900dda10518b93d828794a4929
4
+ data.tar.gz: fcc0a499bf239db7fa51e1097a6fa0b55825f0295d7fa31ebea5ca2b8f0acbab
5
5
  SHA512:
6
- metadata.gz: 2a983846cca83a3ed4ac9f2e8fcb9b236372a8b8854fb853c7ead48eb2e03a4f60d55b9a72f8998307e34e29d30fc1db8398d6081dddfa054760caadfb524c49
7
- data.tar.gz: 6554163aa5c848764a6727686c57942b6ad6977d2aa2600cda8066dfb48a2f84850073c99168780dc7dc58c584b350578105b488b7ccd1a949b562346c8ea9a9
6
+ metadata.gz: a8e0a1d5c4e378d6daa4bde88d9c59bd97162f6b7a3048152f6a53d0df363ff0a2ce1d6c1b62d64473666ecd6f51892c0d80d5afbfd0a267adb0467fbc236c2d
7
+ data.tar.gz: 7d783b27e5e874c2e61f3e4509e4125c7ab2d9779e630a81117465cda373b314345c83fce34c32600c7f72386abcffc4f02b76cc0e511ac485e4595f1332f963
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-dataproc_v1
2
2
 
3
+ ### v0.70.0 (2024-06-09)
4
+
5
+ * Regenerated from discovery document revision 20240605
6
+
3
7
  ### v0.69.0 (2024-05-19)
4
8
 
5
9
  * Regenerated using generator version 0.15.0
@@ -235,6 +235,25 @@ module Google
235
235
  end
236
236
  end
237
237
 
238
+ # Autotuning configuration of the workload.
239
+ class AutotuningConfig
240
+ include Google::Apis::Core::Hashable
241
+
242
+ # Optional. Scenarios for which tunings are applied.
243
+ # Corresponds to the JSON property `scenarios`
244
+ # @return [Array<String>]
245
+ attr_accessor :scenarios
246
+
247
+ def initialize(**args)
248
+ update!(**args)
249
+ end
250
+
251
+ # Update properties of this object
252
+ def update!(**args)
253
+ @scenarios = args[:scenarios] if args.key?(:scenarios)
254
+ end
255
+ end
256
+
238
257
  # Node group identification and configuration information.
239
258
  class AuxiliaryNodeGroup
240
259
  include Google::Apis::Core::Hashable
@@ -4738,6 +4757,17 @@ module Google
4738
4757
  class RuntimeConfig
4739
4758
  include Google::Apis::Core::Hashable
4740
4759
 
4760
+ # Autotuning configuration of the workload.
4761
+ # Corresponds to the JSON property `autotuningConfig`
4762
+ # @return [Google::Apis::DataprocV1::AutotuningConfig]
4763
+ attr_accessor :autotuning_config
4764
+
4765
+ # Optional. Cohort identifier. Identifies families of the workloads having the
4766
+ # same shape, e.g. daily ETL jobs.
4767
+ # Corresponds to the JSON property `cohort`
4768
+ # @return [String]
4769
+ attr_accessor :cohort
4770
+
4741
4771
  # Optional. Optional custom container image for the job runtime environment. If
4742
4772
  # not specified, a default container image will be used.
4743
4773
  # Corresponds to the JSON property `containerImage`
@@ -4766,6 +4796,8 @@ module Google
4766
4796
 
4767
4797
  # Update properties of this object
4768
4798
  def update!(**args)
4799
+ @autotuning_config = args[:autotuning_config] if args.key?(:autotuning_config)
4800
+ @cohort = args[:cohort] if args.key?(:cohort)
4769
4801
  @container_image = args[:container_image] if args.key?(:container_image)
4770
4802
  @properties = args[:properties] if args.key?(:properties)
4771
4803
  @repository_config = args[:repository_config] if args.key?(:repository_config)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1
18
18
  # Version of the google-apis-dataproc_v1 gem
19
- GEM_VERSION = "0.69.0"
19
+ GEM_VERSION = "0.70.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 = "20240429"
25
+ REVISION = "20240605"
26
26
  end
27
27
  end
28
28
  end
@@ -52,6 +52,12 @@ module Google
52
52
  include Google::Apis::Core::JsonObjectSupport
53
53
  end
54
54
 
55
+ class AutotuningConfig
56
+ class Representation < Google::Apis::Core::JsonRepresentation; end
57
+
58
+ include Google::Apis::Core::JsonObjectSupport
59
+ end
60
+
55
61
  class AuxiliaryNodeGroup
56
62
  class Representation < Google::Apis::Core::JsonRepresentation; end
57
63
 
@@ -925,6 +931,13 @@ module Google
925
931
  end
926
932
  end
927
933
 
934
+ class AutotuningConfig
935
+ # @private
936
+ class Representation < Google::Apis::Core::JsonRepresentation
937
+ collection :scenarios, as: 'scenarios'
938
+ end
939
+ end
940
+
928
941
  class AuxiliaryNodeGroup
929
942
  # @private
930
943
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -2035,6 +2048,9 @@ module Google
2035
2048
  class RuntimeConfig
2036
2049
  # @private
2037
2050
  class Representation < Google::Apis::Core::JsonRepresentation
2051
+ property :autotuning_config, as: 'autotuningConfig', class: Google::Apis::DataprocV1::AutotuningConfig, decorator: Google::Apis::DataprocV1::AutotuningConfig::Representation
2052
+
2053
+ property :cohort, as: 'cohort'
2038
2054
  property :container_image, as: 'containerImage'
2039
2055
  hash :properties, as: 'properties'
2040
2056
  property :repository_config, as: 'repositoryConfig', class: Google::Apis::DataprocV1::RepositoryConfig, decorator: Google::Apis::DataprocV1::RepositoryConfig::Representation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.69.0
4
+ version: 0.70.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-05-19 00:00:00.000000000 Z
11
+ date: 2024-06-09 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-dataproc_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.69.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1/v0.70.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-dataproc_v1
63
63
  post_install_message:
64
64
  rdoc_options: []