google-cloud-talent-v4 0.10.1 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/AUTHENTICATION.md +72 -101
- data/lib/google/cloud/talent/v4/company_service/client.rb +41 -9
- data/lib/google/cloud/talent/v4/company_service/rest/client.rb +117 -7
- data/lib/google/cloud/talent/v4/company_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/completion/client.rb +41 -9
- data/lib/google/cloud/talent/v4/completion/rest/client.rb +49 -7
- data/lib/google/cloud/talent/v4/completion/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/event_service/client.rb +41 -9
- data/lib/google/cloud/talent/v4/event_service/rest/client.rb +49 -7
- data/lib/google/cloud/talent/v4/event_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/job_service/client.rb +42 -9
- data/lib/google/cloud/talent/v4/job_service/operations.rb +38 -7
- data/lib/google/cloud/talent/v4/job_service/rest/client.rb +219 -7
- data/lib/google/cloud/talent/v4/job_service/rest/operations.rb +108 -8
- data/lib/google/cloud/talent/v4/job_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/tenant_service/client.rb +41 -9
- data/lib/google/cloud/talent/v4/tenant_service/rest/client.rb +117 -7
- data/lib/google/cloud/talent/v4/tenant_service/rest/service_stub.rb +14 -2
- data/lib/google/cloud/talent/v4/version.rb +1 -1
- data/proto_docs/google/api/client.rb +14 -0
- data/proto_docs/google/api/field_behavior.rb +14 -0
- data/proto_docs/google/cloud/talent/v4/common.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/company.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/job.rb +1 -0
- data/proto_docs/google/cloud/talent/v4/job_service.rb +1 -0
- metadata +5 -5
@@ -30,6 +30,9 @@ module Google
|
|
30
30
|
# A service that handles tenant management, including CRUD and enumeration.
|
31
31
|
#
|
32
32
|
class Client
|
33
|
+
# @private
|
34
|
+
DEFAULT_ENDPOINT_TEMPLATE = "jobs.$UNIVERSE_DOMAIN$"
|
35
|
+
|
33
36
|
include Paths
|
34
37
|
|
35
38
|
# @private
|
@@ -109,6 +112,15 @@ module Google
|
|
109
112
|
@config
|
110
113
|
end
|
111
114
|
|
115
|
+
##
|
116
|
+
# The effective universe domain
|
117
|
+
#
|
118
|
+
# @return [String]
|
119
|
+
#
|
120
|
+
def universe_domain
|
121
|
+
@tenant_service_stub.universe_domain
|
122
|
+
end
|
123
|
+
|
112
124
|
##
|
113
125
|
# Create a new TenantService client object.
|
114
126
|
#
|
@@ -142,8 +154,9 @@ module Google
|
|
142
154
|
credentials = @config.credentials
|
143
155
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
144
156
|
# but only if the default endpoint does not have a region prefix.
|
145
|
-
enable_self_signed_jwt = @config.endpoint
|
146
|
-
|
157
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
158
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
159
|
+
!@config.endpoint.split(".").first.include?("-"))
|
147
160
|
credentials ||= Credentials.default scope: @config.scope,
|
148
161
|
enable_self_signed_jwt: enable_self_signed_jwt
|
149
162
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -154,10 +167,13 @@ module Google
|
|
154
167
|
|
155
168
|
@tenant_service_stub = ::Gapic::ServiceStub.new(
|
156
169
|
::Google::Cloud::Talent::V4::TenantService::Stub,
|
157
|
-
credentials:
|
158
|
-
endpoint:
|
170
|
+
credentials: credentials,
|
171
|
+
endpoint: @config.endpoint,
|
172
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
173
|
+
universe_domain: @config.universe_domain,
|
159
174
|
channel_args: @config.channel_args,
|
160
|
-
interceptors: @config.interceptors
|
175
|
+
interceptors: @config.interceptors,
|
176
|
+
channel_pool_config: @config.channel_pool
|
161
177
|
)
|
162
178
|
end
|
163
179
|
|
@@ -653,9 +669,9 @@ module Google
|
|
653
669
|
# end
|
654
670
|
#
|
655
671
|
# @!attribute [rw] endpoint
|
656
|
-
#
|
657
|
-
#
|
658
|
-
# @return [::String]
|
672
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
673
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
674
|
+
# @return [::String,nil]
|
659
675
|
# @!attribute [rw] credentials
|
660
676
|
# Credentials to send with calls. You may provide any of the following types:
|
661
677
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -701,13 +717,20 @@ module Google
|
|
701
717
|
# @!attribute [rw] quota_project
|
702
718
|
# A separate project against which to charge quota.
|
703
719
|
# @return [::String]
|
720
|
+
# @!attribute [rw] universe_domain
|
721
|
+
# The universe domain within which to make requests. This determines the
|
722
|
+
# default endpoint URL. The default value of nil uses the environment
|
723
|
+
# universe (usually the default "googleapis.com" universe).
|
724
|
+
# @return [::String,nil]
|
704
725
|
#
|
705
726
|
class Configuration
|
706
727
|
extend ::Gapic::Config
|
707
728
|
|
729
|
+
# @private
|
730
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
708
731
|
DEFAULT_ENDPOINT = "jobs.googleapis.com"
|
709
732
|
|
710
|
-
config_attr :endpoint,
|
733
|
+
config_attr :endpoint, nil, ::String, nil
|
711
734
|
config_attr :credentials, nil do |value|
|
712
735
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
713
736
|
allowed += [::GRPC::Core::Channel, ::GRPC::Core::ChannelCredentials] if defined? ::GRPC
|
@@ -722,6 +745,7 @@ module Google
|
|
722
745
|
config_attr :metadata, nil, ::Hash, nil
|
723
746
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
724
747
|
config_attr :quota_project, nil, ::String, nil
|
748
|
+
config_attr :universe_domain, nil, ::String, nil
|
725
749
|
|
726
750
|
# @private
|
727
751
|
def initialize parent_config = nil
|
@@ -742,6 +766,14 @@ module Google
|
|
742
766
|
end
|
743
767
|
end
|
744
768
|
|
769
|
+
##
|
770
|
+
# Configuration for the channel pool
|
771
|
+
# @return [::Gapic::ServiceStub::ChannelPool::Configuration]
|
772
|
+
#
|
773
|
+
def channel_pool
|
774
|
+
@channel_pool ||= ::Gapic::ServiceStub::ChannelPool::Configuration.new
|
775
|
+
end
|
776
|
+
|
745
777
|
##
|
746
778
|
# Configuration RPC class for the TenantService API.
|
747
779
|
#
|
@@ -32,6 +32,9 @@ module Google
|
|
32
32
|
# A service that handles tenant management, including CRUD and enumeration.
|
33
33
|
#
|
34
34
|
class Client
|
35
|
+
# @private
|
36
|
+
DEFAULT_ENDPOINT_TEMPLATE = "jobs.$UNIVERSE_DOMAIN$"
|
37
|
+
|
35
38
|
include Paths
|
36
39
|
|
37
40
|
# @private
|
@@ -111,6 +114,15 @@ module Google
|
|
111
114
|
@config
|
112
115
|
end
|
113
116
|
|
117
|
+
##
|
118
|
+
# The effective universe domain
|
119
|
+
#
|
120
|
+
# @return [String]
|
121
|
+
#
|
122
|
+
def universe_domain
|
123
|
+
@tenant_service_stub.universe_domain
|
124
|
+
end
|
125
|
+
|
114
126
|
##
|
115
127
|
# Create a new TenantService REST client object.
|
116
128
|
#
|
@@ -138,8 +150,9 @@ module Google
|
|
138
150
|
credentials = @config.credentials
|
139
151
|
# Use self-signed JWT if the endpoint is unchanged from default,
|
140
152
|
# but only if the default endpoint does not have a region prefix.
|
141
|
-
enable_self_signed_jwt = @config.endpoint
|
142
|
-
|
153
|
+
enable_self_signed_jwt = @config.endpoint.nil? ||
|
154
|
+
(@config.endpoint == Configuration::DEFAULT_ENDPOINT &&
|
155
|
+
!@config.endpoint.split(".").first.include?("-"))
|
143
156
|
credentials ||= Credentials.default scope: @config.scope,
|
144
157
|
enable_self_signed_jwt: enable_self_signed_jwt
|
145
158
|
if credentials.is_a?(::String) || credentials.is_a?(::Hash)
|
@@ -149,7 +162,12 @@ module Google
|
|
149
162
|
@quota_project_id = @config.quota_project
|
150
163
|
@quota_project_id ||= credentials.quota_project_id if credentials.respond_to? :quota_project_id
|
151
164
|
|
152
|
-
@tenant_service_stub = ::Google::Cloud::Talent::V4::TenantService::Rest::ServiceStub.new
|
165
|
+
@tenant_service_stub = ::Google::Cloud::Talent::V4::TenantService::Rest::ServiceStub.new(
|
166
|
+
endpoint: @config.endpoint,
|
167
|
+
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
168
|
+
universe_domain: @config.universe_domain,
|
169
|
+
credentials: credentials
|
170
|
+
)
|
153
171
|
end
|
154
172
|
|
155
173
|
# Service calls
|
@@ -186,6 +204,22 @@ module Google
|
|
186
204
|
# @return [::Google::Cloud::Talent::V4::Tenant]
|
187
205
|
#
|
188
206
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
207
|
+
#
|
208
|
+
# @example Basic example
|
209
|
+
# require "google/cloud/talent/v4"
|
210
|
+
#
|
211
|
+
# # Create a client object. The client can be reused for multiple calls.
|
212
|
+
# client = Google::Cloud::Talent::V4::TenantService::Rest::Client.new
|
213
|
+
#
|
214
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
215
|
+
# request = Google::Cloud::Talent::V4::CreateTenantRequest.new
|
216
|
+
#
|
217
|
+
# # Call the create_tenant method.
|
218
|
+
# result = client.create_tenant request
|
219
|
+
#
|
220
|
+
# # The returned object is of type Google::Cloud::Talent::V4::Tenant.
|
221
|
+
# p result
|
222
|
+
#
|
189
223
|
def create_tenant request, options = nil
|
190
224
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
191
225
|
|
@@ -251,6 +285,22 @@ module Google
|
|
251
285
|
# @return [::Google::Cloud::Talent::V4::Tenant]
|
252
286
|
#
|
253
287
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
288
|
+
#
|
289
|
+
# @example Basic example
|
290
|
+
# require "google/cloud/talent/v4"
|
291
|
+
#
|
292
|
+
# # Create a client object. The client can be reused for multiple calls.
|
293
|
+
# client = Google::Cloud::Talent::V4::TenantService::Rest::Client.new
|
294
|
+
#
|
295
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
296
|
+
# request = Google::Cloud::Talent::V4::GetTenantRequest.new
|
297
|
+
#
|
298
|
+
# # Call the get_tenant method.
|
299
|
+
# result = client.get_tenant request
|
300
|
+
#
|
301
|
+
# # The returned object is of type Google::Cloud::Talent::V4::Tenant.
|
302
|
+
# p result
|
303
|
+
#
|
254
304
|
def get_tenant request, options = nil
|
255
305
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
256
306
|
|
@@ -324,6 +374,22 @@ module Google
|
|
324
374
|
# @return [::Google::Cloud::Talent::V4::Tenant]
|
325
375
|
#
|
326
376
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
377
|
+
#
|
378
|
+
# @example Basic example
|
379
|
+
# require "google/cloud/talent/v4"
|
380
|
+
#
|
381
|
+
# # Create a client object. The client can be reused for multiple calls.
|
382
|
+
# client = Google::Cloud::Talent::V4::TenantService::Rest::Client.new
|
383
|
+
#
|
384
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
385
|
+
# request = Google::Cloud::Talent::V4::UpdateTenantRequest.new
|
386
|
+
#
|
387
|
+
# # Call the update_tenant method.
|
388
|
+
# result = client.update_tenant request
|
389
|
+
#
|
390
|
+
# # The returned object is of type Google::Cloud::Talent::V4::Tenant.
|
391
|
+
# p result
|
392
|
+
#
|
327
393
|
def update_tenant request, options = nil
|
328
394
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
329
395
|
|
@@ -389,6 +455,22 @@ module Google
|
|
389
455
|
# @return [::Google::Protobuf::Empty]
|
390
456
|
#
|
391
457
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
458
|
+
#
|
459
|
+
# @example Basic example
|
460
|
+
# require "google/cloud/talent/v4"
|
461
|
+
#
|
462
|
+
# # Create a client object. The client can be reused for multiple calls.
|
463
|
+
# client = Google::Cloud::Talent::V4::TenantService::Rest::Client.new
|
464
|
+
#
|
465
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
466
|
+
# request = Google::Cloud::Talent::V4::DeleteTenantRequest.new
|
467
|
+
#
|
468
|
+
# # Call the delete_tenant method.
|
469
|
+
# result = client.delete_tenant request
|
470
|
+
#
|
471
|
+
# # The returned object is of type Google::Protobuf::Empty.
|
472
|
+
# p result
|
473
|
+
#
|
392
474
|
def delete_tenant request, options = nil
|
393
475
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
394
476
|
|
@@ -459,6 +541,26 @@ module Google
|
|
459
541
|
# @return [::Gapic::Rest::PagedEnumerable<::Google::Cloud::Talent::V4::Tenant>]
|
460
542
|
#
|
461
543
|
# @raise [::Google::Cloud::Error] if the REST call is aborted.
|
544
|
+
#
|
545
|
+
# @example Basic example
|
546
|
+
# require "google/cloud/talent/v4"
|
547
|
+
#
|
548
|
+
# # Create a client object. The client can be reused for multiple calls.
|
549
|
+
# client = Google::Cloud::Talent::V4::TenantService::Rest::Client.new
|
550
|
+
#
|
551
|
+
# # Create a request. To set request fields, pass in keyword arguments.
|
552
|
+
# request = Google::Cloud::Talent::V4::ListTenantsRequest.new
|
553
|
+
#
|
554
|
+
# # Call the list_tenants method.
|
555
|
+
# result = client.list_tenants request
|
556
|
+
#
|
557
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
558
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
559
|
+
# result.each do |item|
|
560
|
+
# # Each element is of type ::Google::Cloud::Talent::V4::Tenant.
|
561
|
+
# p item
|
562
|
+
# end
|
563
|
+
#
|
462
564
|
def list_tenants request, options = nil
|
463
565
|
raise ::ArgumentError, "request must be provided" if request.nil?
|
464
566
|
|
@@ -525,9 +627,9 @@ module Google
|
|
525
627
|
# end
|
526
628
|
#
|
527
629
|
# @!attribute [rw] endpoint
|
528
|
-
#
|
529
|
-
#
|
530
|
-
# @return [::String]
|
630
|
+
# A custom service endpoint, as a hostname or hostname:port. The default is
|
631
|
+
# nil, indicating to use the default endpoint in the current universe domain.
|
632
|
+
# @return [::String,nil]
|
531
633
|
# @!attribute [rw] credentials
|
532
634
|
# Credentials to send with calls. You may provide any of the following types:
|
533
635
|
# * (`String`) The path to a service account key file in JSON format
|
@@ -564,13 +666,20 @@ module Google
|
|
564
666
|
# @!attribute [rw] quota_project
|
565
667
|
# A separate project against which to charge quota.
|
566
668
|
# @return [::String]
|
669
|
+
# @!attribute [rw] universe_domain
|
670
|
+
# The universe domain within which to make requests. This determines the
|
671
|
+
# default endpoint URL. The default value of nil uses the environment
|
672
|
+
# universe (usually the default "googleapis.com" universe).
|
673
|
+
# @return [::String,nil]
|
567
674
|
#
|
568
675
|
class Configuration
|
569
676
|
extend ::Gapic::Config
|
570
677
|
|
678
|
+
# @private
|
679
|
+
# The endpoint specific to the default "googleapis.com" universe. Deprecated.
|
571
680
|
DEFAULT_ENDPOINT = "jobs.googleapis.com"
|
572
681
|
|
573
|
-
config_attr :endpoint,
|
682
|
+
config_attr :endpoint, nil, ::String, nil
|
574
683
|
config_attr :credentials, nil do |value|
|
575
684
|
allowed = [::String, ::Hash, ::Proc, ::Symbol, ::Google::Auth::Credentials, ::Signet::OAuth2::Client, nil]
|
576
685
|
allowed.any? { |klass| klass === value }
|
@@ -582,6 +691,7 @@ module Google
|
|
582
691
|
config_attr :metadata, nil, ::Hash, nil
|
583
692
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
584
693
|
config_attr :quota_project, nil, ::String, nil
|
694
|
+
config_attr :universe_domain, nil, ::String, nil
|
585
695
|
|
586
696
|
# @private
|
587
697
|
def initialize parent_config = nil
|
@@ -30,16 +30,28 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
def initialize endpoint:, credentials:
|
33
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
|
34
34
|
# These require statements are intentionally placed here to initialize
|
35
35
|
# the REST modules only when it's required.
|
36
36
|
require "gapic/rest"
|
37
37
|
|
38
|
-
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
38
|
+
@client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
|
39
|
+
endpoint_template: endpoint_template,
|
40
|
+
universe_domain: universe_domain,
|
41
|
+
credentials: credentials,
|
39
42
|
numeric_enums: true,
|
40
43
|
raise_faraday_errors: false
|
41
44
|
end
|
42
45
|
|
46
|
+
##
|
47
|
+
# The effective universe domain
|
48
|
+
#
|
49
|
+
# @return [String]
|
50
|
+
#
|
51
|
+
def universe_domain
|
52
|
+
@client_stub.universe_domain
|
53
|
+
end
|
54
|
+
|
43
55
|
##
|
44
56
|
# Baseline implementation for the create_tenant REST call
|
45
57
|
#
|
@@ -21,6 +21,7 @@ module Google
|
|
21
21
|
module Api
|
22
22
|
# Required information for every language.
|
23
23
|
# @!attribute [rw] reference_docs_uri
|
24
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
24
25
|
# @return [::String]
|
25
26
|
# Link to automatically generated reference documentation. Example:
|
26
27
|
# https://cloud.google.com/nodejs/docs/reference/asset/latest
|
@@ -304,6 +305,19 @@ module Google
|
|
304
305
|
# seconds: 360 # 6 minutes
|
305
306
|
# total_poll_timeout:
|
306
307
|
# seconds: 54000 # 90 minutes
|
308
|
+
# @!attribute [rw] auto_populated_fields
|
309
|
+
# @return [::Array<::String>]
|
310
|
+
# List of top-level fields of the request message, that should be
|
311
|
+
# automatically populated by the client libraries based on their
|
312
|
+
# (google.api.field_info).format. Currently supported format: UUID4.
|
313
|
+
#
|
314
|
+
# Example of a YAML configuration:
|
315
|
+
#
|
316
|
+
# publishing:
|
317
|
+
# method_settings:
|
318
|
+
# - selector: google.example.v1.ExampleService.CreateExample
|
319
|
+
# auto_populated_fields:
|
320
|
+
# - request_id
|
307
321
|
class MethodSettings
|
308
322
|
include ::Google::Protobuf::MessageExts
|
309
323
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -66,6 +66,20 @@ module Google
|
|
66
66
|
# a non-empty value will be returned. The user will not be aware of what
|
67
67
|
# non-empty value to expect.
|
68
68
|
NON_EMPTY_DEFAULT = 7
|
69
|
+
|
70
|
+
# Denotes that the field in a resource (a message annotated with
|
71
|
+
# google.api.resource) is used in the resource name to uniquely identify the
|
72
|
+
# resource. For AIP-compliant APIs, this should only be applied to the
|
73
|
+
# `name` field on the resource.
|
74
|
+
#
|
75
|
+
# This behavior should not be applied to references to other resources within
|
76
|
+
# the message.
|
77
|
+
#
|
78
|
+
# The identifier field of resources often have different field behavior
|
79
|
+
# depending on the request it is embedded in (e.g. for Create methods name
|
80
|
+
# is optional and unused, while for Update methods it is required). Instead
|
81
|
+
# of method-specific annotations, only `IDENTIFIER` is required.
|
82
|
+
IDENTIFIER = 8
|
69
83
|
end
|
70
84
|
end
|
71
85
|
end
|
@@ -894,6 +894,7 @@ module Google
|
|
894
894
|
# Deprecated. All resources are only visible to the owner.
|
895
895
|
#
|
896
896
|
# An enum that represents who has view access to the resource.
|
897
|
+
# @deprecated This enum is deprecated and may be removed in the next major version update.
|
897
898
|
module Visibility
|
898
899
|
# Default value.
|
899
900
|
VISIBILITY_UNSPECIFIED = 0
|
@@ -80,6 +80,7 @@ module Google
|
|
80
80
|
# @return [::String]
|
81
81
|
# A URI that hosts the employer's company logo.
|
82
82
|
# @!attribute [rw] keyword_searchable_job_custom_attributes
|
83
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
83
84
|
# @return [::Array<::String>]
|
84
85
|
# This field is deprecated. Please set the searchability of the custom
|
85
86
|
# attribute in the
|
@@ -211,6 +211,7 @@ module Google
|
|
211
211
|
# setting job {::Google::Cloud::Talent::V4::Job#addresses Job.addresses} to the
|
212
212
|
# same location level as this field is strongly recommended.
|
213
213
|
# @!attribute [rw] visibility
|
214
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
214
215
|
# @return [::Google::Cloud::Talent::V4::Visibility]
|
215
216
|
# Deprecated. The job is only visible to the owner.
|
216
217
|
#
|
@@ -400,6 +400,7 @@ module Google
|
|
400
400
|
# Controls over how job documents get ranked on top of existing relevance
|
401
401
|
# score (determined by API algorithm).
|
402
402
|
# @!attribute [rw] disable_keyword_match
|
403
|
+
# @deprecated This field is deprecated and may be removed in the next major version update.
|
403
404
|
# @return [::Boolean]
|
404
405
|
# This field is deprecated. Please use
|
405
406
|
# {::Google::Cloud::Talent::V4::SearchJobsRequest#keyword_match_mode SearchJobsRequest.keyword_match_mode}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-cloud-talent-v4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.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:
|
11
|
+
date: 2024-01-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: gapic-common
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.21.1
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: 0.
|
29
|
+
version: 0.21.1
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
278
278
|
- !ruby/object:Gem::Version
|
279
279
|
version: '0'
|
280
280
|
requirements: []
|
281
|
-
rubygems_version: 3.
|
281
|
+
rubygems_version: 3.5.3
|
282
282
|
signing_key:
|
283
283
|
specification_version: 4
|
284
284
|
summary: Cloud Talent Solution provides the capability to create, read, update, and
|