google-cloud-dataproc-v1beta2 0.2.1 → 0.2.2

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: 1e6c84b687b7d9cb902c2a31f1b653c3d7f72387a1f290acd77aa1d6d229abab
4
- data.tar.gz: 3de64b3fb38a650062cca69c3e9511d8bb5f4e0047d90396cba34720ef1025f4
3
+ metadata.gz: b08a01037f3ccaae217a37ee4eb1a9a0f0d08fcc54855ebc5da24751234ae36d
4
+ data.tar.gz: 9452892d300b13158d8ca95b825e7e68d4115318b59be5c8b5be9260b67abe9c
5
5
  SHA512:
6
- metadata.gz: c46bb0d30c129223429e12b43907b4ebb36235577e0c47f9192e9dc47900c2e6fd5d5ae19ebe6af2054124e914d4bbd1136f89e014066bd1461aecf7ab4b28b6
7
- data.tar.gz: bece0fe337d940d0b22a57283a78f920c1faa440d944c4b2750e8f6d545829b9f56d61541eb88d76c753c22f273df0b0b0506bba3192aec393af38cc6c49c28e
6
+ metadata.gz: bf358bb96b940ee05e789ca54dfc1d734ad8ca7c0f5ffc82c8a1c8dfda2f0a74b6f3a011ae775204c39523fed1c33242933d5d10af03812e802285714524d81c
7
+ data.tar.gz: dce71188c838eabd90315e21989023f1a10775fcc21eacc6104a5fae6815dcda044bbf16086179fc2004dc89bddb196ec80cc5a37341757dc9215c9329303d34
@@ -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
@@ -903,7 +903,7 @@ module Google
903
903
  def rpcs
904
904
  @rpcs ||= begin
905
905
  parent_rpcs = nil
906
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
906
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
907
907
  Rpcs.new parent_rpcs
908
908
  end
909
909
  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 V1beta2
24
- VERSION = "0.2.1"
24
+ VERSION = "0.2.2"
25
25
  end
26
26
  end
27
27
  end
@@ -945,7 +945,7 @@ module Google
945
945
  def rpcs
946
946
  @rpcs ||= begin
947
947
  parent_rpcs = nil
948
- parent_rpcs = @parent_config.rpcs if @parent_config&.respond_to? :rpcs
948
+ parent_rpcs = @parent_config.rpcs if defined?(@parent_config) && @parent_config&.respond_to?(:rpcs)
949
949
  Rpcs.new parent_rpcs
950
950
  end
951
951
  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
@@ -458,8 +458,9 @@ module Google
458
458
 
459
459
  # A Dataproc job for running [Presto](https://prestosql.io/) queries.
460
460
  # **IMPORTANT**: The [Dataproc Presto Optional
461
- # Component](/dataproc/docs/concepts/components/presto) must be enabled when
462
- # the cluster is created to submit a Presto job to the cluster.
461
+ # Component](https://cloud.google.com/dataproc/docs/concepts/components/presto)
462
+ # must be enabled when the cluster is created to submit a Presto job to the
463
+ # cluster.
463
464
  # @!attribute [rw] query_file_uri
464
465
  # @return [::String]
465
466
  # 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-v1beta2
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 V1beta2 API