google-apis-dataproc_v1beta2 0.2.0 → 0.7.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: 736b1ae01633ef773859d3df6fb19a6ec46ceca1f1b7cf895dec5080c4111c26
4
- data.tar.gz: 7c2083ce4f9b25de5928413ee5523b906f673fcf95c5a770ccd760ef45d9109c
3
+ metadata.gz: 177a15d5a7104ec3f7a98378980a5fe3aba37da04a093d9a66b13c8551a7b0c4
4
+ data.tar.gz: 0a080586e2bda9e74954063656c8ec3e72efee2114c5851b5d9b2dac0d56368b
5
5
  SHA512:
6
- metadata.gz: 3794e511d630b9f871d64558d63984e3cb30acedabe27986b15e4855ae5b4384ae4d400c2a096dd0feec54c4d08bd5b6091c022a730a6f4d4438284cda4bd2d5
7
- data.tar.gz: 3af89583b4157e2f64ecdd38d51658015c7752dcf05e5654edac2d2c1109399b88953da543dd2c923e58692f9da6ea7de985d12adb7aadfebd2da71039050595
6
+ metadata.gz: ae8f79cb5600fc16f7d8a2cae4acd00788f554698147cd01a499aae430c5b20977dd163a5a5ffb7b58dcdf928fc267b6401c304e4fd2bad93116b9a37fb60b8c
7
+ data.tar.gz: 4a324344ca5f4f450d3a4067c41b5aeba64733acf90187901b7a84b1025e642ae82934243572ccf4b73f9b54562f659d1894889911413d04cef15f6ee389e410
data/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # Release history for google-apis-dataproc_v1beta2
2
2
 
3
+ ### v0.7.0 (2021-05-19)
4
+
5
+ * Unspecified changes
6
+
7
+ ### v0.6.0 (2021-03-18)
8
+
9
+ * Regenerated from discovery document revision 20210315
10
+
11
+ ### v0.5.0 (2021-03-12)
12
+
13
+ * Regenerated from discovery document revision 20210305
14
+ * Regenerated using generator version 0.2.0
15
+
16
+ ### v0.4.0 (2021-03-04)
17
+
18
+ * Unspecified changes
19
+
20
+ ### v0.3.0 (2021-02-12)
21
+
22
+ * Regenerated from discovery document revision 20210205
23
+
3
24
  ### v0.2.0 (2021-02-04)
4
25
 
5
26
  * Regenerated from discovery document revision 20210128
@@ -29,7 +29,7 @@ module Google
29
29
  # This is NOT the gem version.
30
30
  VERSION = 'V1beta2'
31
31
 
32
- # View and manage your data across Google Cloud Platform services
32
+ # See, edit, configure, and delete your Google Cloud Platform data
33
33
  AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
34
34
  end
35
35
  end
@@ -1392,8 +1392,9 @@ module Google
1392
1392
  # @return [String]
1393
1393
  attr_accessor :min_cpu_platform
1394
1394
 
1395
- # Optional. The number of VM instances in the instance group. For master
1396
- # instance groups, must be set to 1.
1395
+ # Optional. The number of VM instances in the instance group. For HA cluster
1396
+ # master_config groups, must be set to 3. For standard cluster master_config
1397
+ # groups, must be set to 1.
1397
1398
  # Corresponds to the JSON property `numInstances`
1398
1399
  # @return [Fixnum]
1399
1400
  attr_accessor :num_instances
@@ -1706,6 +1707,11 @@ module Google
1706
1707
  class JobPlacement
1707
1708
  include Google::Apis::Core::Hashable
1708
1709
 
1710
+ # Optional. Cluster labels to identify a cluster where the job will be submitted.
1711
+ # Corresponds to the JSON property `clusterLabels`
1712
+ # @return [Hash<String,String>]
1713
+ attr_accessor :cluster_labels
1714
+
1709
1715
  # Required. The name of the cluster where the job will be submitted.
1710
1716
  # Corresponds to the JSON property `clusterName`
1711
1717
  # @return [String]
@@ -1723,6 +1729,7 @@ module Google
1723
1729
 
1724
1730
  # Update properties of this object
1725
1731
  def update!(**args)
1732
+ @cluster_labels = args[:cluster_labels] if args.key?(:cluster_labels)
1726
1733
  @cluster_name = args[:cluster_name] if args.key?(:cluster_name)
1727
1734
  @cluster_uuid = args[:cluster_uuid] if args.key?(:cluster_uuid)
1728
1735
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module DataprocV1beta2
18
18
  # Version of the google-apis-dataproc_v1beta2 gem
19
- GEM_VERSION = "0.2.0"
19
+ GEM_VERSION = "0.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.1.2"
22
+ GENERATOR_VERSION = "0.2.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210128"
25
+ REVISION = "20210315"
26
26
  end
27
27
  end
28
28
  end
@@ -940,6 +940,7 @@ module Google
940
940
  class JobPlacement
941
941
  # @private
942
942
  class Representation < Google::Apis::Core::JsonRepresentation
943
+ hash :cluster_labels, as: 'clusterLabels'
943
944
  property :cluster_name, as: 'clusterName'
944
945
  property :cluster_uuid, as: 'clusterUuid'
945
946
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-dataproc_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.7.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: 2021-02-08 00:00:00.000000000 Z
11
+ date: 2021-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -52,7 +52,7 @@ licenses:
52
52
  metadata:
53
53
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
54
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1beta2/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1beta2/v0.2.0
55
+ documentation_uri: https://googleapis.dev/ruby/google-apis-dataproc_v1beta2/v0.7.0
56
56
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-dataproc_v1beta2
57
57
  post_install_message:
58
58
  rdoc_options: []
@@ -62,14 +62,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
62
62
  requirements:
63
63
  - - ">="
64
64
  - !ruby/object:Gem::Version
65
- version: '2.4'
65
+ version: '2.5'
66
66
  required_rubygems_version: !ruby/object:Gem::Requirement
67
67
  requirements:
68
68
  - - ">="
69
69
  - !ruby/object:Gem::Version
70
70
  version: '0'
71
71
  requirements: []
72
- rubygems_version: 3.2.6
72
+ rubygems_version: 3.2.17
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Simple REST client for Cloud Dataproc API V1beta2