google-cloud-talent-v4beta1 0.1.1 → 0.2.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 +4 -4
- data/lib/google/cloud/talent/v4beta1/application_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/company_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/completion/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/event_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/job_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/job_service/operations.rb +14 -10
- data/lib/google/cloud/talent/v4beta1/profile_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/tenant_service/client.rb +16 -11
- data/lib/google/cloud/talent/v4beta1/version.rb +1 -1
- metadata +32 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25f09b23d3d03ba35560787724d7b70244e3b12f8fcbefcee1ae2e873c75f564
|
4
|
+
data.tar.gz: 2d6188e275afa7fe828406ed9037993a148543eb3dbbe239d13538bbc5c5ce0b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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 =
|
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,
|
618
|
-
config_attr :credentials,
|
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,
|
624
|
-
config_attr :lib_name,
|
625
|
-
config_attr :lib_version,
|
626
|
-
config_attr(:channel_args,
|
627
|
-
config_attr :interceptors,
|
628
|
-
config_attr :timeout,
|
629
|
-
config_attr :metadata,
|
630
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
633
|
-
config_attr :credentials,
|
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,
|
639
|
-
config_attr :lib_name,
|
640
|
-
config_attr :lib_version,
|
641
|
-
config_attr(:channel_args,
|
642
|
-
config_attr :interceptors,
|
643
|
-
config_attr :timeout,
|
644
|
-
config_attr :metadata,
|
645
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
336
|
-
config_attr :credentials,
|
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,
|
342
|
-
config_attr :lib_name,
|
343
|
-
config_attr :lib_version,
|
344
|
-
config_attr(:channel_args,
|
345
|
-
config_attr :interceptors,
|
346
|
-
config_attr :timeout,
|
347
|
-
config_attr :metadata,
|
348
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
308
|
-
config_attr :credentials,
|
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,
|
314
|
-
config_attr :lib_name,
|
315
|
-
config_attr :lib_version,
|
316
|
-
config_attr(:channel_args,
|
317
|
-
config_attr :interceptors,
|
318
|
-
config_attr :timeout,
|
319
|
-
config_attr :metadata,
|
320
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
1526
|
-
config_attr :credentials,
|
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,
|
1532
|
-
config_attr :lib_name,
|
1533
|
-
config_attr :lib_version,
|
1534
|
-
config_attr(:channel_args,
|
1535
|
-
config_attr :interceptors,
|
1536
|
-
config_attr :timeout,
|
1537
|
-
config_attr :metadata,
|
1538
|
-
config_attr :retry_policy,
|
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,
|
472
|
-
config_attr :credentials,
|
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,
|
478
|
-
config_attr :lib_name,
|
479
|
-
config_attr :lib_version,
|
480
|
-
config_attr(:channel_args,
|
481
|
-
config_attr :interceptors,
|
482
|
-
config_attr :timeout,
|
483
|
-
config_attr :metadata,
|
484
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
886
|
-
config_attr :credentials,
|
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,
|
892
|
-
config_attr :lib_name,
|
893
|
-
config_attr :lib_version,
|
894
|
-
config_attr(:channel_args,
|
895
|
-
config_attr :interceptors,
|
896
|
-
config_attr :timeout,
|
897
|
-
config_attr :metadata,
|
898
|
-
config_attr :retry_policy,
|
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 =
|
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,
|
613
|
-
config_attr :credentials,
|
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,
|
619
|
-
config_attr :lib_name,
|
620
|
-
config_attr :lib_version,
|
621
|
-
config_attr(:channel_args,
|
622
|
-
config_attr :interceptors,
|
623
|
-
config_attr :timeout,
|
624
|
-
config_attr :metadata,
|
625
|
-
config_attr :retry_policy,
|
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
|
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.
|
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-
|
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.
|
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.
|
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
|