google-cloud-dataproc-v1 0.2.1 → 0.2.2

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: d57b680ce9132d46310f96ebd8a911c9717f23dfd7af248244e523d42edabeaa
4
- data.tar.gz: e9ec515cff136dfdcbeb8d134d1c8495b1b77eed4e7a3634e88b40039e2e489b
3
+ metadata.gz: 370d280717ed0317b666d574e955a8fd3fd729f97137b8a809b2c909d94c78ac
4
+ data.tar.gz: b53ea25c99d08a882d48be431858f1234f2cd65dbe891bae2e4821555f00d5a0
5
5
  SHA512:
6
- metadata.gz: 670363dfd41123ca6c05a757c50073b6c7762f5a178eefaeeffc32333c6141b48ffdae8dba88bdc97b65499269b53c0c09e886ca44048285558f19f12506f9ac
7
- data.tar.gz: 1cc4aee4dc286a1a0c03bbddf4879edd857d9b7a52b077ac0c3bcd78420dfeeccbf45b9b498e7c5bf242e145b4c221ccc9796f7434fc326e6d93a25f59ce531d
6
+ metadata.gz: 8c3f11fdf660fc4e8114417e003b21c5f8c0a6de38e84eea1ec807f8f744b71686effb6300a1444b4a51552e66989f0a5eeb244f6e1cf92dbd288570a7302c43
7
+ data.tar.gz: a7c1de563886a622ed42608b485ab1bcf8e74efdcab31950014c1ee1acf8181e424ba712ab26d20c70938f3e7a3139946bc0bb6163a5573fd222d2e59c80a4b7
@@ -665,7 +665,7 @@ module Google
665
665
  def rpcs
666
666
  @rpcs ||= begin
667
667
  parent_rpcs = nil
668
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
668
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
669
669
  Rpcs.new parent_rpcs
670
670
  end
671
671
  end
@@ -894,7 +894,7 @@ module Google
894
894
  def rpcs
895
895
  @rpcs ||= begin
896
896
  parent_rpcs = nil
897
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
897
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
898
898
  Rpcs.new parent_rpcs
899
899
  end
900
900
  end
@@ -503,7 +503,7 @@ module Google
503
503
  def rpcs
504
504
  @rpcs ||= begin
505
505
  parent_rpcs = nil
506
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
506
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
507
507
  Rpcs.new parent_rpcs
508
508
  end
509
509
  end
@@ -897,7 +897,7 @@ module Google
897
897
  def rpcs
898
898
  @rpcs ||= begin
899
899
  parent_rpcs = nil
900
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
900
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
901
901
  Rpcs.new parent_rpcs
902
902
  end
903
903
  end
@@ -503,7 +503,7 @@ module Google
503
503
  def rpcs
504
504
  @rpcs ||= begin
505
505
  parent_rpcs = nil
506
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
506
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
507
507
  Rpcs.new parent_rpcs
508
508
  end
509
509
  end
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Dataproc
23
23
  module V1
24
- VERSION = "0.2.1"
24
+ VERSION = "0.2.2"
25
25
  end
26
26
  end
27
27
  end
@@ -941,7 +941,7 @@ module Google
941
941
  def rpcs
942
942
  @rpcs ||= begin
943
943
  parent_rpcs = nil
944
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
944
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
945
945
  Rpcs.new parent_rpcs
946
946
  end
947
947
  end
@@ -503,7 +503,7 @@ module Google
503
503
  def rpcs
504
504
  @rpcs ||= begin
505
505
  parent_rpcs = nil
506
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
506
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
507
507
  Rpcs.new parent_rpcs
508
508
  end
509
509
  end
@@ -453,8 +453,9 @@ module Google
453
453
 
454
454
  # A Dataproc job for running [Presto](https://prestosql.io/) queries.
455
455
  # **IMPORTANT**: The [Dataproc Presto Optional
456
- # Component](/dataproc/docs/concepts/components/presto) must be enabled when
457
- # the cluster is created to submit a Presto job to the cluster.
456
+ # Component](https://cloud.google.com/dataproc/docs/concepts/components/presto)
457
+ # must be enabled when the cluster is created to submit a Presto job to the
458
+ # cluster.
458
459
  # @!attribute [rw] query_file_uri
459
460
  # @return [::String]
460
461
  # The HCFS URI of the script that contains SQL queries.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-dataproc-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-05-26 00:00:00.000000000 Z
11
+ date: 2020-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -225,7 +225,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
225
225
  - !ruby/object:Gem::Version
226
226
  version: '0'
227
227
  requirements: []
228
- rubygems_version: 3.0.6
228
+ rubygems_version: 3.1.3
229
229
  signing_key:
230
230
  specification_version: 4
231
231
  summary: API Client library for the Cloud Dataproc V1 API