google-cloud-talent-v4beta1 0.1.1 → 0.2.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: e7e2ee2abdad67e30fe162e36f0c8a8b16e19308d4b9df2a9a4178f7f35024f7
4
- data.tar.gz: b0bc8fffcb7cae1f93414211490ebe225b7bb49c343ed88f90050ef353be3cba
3
+ metadata.gz: 25f09b23d3d03ba35560787724d7b70244e3b12f8fcbefcee1ae2e873c75f564
4
+ data.tar.gz: 2d6188e275afa7fe828406ed9037993a148543eb3dbbe239d13538bbc5c5ce0b
5
5
  SHA512:
6
- metadata.gz: 6a9632876246ed749aea2c1482c538ad66323e5467cfa543e81000777c60599b07a14acf0f0bead0126f155ad952562d8f68bd847ee20b957b0d6c7a90ce7f62
7
- data.tar.gz: 8a156244df156dfa4bbebd4575a1fbf533b7a3328cc465866c79b5a69cb4e805dac94ff518dbb8c3e6e8da7b026c47b2afaed591a777943fea713efef33e86fa
6
+ metadata.gz: 9cf558c05ad059ca8e835a170a890a0400499d7b9809e250063226876a34673c4345093a969646e553c28da315d69a11941bdbf10d5c5a734de28ecc9a0776a3
7
+ data.tar.gz: 21d6549cd757ee855413887b1cf405a74fba280ee05594a7c15a82d2edb44bf5d3d21c222a8664219eeaf27a1005eb7dc8eb316ada752cf7214b73bf98d2a725
@@ -159,7 +159,8 @@ module Google
159
159
  if credentials.is_a?(String) || credentials.is_a?(Hash)
160
160
  credentials = Credentials.new credentials, scope: @config.scope
161
161
  end
162
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
162
+ @quota_project_id = @config.quota_project
163
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
163
164
 
164
165
  @application_service_stub = ::Gapic::ServiceStub.new(
165
166
  ::Google::Cloud::Talent::V4beta1::ApplicationService::Stub,
@@ -610,24 +611,28 @@ module Google
610
611
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
611
612
  # trigger a retry.
612
613
  # @return [::Hash]
614
+ # @!attribute [rw] quota_project
615
+ # A separate project against which to charge quota.
616
+ # @return [::String]
613
617
  #
614
618
  class Configuration
615
619
  extend ::Gapic::Config
616
620
 
617
- config_attr :endpoint, "jobs.googleapis.com", String
618
- config_attr :credentials, nil do |value|
621
+ config_attr :endpoint, "jobs.googleapis.com", ::String
622
+ config_attr :credentials, nil do |value|
619
623
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
620
624
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
621
625
  allowed.any? { |klass| klass === value }
622
626
  end
623
- config_attr :scope, nil, ::String, ::Array, nil
624
- config_attr :lib_name, nil, ::String, nil
625
- config_attr :lib_version, nil, ::String, nil
626
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
627
- config_attr :interceptors, nil, ::Array, nil
628
- config_attr :timeout, nil, ::Numeric, nil
629
- config_attr :metadata, nil, ::Hash, nil
630
- config_attr :retry_policy, nil, ::Hash, Proc, nil
627
+ config_attr :scope, nil, ::String, ::Array, nil
628
+ config_attr :lib_name, nil, ::String, nil
629
+ config_attr :lib_version, nil, ::String, nil
630
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
631
+ config_attr :interceptors, nil, ::Array, nil
632
+ config_attr :timeout, nil, ::Numeric, nil
633
+ config_attr :metadata, nil, ::Hash, nil
634
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
635
+ config_attr :quota_project, nil, ::String, nil
631
636
 
632
637
  # @private
633
638
  def initialize parent_config = nil
@@ -158,7 +158,8 @@ module Google
158
158
  if credentials.is_a?(String) || credentials.is_a?(Hash)
159
159
  credentials = Credentials.new credentials, scope: @config.scope
160
160
  end
161
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
161
+ @quota_project_id = @config.quota_project
162
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
162
163
 
163
164
  @company_service_stub = ::Gapic::ServiceStub.new(
164
165
  ::Google::Cloud::Talent::V4beta1::CompanyService::Stub,
@@ -625,24 +626,28 @@ module Google
625
626
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
626
627
  # trigger a retry.
627
628
  # @return [::Hash]
629
+ # @!attribute [rw] quota_project
630
+ # A separate project against which to charge quota.
631
+ # @return [::String]
628
632
  #
629
633
  class Configuration
630
634
  extend ::Gapic::Config
631
635
 
632
- config_attr :endpoint, "jobs.googleapis.com", String
633
- config_attr :credentials, nil do |value|
636
+ config_attr :endpoint, "jobs.googleapis.com", ::String
637
+ config_attr :credentials, nil do |value|
634
638
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
635
639
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
636
640
  allowed.any? { |klass| klass === value }
637
641
  end
638
- config_attr :scope, nil, ::String, ::Array, nil
639
- config_attr :lib_name, nil, ::String, nil
640
- config_attr :lib_version, nil, ::String, nil
641
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
642
- config_attr :interceptors, nil, ::Array, nil
643
- config_attr :timeout, nil, ::Numeric, nil
644
- config_attr :metadata, nil, ::Hash, nil
645
- config_attr :retry_policy, nil, ::Hash, Proc, nil
642
+ config_attr :scope, nil, ::String, ::Array, nil
643
+ config_attr :lib_name, nil, ::String, nil
644
+ config_attr :lib_version, nil, ::String, nil
645
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
646
+ config_attr :interceptors, nil, ::Array, nil
647
+ config_attr :timeout, nil, ::Numeric, nil
648
+ config_attr :metadata, nil, ::Hash, nil
649
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
650
+ config_attr :quota_project, nil, ::String, nil
646
651
 
647
652
  # @private
648
653
  def initialize parent_config = nil
@@ -138,7 +138,8 @@ module Google
138
138
  if credentials.is_a?(String) || credentials.is_a?(Hash)
139
139
  credentials = Credentials.new credentials, scope: @config.scope
140
140
  end
141
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
141
+ @quota_project_id = @config.quota_project
142
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
142
143
 
143
144
  @completion_stub = ::Gapic::ServiceStub.new(
144
145
  ::Google::Cloud::Talent::V4beta1::Completion::Stub,
@@ -328,24 +329,28 @@ module Google
328
329
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
329
330
  # trigger a retry.
330
331
  # @return [::Hash]
332
+ # @!attribute [rw] quota_project
333
+ # A separate project against which to charge quota.
334
+ # @return [::String]
331
335
  #
332
336
  class Configuration
333
337
  extend ::Gapic::Config
334
338
 
335
- config_attr :endpoint, "jobs.googleapis.com", String
336
- config_attr :credentials, nil do |value|
339
+ config_attr :endpoint, "jobs.googleapis.com", ::String
340
+ config_attr :credentials, nil do |value|
337
341
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
338
342
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
339
343
  allowed.any? { |klass| klass === value }
340
344
  end
341
- config_attr :scope, nil, ::String, ::Array, nil
342
- config_attr :lib_name, nil, ::String, nil
343
- config_attr :lib_version, nil, ::String, nil
344
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
345
- config_attr :interceptors, nil, ::Array, nil
346
- config_attr :timeout, nil, ::Numeric, nil
347
- config_attr :metadata, nil, ::Hash, nil
348
- config_attr :retry_policy, nil, ::Hash, Proc, nil
345
+ config_attr :scope, nil, ::String, ::Array, nil
346
+ config_attr :lib_name, nil, ::String, nil
347
+ config_attr :lib_version, nil, ::String, nil
348
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
349
+ config_attr :interceptors, nil, ::Array, nil
350
+ config_attr :timeout, nil, ::Numeric, nil
351
+ config_attr :metadata, nil, ::Hash, nil
352
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
353
+ config_attr :quota_project, nil, ::String, nil
349
354
 
350
355
  # @private
351
356
  def initialize parent_config = nil
@@ -132,7 +132,8 @@ module Google
132
132
  if credentials.is_a?(String) || credentials.is_a?(Hash)
133
133
  credentials = Credentials.new credentials, scope: @config.scope
134
134
  end
135
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
135
+ @quota_project_id = @config.quota_project
136
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
136
137
 
137
138
  @event_service_stub = ::Gapic::ServiceStub.new(
138
139
  ::Google::Cloud::Talent::V4beta1::EventService::Stub,
@@ -300,24 +301,28 @@ module Google
300
301
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
301
302
  # trigger a retry.
302
303
  # @return [::Hash]
304
+ # @!attribute [rw] quota_project
305
+ # A separate project against which to charge quota.
306
+ # @return [::String]
303
307
  #
304
308
  class Configuration
305
309
  extend ::Gapic::Config
306
310
 
307
- config_attr :endpoint, "jobs.googleapis.com", String
308
- config_attr :credentials, nil do |value|
311
+ config_attr :endpoint, "jobs.googleapis.com", ::String
312
+ config_attr :credentials, nil do |value|
309
313
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
310
314
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
311
315
  allowed.any? { |klass| klass === value }
312
316
  end
313
- config_attr :scope, nil, ::String, ::Array, nil
314
- config_attr :lib_name, nil, ::String, nil
315
- config_attr :lib_version, nil, ::String, nil
316
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
317
- config_attr :interceptors, nil, ::Array, nil
318
- config_attr :timeout, nil, ::Numeric, nil
319
- config_attr :metadata, nil, ::Hash, nil
320
- config_attr :retry_policy, nil, ::Hash, Proc, nil
317
+ config_attr :scope, nil, ::String, ::Array, nil
318
+ config_attr :lib_name, nil, ::String, nil
319
+ config_attr :lib_version, nil, ::String, nil
320
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
321
+ config_attr :interceptors, nil, ::Array, nil
322
+ config_attr :timeout, nil, ::Numeric, nil
323
+ config_attr :metadata, nil, ::Hash, nil
324
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
325
+ config_attr :quota_project, nil, ::String, nil
321
326
 
322
327
  # @private
323
328
  def initialize parent_config = nil
@@ -168,7 +168,8 @@ module Google
168
168
  if credentials.is_a?(String) || credentials.is_a?(Hash)
169
169
  credentials = Credentials.new credentials, scope: @config.scope
170
170
  end
171
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
171
+ @quota_project_id = @config.quota_project
172
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
172
173
 
173
174
  @operations_client = Operations.new do |config|
174
175
  config.credentials = credentials
@@ -1518,24 +1519,28 @@ module Google
1518
1519
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
1519
1520
  # trigger a retry.
1520
1521
  # @return [::Hash]
1522
+ # @!attribute [rw] quota_project
1523
+ # A separate project against which to charge quota.
1524
+ # @return [::String]
1521
1525
  #
1522
1526
  class Configuration
1523
1527
  extend ::Gapic::Config
1524
1528
 
1525
- config_attr :endpoint, "jobs.googleapis.com", String
1526
- config_attr :credentials, nil do |value|
1529
+ config_attr :endpoint, "jobs.googleapis.com", ::String
1530
+ config_attr :credentials, nil do |value|
1527
1531
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
1528
1532
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
1529
1533
  allowed.any? { |klass| klass === value }
1530
1534
  end
1531
- config_attr :scope, nil, ::String, ::Array, nil
1532
- config_attr :lib_name, nil, ::String, nil
1533
- config_attr :lib_version, nil, ::String, nil
1534
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
1535
- config_attr :interceptors, nil, ::Array, nil
1536
- config_attr :timeout, nil, ::Numeric, nil
1537
- config_attr :metadata, nil, ::Hash, nil
1538
- config_attr :retry_policy, nil, ::Hash, Proc, nil
1535
+ config_attr :scope, nil, ::String, ::Array, nil
1536
+ config_attr :lib_name, nil, ::String, nil
1537
+ config_attr :lib_version, nil, ::String, nil
1538
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
1539
+ config_attr :interceptors, nil, ::Array, nil
1540
+ config_attr :timeout, nil, ::Numeric, nil
1541
+ config_attr :metadata, nil, ::Hash, nil
1542
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1543
+ config_attr :quota_project, nil, ::String, nil
1539
1544
 
1540
1545
  # @private
1541
1546
  def initialize parent_config = nil
@@ -464,24 +464,28 @@ module Google
464
464
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
465
465
  # trigger a retry.
466
466
  # @return [::Hash]
467
+ # @!attribute [rw] quota_project
468
+ # A separate project against which to charge quota.
469
+ # @return [::String]
467
470
  #
468
471
  class Configuration
469
472
  extend ::Gapic::Config
470
473
 
471
- config_attr :endpoint, "jobs.googleapis.com", String
472
- config_attr :credentials, nil do |value|
474
+ config_attr :endpoint, "jobs.googleapis.com", ::String
475
+ config_attr :credentials, nil do |value|
473
476
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
474
477
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
475
478
  allowed.any? { |klass| klass === value }
476
479
  end
477
- config_attr :scope, nil, ::String, ::Array, nil
478
- config_attr :lib_name, nil, ::String, nil
479
- config_attr :lib_version, nil, ::String, nil
480
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
481
- config_attr :interceptors, nil, ::Array, nil
482
- config_attr :timeout, nil, ::Numeric, nil
483
- config_attr :metadata, nil, ::Hash, nil
484
- config_attr :retry_policy, nil, ::Hash, Proc, nil
480
+ config_attr :scope, nil, ::String, ::Array, nil
481
+ config_attr :lib_name, nil, ::String, nil
482
+ config_attr :lib_version, nil, ::String, nil
483
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
484
+ config_attr :interceptors, nil, ::Array, nil
485
+ config_attr :timeout, nil, ::Numeric, nil
486
+ config_attr :metadata, nil, ::Hash, nil
487
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
488
+ config_attr :quota_project, nil, ::String, nil
485
489
 
486
490
  # @private
487
491
  def initialize parent_config = nil
@@ -161,7 +161,8 @@ module Google
161
161
  if credentials.is_a?(String) || credentials.is_a?(Hash)
162
162
  credentials = Credentials.new credentials, scope: @config.scope
163
163
  end
164
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
164
+ @quota_project_id = @config.quota_project
165
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
165
166
 
166
167
  @profile_service_stub = ::Gapic::ServiceStub.new(
167
168
  ::Google::Cloud::Talent::V4beta1::ProfileService::Stub,
@@ -878,24 +879,28 @@ module Google
878
879
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
879
880
  # trigger a retry.
880
881
  # @return [::Hash]
882
+ # @!attribute [rw] quota_project
883
+ # A separate project against which to charge quota.
884
+ # @return [::String]
881
885
  #
882
886
  class Configuration
883
887
  extend ::Gapic::Config
884
888
 
885
- config_attr :endpoint, "jobs.googleapis.com", String
886
- config_attr :credentials, nil do |value|
889
+ config_attr :endpoint, "jobs.googleapis.com", ::String
890
+ config_attr :credentials, nil do |value|
887
891
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
888
892
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
889
893
  allowed.any? { |klass| klass === value }
890
894
  end
891
- config_attr :scope, nil, ::String, ::Array, nil
892
- config_attr :lib_name, nil, ::String, nil
893
- config_attr :lib_version, nil, ::String, nil
894
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
895
- config_attr :interceptors, nil, ::Array, nil
896
- config_attr :timeout, nil, ::Numeric, nil
897
- config_attr :metadata, nil, ::Hash, nil
898
- config_attr :retry_policy, nil, ::Hash, Proc, nil
895
+ config_attr :scope, nil, ::String, ::Array, nil
896
+ config_attr :lib_name, nil, ::String, nil
897
+ config_attr :lib_version, nil, ::String, nil
898
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
899
+ config_attr :interceptors, nil, ::Array, nil
900
+ config_attr :timeout, nil, ::Numeric, nil
901
+ config_attr :metadata, nil, ::Hash, nil
902
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
903
+ config_attr :quota_project, nil, ::String, nil
899
904
 
900
905
  # @private
901
906
  def initialize parent_config = nil
@@ -158,7 +158,8 @@ module Google
158
158
  if credentials.is_a?(String) || credentials.is_a?(Hash)
159
159
  credentials = Credentials.new credentials, scope: @config.scope
160
160
  end
161
- @quota_project_id = credentials.respond_to?(:quota_project_id) ? credentials.quota_project_id : nil
161
+ @quota_project_id = @config.quota_project
162
+ @quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
162
163
 
163
164
  @tenant_service_stub = ::Gapic::ServiceStub.new(
164
165
  ::Google::Cloud::Talent::V4beta1::TenantService::Stub,
@@ -605,24 +606,28 @@ module Google
605
606
  # * `:retry_codes` (*type:* `Array<String>`) - The error codes that should
606
607
  # trigger a retry.
607
608
  # @return [::Hash]
609
+ # @!attribute [rw] quota_project
610
+ # A separate project against which to charge quota.
611
+ # @return [::String]
608
612
  #
609
613
  class Configuration
610
614
  extend ::Gapic::Config
611
615
 
612
- config_attr :endpoint, "jobs.googleapis.com", String
613
- config_attr :credentials, nil do |value|
616
+ config_attr :endpoint, "jobs.googleapis.com", ::String
617
+ config_attr :credentials, nil do |value|
614
618
  allowed = [::String, ::Hash, ::Proc, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
615
619
  allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
616
620
  allowed.any? { |klass| klass === value }
617
621
  end
618
- config_attr :scope, nil, ::String, ::Array, nil
619
- config_attr :lib_name, nil, ::String, nil
620
- config_attr :lib_version, nil, ::String, nil
621
- config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
622
- config_attr :interceptors, nil, ::Array, nil
623
- config_attr :timeout, nil, ::Numeric, nil
624
- config_attr :metadata, nil, ::Hash, nil
625
- config_attr :retry_policy, nil, ::Hash, Proc, nil
622
+ config_attr :scope, nil, ::String, ::Array, nil
623
+ config_attr :lib_name, nil, ::String, nil
624
+ config_attr :lib_version, nil, ::String, nil
625
+ config_attr(:channel_args, { "grpc.service_config_disable_resolution"=>1 }, ::Hash, nil)
626
+ config_attr :interceptors, nil, ::Array, nil
627
+ config_attr :timeout, nil, ::Numeric, nil
628
+ config_attr :metadata, nil, ::Hash, nil
629
+ config_attr :retry_policy, nil, ::Hash, ::Proc, nil
630
+ config_attr :quota_project, nil, ::String, nil
626
631
 
627
632
  # @private
628
633
  def initialize parent_config = nil
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Talent
23
23
  module V4beta1
24
- VERSION = "0.1.1"
24
+ VERSION = "0.2.0"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-talent-v4beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.2.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: 2020-05-05 00:00:00.000000000 Z
11
+ date: 2020-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -58,14 +58,42 @@ dependencies:
58
58
  requirements:
59
59
  - - "~>"
60
60
  - !ruby/object:Gem::Version
61
- version: '5.10'
61
+ version: '5.14'
62
62
  type: :development
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
- version: '5.10'
68
+ version: '5.14'
69
+ - !ruby/object:Gem::Dependency
70
+ name: minitest-focus
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: '1.1'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: '1.1'
83
+ - !ruby/object:Gem::Dependency
84
+ name: minitest-rg
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - "~>"
88
+ - !ruby/object:Gem::Version
89
+ version: '5.2'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - "~>"
95
+ - !ruby/object:Gem::Version
96
+ version: '5.2'
69
97
  - !ruby/object:Gem::Dependency
70
98
  name: rake
71
99
  requirement: !ruby/object:Gem::Requirement