google-cloud-talent-v4 1.0.1 → 1.2.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +30 -20
- data/lib/google/cloud/talent/v4/company_service/client.rb +28 -6
- data/lib/google/cloud/talent/v4/company_service/rest/client.rb +28 -6
- data/lib/google/cloud/talent/v4/company_service/rest/service_stub.rb +54 -32
- data/lib/google/cloud/talent/v4/completion/client.rb +27 -2
- data/lib/google/cloud/talent/v4/completion/rest/client.rb +27 -2
- data/lib/google/cloud/talent/v4/completion/rest/service_stub.rb +22 -8
- data/lib/google/cloud/talent/v4/event_service/client.rb +27 -2
- data/lib/google/cloud/talent/v4/event_service/rest/client.rb +27 -2
- data/lib/google/cloud/talent/v4/event_service/rest/service_stub.rb +22 -8
- data/lib/google/cloud/talent/v4/job_service/client.rb +46 -14
- data/lib/google/cloud/talent/v4/job_service/operations.rb +12 -15
- data/lib/google/cloud/talent/v4/job_service/rest/client.rb +46 -14
- data/lib/google/cloud/talent/v4/job_service/rest/operations.rb +43 -38
- data/lib/google/cloud/talent/v4/job_service/rest/service_stub.rb +94 -62
- data/lib/google/cloud/talent/v4/job_service_pb.rb +2 -1
- data/lib/google/cloud/talent/v4/tenant_service/client.rb +28 -6
- data/lib/google/cloud/talent/v4/tenant_service/rest/client.rb +28 -6
- data/lib/google/cloud/talent/v4/tenant_service/rest/service_stub.rb +54 -32
- data/lib/google/cloud/talent/v4/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- data/proto_docs/google/cloud/talent/v4/filters.rb +2 -1
- data/proto_docs/google/cloud/talent/v4/job.rb +15 -11
- data/proto_docs/google/cloud/talent/v4/job_service.rb +29 -1
- data/proto_docs/google/longrunning/operations.rb +19 -14
- metadata +5 -5
@@ -169,8 +169,28 @@ module Google
|
|
169
169
|
endpoint: @config.endpoint,
|
170
170
|
endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
|
171
171
|
universe_domain: @config.universe_domain,
|
172
|
-
credentials: credentials
|
172
|
+
credentials: credentials,
|
173
|
+
logger: @config.logger
|
173
174
|
)
|
175
|
+
|
176
|
+
@tenant_service_stub.logger(stub: true)&.info do |entry|
|
177
|
+
entry.set_system_name
|
178
|
+
entry.set_service
|
179
|
+
entry.message = "Created client for #{entry.service}"
|
180
|
+
entry.set_credentials_fields credentials
|
181
|
+
entry.set "customEndpoint", @config.endpoint if @config.endpoint
|
182
|
+
entry.set "defaultTimeout", @config.timeout if @config.timeout
|
183
|
+
entry.set "quotaProject", @quota_project_id if @quota_project_id
|
184
|
+
end
|
185
|
+
end
|
186
|
+
|
187
|
+
##
|
188
|
+
# The logger used for request/response debug logging.
|
189
|
+
#
|
190
|
+
# @return [Logger]
|
191
|
+
#
|
192
|
+
def logger
|
193
|
+
@tenant_service_stub.logger
|
174
194
|
end
|
175
195
|
|
176
196
|
# Service calls
|
@@ -253,7 +273,6 @@ module Google
|
|
253
273
|
|
254
274
|
@tenant_service_stub.create_tenant request, options do |result, operation|
|
255
275
|
yield result, operation if block_given?
|
256
|
-
return result
|
257
276
|
end
|
258
277
|
rescue ::Gapic::Rest::Error => e
|
259
278
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -335,7 +354,6 @@ module Google
|
|
335
354
|
|
336
355
|
@tenant_service_stub.get_tenant request, options do |result, operation|
|
337
356
|
yield result, operation if block_given?
|
338
|
-
return result
|
339
357
|
end
|
340
358
|
rescue ::Gapic::Rest::Error => e
|
341
359
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -425,7 +443,6 @@ module Google
|
|
425
443
|
|
426
444
|
@tenant_service_stub.update_tenant request, options do |result, operation|
|
427
445
|
yield result, operation if block_given?
|
428
|
-
return result
|
429
446
|
end
|
430
447
|
rescue ::Gapic::Rest::Error => e
|
431
448
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -507,7 +524,6 @@ module Google
|
|
507
524
|
|
508
525
|
@tenant_service_stub.delete_tenant request, options do |result, operation|
|
509
526
|
yield result, operation if block_given?
|
510
|
-
return result
|
511
527
|
end
|
512
528
|
rescue ::Gapic::Rest::Error => e
|
513
529
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -599,7 +615,7 @@ module Google
|
|
599
615
|
@tenant_service_stub.list_tenants request, options do |result, operation|
|
600
616
|
result = ::Gapic::Rest::PagedEnumerable.new @tenant_service_stub, :list_tenants, "tenants", request, result, options
|
601
617
|
yield result, operation if block_given?
|
602
|
-
|
618
|
+
throw :response, result
|
603
619
|
end
|
604
620
|
rescue ::Gapic::Rest::Error => e
|
605
621
|
raise ::Google::Cloud::Error.from_error(e)
|
@@ -679,6 +695,11 @@ module Google
|
|
679
695
|
# default endpoint URL. The default value of nil uses the environment
|
680
696
|
# universe (usually the default "googleapis.com" universe).
|
681
697
|
# @return [::String,nil]
|
698
|
+
# @!attribute [rw] logger
|
699
|
+
# A custom logger to use for request/response debug logging, or the value
|
700
|
+
# `:default` (the default) to construct a default logger, or `nil` to
|
701
|
+
# explicitly disable logging.
|
702
|
+
# @return [::Logger,:default,nil]
|
682
703
|
#
|
683
704
|
class Configuration
|
684
705
|
extend ::Gapic::Config
|
@@ -700,6 +721,7 @@ module Google
|
|
700
721
|
config_attr :retry_policy, nil, ::Hash, ::Proc, nil
|
701
722
|
config_attr :quota_project, nil, ::String, nil
|
702
723
|
config_attr :universe_domain, nil, ::String, nil
|
724
|
+
config_attr :logger, :default, ::Logger, nil, :default
|
703
725
|
|
704
726
|
# @private
|
705
727
|
def initialize parent_config = nil
|
@@ -30,7 +30,8 @@ module Google
|
|
30
30
|
# including transcoding, making the REST call, and deserialing the response.
|
31
31
|
#
|
32
32
|
class ServiceStub
|
33
|
-
|
33
|
+
# @private
|
34
|
+
def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
|
34
35
|
# These require statements are intentionally placed here to initialize
|
35
36
|
# the REST modules only when it's required.
|
36
37
|
require "gapic/rest"
|
@@ -40,7 +41,9 @@ module Google
|
|
40
41
|
universe_domain: universe_domain,
|
41
42
|
credentials: credentials,
|
42
43
|
numeric_enums: true,
|
43
|
-
|
44
|
+
service_name: self.class,
|
45
|
+
raise_faraday_errors: false,
|
46
|
+
logger: logger
|
44
47
|
end
|
45
48
|
|
46
49
|
##
|
@@ -61,6 +64,15 @@ module Google
|
|
61
64
|
@client_stub.endpoint
|
62
65
|
end
|
63
66
|
|
67
|
+
##
|
68
|
+
# The logger used for request/response debug logging.
|
69
|
+
#
|
70
|
+
# @return [Logger]
|
71
|
+
#
|
72
|
+
def logger stub: false
|
73
|
+
stub ? @client_stub.stub_logger : @client_stub.logger
|
74
|
+
end
|
75
|
+
|
64
76
|
##
|
65
77
|
# Baseline implementation for the create_tenant REST call
|
66
78
|
#
|
@@ -87,16 +99,18 @@ module Google
|
|
87
99
|
|
88
100
|
response = @client_stub.make_http_request(
|
89
101
|
verb,
|
90
|
-
uri:
|
91
|
-
body:
|
92
|
-
params:
|
102
|
+
uri: uri,
|
103
|
+
body: body || "",
|
104
|
+
params: query_string_params,
|
105
|
+
method_name: "create_tenant",
|
93
106
|
options: options
|
94
107
|
)
|
95
108
|
operation = ::Gapic::Rest::TransportOperation.new response
|
96
109
|
result = ::Google::Cloud::Talent::V4::Tenant.decode_json response.body, ignore_unknown_fields: true
|
97
|
-
|
98
|
-
|
99
|
-
|
110
|
+
catch :response do
|
111
|
+
yield result, operation if block_given?
|
112
|
+
result
|
113
|
+
end
|
100
114
|
end
|
101
115
|
|
102
116
|
##
|
@@ -125,16 +139,18 @@ module Google
|
|
125
139
|
|
126
140
|
response = @client_stub.make_http_request(
|
127
141
|
verb,
|
128
|
-
uri:
|
129
|
-
body:
|
130
|
-
params:
|
142
|
+
uri: uri,
|
143
|
+
body: body || "",
|
144
|
+
params: query_string_params,
|
145
|
+
method_name: "get_tenant",
|
131
146
|
options: options
|
132
147
|
)
|
133
148
|
operation = ::Gapic::Rest::TransportOperation.new response
|
134
149
|
result = ::Google::Cloud::Talent::V4::Tenant.decode_json response.body, ignore_unknown_fields: true
|
135
|
-
|
136
|
-
|
137
|
-
|
150
|
+
catch :response do
|
151
|
+
yield result, operation if block_given?
|
152
|
+
result
|
153
|
+
end
|
138
154
|
end
|
139
155
|
|
140
156
|
##
|
@@ -163,16 +179,18 @@ module Google
|
|
163
179
|
|
164
180
|
response = @client_stub.make_http_request(
|
165
181
|
verb,
|
166
|
-
uri:
|
167
|
-
body:
|
168
|
-
params:
|
182
|
+
uri: uri,
|
183
|
+
body: body || "",
|
184
|
+
params: query_string_params,
|
185
|
+
method_name: "update_tenant",
|
169
186
|
options: options
|
170
187
|
)
|
171
188
|
operation = ::Gapic::Rest::TransportOperation.new response
|
172
189
|
result = ::Google::Cloud::Talent::V4::Tenant.decode_json response.body, ignore_unknown_fields: true
|
173
|
-
|
174
|
-
|
175
|
-
|
190
|
+
catch :response do
|
191
|
+
yield result, operation if block_given?
|
192
|
+
result
|
193
|
+
end
|
176
194
|
end
|
177
195
|
|
178
196
|
##
|
@@ -201,16 +219,18 @@ module Google
|
|
201
219
|
|
202
220
|
response = @client_stub.make_http_request(
|
203
221
|
verb,
|
204
|
-
uri:
|
205
|
-
body:
|
206
|
-
params:
|
222
|
+
uri: uri,
|
223
|
+
body: body || "",
|
224
|
+
params: query_string_params,
|
225
|
+
method_name: "delete_tenant",
|
207
226
|
options: options
|
208
227
|
)
|
209
228
|
operation = ::Gapic::Rest::TransportOperation.new response
|
210
229
|
result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
|
211
|
-
|
212
|
-
|
213
|
-
|
230
|
+
catch :response do
|
231
|
+
yield result, operation if block_given?
|
232
|
+
result
|
233
|
+
end
|
214
234
|
end
|
215
235
|
|
216
236
|
##
|
@@ -239,16 +259,18 @@ module Google
|
|
239
259
|
|
240
260
|
response = @client_stub.make_http_request(
|
241
261
|
verb,
|
242
|
-
uri:
|
243
|
-
body:
|
244
|
-
params:
|
262
|
+
uri: uri,
|
263
|
+
body: body || "",
|
264
|
+
params: query_string_params,
|
265
|
+
method_name: "list_tenants",
|
245
266
|
options: options
|
246
267
|
)
|
247
268
|
operation = ::Gapic::Rest::TransportOperation.new response
|
248
269
|
result = ::Google::Cloud::Talent::V4::ListTenantsResponse.decode_json response.body, ignore_unknown_fields: true
|
249
|
-
|
250
|
-
|
251
|
-
|
270
|
+
catch :response do
|
271
|
+
yield result, operation if block_given?
|
272
|
+
result
|
273
|
+
end
|
252
274
|
end
|
253
275
|
|
254
276
|
##
|
@@ -28,6 +28,9 @@ module Google
|
|
28
28
|
# @!attribute [rw] destinations
|
29
29
|
# @return [::Array<::Google::Api::ClientLibraryDestination>]
|
30
30
|
# The destination where API teams want this client library to be published.
|
31
|
+
# @!attribute [rw] selective_gapic_generation
|
32
|
+
# @return [::Google::Api::SelectiveGapicGeneration]
|
33
|
+
# Configuration for which RPCs should be generated in the GAPIC client.
|
31
34
|
class CommonLanguageSettings
|
32
35
|
include ::Google::Protobuf::MessageExts
|
33
36
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -212,6 +215,12 @@ module Google
|
|
212
215
|
# enabled. By default, asynchronous REST clients will not be generated.
|
213
216
|
# This feature will be enabled by default 1 month after launching the
|
214
217
|
# feature in preview packages.
|
218
|
+
# @!attribute [rw] protobuf_pythonic_types_enabled
|
219
|
+
# @return [::Boolean]
|
220
|
+
# Enables generation of protobuf code using new types that are more
|
221
|
+
# Pythonic which are included in `protobuf>=5.29.x`. This feature will be
|
222
|
+
# enabled by default 1 month after launching the feature in preview
|
223
|
+
# packages.
|
215
224
|
class ExperimentalFeatures
|
216
225
|
include ::Google::Protobuf::MessageExts
|
217
226
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -297,9 +306,28 @@ module Google
|
|
297
306
|
# @!attribute [rw] common
|
298
307
|
# @return [::Google::Api::CommonLanguageSettings]
|
299
308
|
# Some settings.
|
309
|
+
# @!attribute [rw] renamed_services
|
310
|
+
# @return [::Google::Protobuf::Map{::String => ::String}]
|
311
|
+
# Map of service names to renamed services. Keys are the package relative
|
312
|
+
# service names and values are the name to be used for the service client
|
313
|
+
# and call options.
|
314
|
+
#
|
315
|
+
# publishing:
|
316
|
+
# go_settings:
|
317
|
+
# renamed_services:
|
318
|
+
# Publisher: TopicAdmin
|
300
319
|
class GoSettings
|
301
320
|
include ::Google::Protobuf::MessageExts
|
302
321
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
322
|
+
|
323
|
+
# @!attribute [rw] key
|
324
|
+
# @return [::String]
|
325
|
+
# @!attribute [rw] value
|
326
|
+
# @return [::String]
|
327
|
+
class RenamedServicesEntry
|
328
|
+
include ::Google::Protobuf::MessageExts
|
329
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
330
|
+
end
|
303
331
|
end
|
304
332
|
|
305
333
|
# Describes the generator configuration for a method.
|
@@ -375,6 +403,17 @@ module Google
|
|
375
403
|
end
|
376
404
|
end
|
377
405
|
|
406
|
+
# This message is used to configure the generation of a subset of the RPCs in
|
407
|
+
# a service for client libraries.
|
408
|
+
# @!attribute [rw] methods
|
409
|
+
# @return [::Array<::String>]
|
410
|
+
# An allowlist of the fully qualified names of RPCs that should be included
|
411
|
+
# on public client surfaces.
|
412
|
+
class SelectiveGapicGeneration
|
413
|
+
include ::Google::Protobuf::MessageExts
|
414
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
415
|
+
end
|
416
|
+
|
378
417
|
# The organization for which the client libraries are being published.
|
379
418
|
# Affects the url where generated docs are published, etc.
|
380
419
|
module ClientLibraryOrganization
|
@@ -242,7 +242,8 @@ module Google
|
|
242
242
|
# {::Google::Cloud::Talent::V4::PostingRegion::TELECOMMUTE PostingRegion.TELECOMMUTE}
|
243
243
|
# and have additional {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}
|
244
244
|
# may still be matched based on other location filters using
|
245
|
-
# {::Google::Cloud::Talent::V4::LocationFilter#address address} or
|
245
|
+
# {::Google::Cloud::Talent::V4::LocationFilter#address address} or
|
246
|
+
# {::Google::Cloud::Talent::V4::LocationFilter#lat_lng lat_lng}.
|
246
247
|
#
|
247
248
|
# This filter can be used by itself to search exclusively for telecommuting
|
248
249
|
# jobs, or it can be combined with another location
|
@@ -98,13 +98,16 @@ module Google
|
|
98
98
|
# search experience.
|
99
99
|
#
|
100
100
|
# Jobs with multiple addresses must have their addresses with the same
|
101
|
-
#
|
102
|
-
# example, a Job with addresses
|
103
|
-
# CA, USA" and "London, UK" may
|
104
|
-
# at search time since the first
|
105
|
-
#
|
106
|
-
#
|
107
|
-
#
|
101
|
+
# {::Google::Cloud::Talent::V4::Location::LocationType LocationType} to allow
|
102
|
+
# location filtering to work properly. (For example, a Job with addresses
|
103
|
+
# "1600 Amphitheatre Parkway, Mountain View, CA, USA" and "London, UK" may
|
104
|
+
# not have location filters applied correctly at search time since the first
|
105
|
+
# is a
|
106
|
+
# {::Google::Cloud::Talent::V4::Location::LocationType::STREET_ADDRESS LocationType.STREET_ADDRESS}
|
107
|
+
# and the second is a
|
108
|
+
# {::Google::Cloud::Talent::V4::Location::LocationType::LOCALITY LocationType.LOCALITY}.)
|
109
|
+
# If a job needs to have multiple addresses, it is suggested to split it into
|
110
|
+
# multiple jobs with same LocationTypes.
|
108
111
|
#
|
109
112
|
# The maximum number of allowed characters is 500.
|
110
113
|
# @!attribute [rw] application_info
|
@@ -266,10 +269,11 @@ module Google
|
|
266
269
|
# {::Google::Cloud::Talent::V4::Job#posting_publish_time posting_publish_time}
|
267
270
|
# must be set before
|
268
271
|
# {::Google::Cloud::Talent::V4::Job#posting_expire_time posting_expire_time}. The
|
269
|
-
# purpose of this feature is to allow other objects, such as
|
270
|
-
# to refer a
|
271
|
-
#
|
272
|
-
# create a new
|
272
|
+
# purpose of this feature is to allow other objects, such as
|
273
|
+
# {::Google::Cloud::Talent::V4::Job::ApplicationInfo ApplicationInfo}, to refer a
|
274
|
+
# job that didn't exist in the system prior to becoming expired. If you want
|
275
|
+
# to modify a job that was expired on creation, delete it and create a new
|
276
|
+
# one.
|
273
277
|
#
|
274
278
|
# If this value isn't provided at the time of job creation or is invalid,
|
275
279
|
# the job posting expires after 30 days from the job's creation time. For
|
@@ -446,6 +446,13 @@ module Google
|
|
446
446
|
# Defaults to
|
447
447
|
# {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL}
|
448
448
|
# if no value is specified.
|
449
|
+
# @!attribute [rw] relevance_threshold
|
450
|
+
# @return [::Google::Cloud::Talent::V4::SearchJobsRequest::RelevanceThreshold]
|
451
|
+
# Optional. The relevance threshold of the search results.
|
452
|
+
#
|
453
|
+
# Default to Google defined threshold, leveraging a balance of
|
454
|
+
# precision and recall to deliver both highly accurate results and
|
455
|
+
# comprehensive coverage of relevant information.
|
449
456
|
class SearchJobsRequest
|
450
457
|
include ::Google::Protobuf::MessageExts
|
451
458
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -632,6 +639,27 @@ module Google
|
|
632
639
|
# {::Google::Cloud::Talent::V4::Job#title Job.title}.
|
633
640
|
KEYWORD_MATCH_TITLE_ONLY = 3
|
634
641
|
end
|
642
|
+
|
643
|
+
# The relevance threshold of the search results. The higher relevance
|
644
|
+
# threshold is, the higher relevant results are shown and the less number of
|
645
|
+
# results are returned.
|
646
|
+
module RelevanceThreshold
|
647
|
+
# Default value. In this case, server behavior defaults to Google defined
|
648
|
+
# threshold.
|
649
|
+
RELEVANCE_THRESHOLD_UNSPECIFIED = 0
|
650
|
+
|
651
|
+
# Lowest relevance threshold.
|
652
|
+
LOWEST = 1
|
653
|
+
|
654
|
+
# Low relevance threshold.
|
655
|
+
LOW = 2
|
656
|
+
|
657
|
+
# Medium relevance threshold.
|
658
|
+
MEDIUM = 3
|
659
|
+
|
660
|
+
# High relevance threshold.
|
661
|
+
HIGH = 4
|
662
|
+
end
|
635
663
|
end
|
636
664
|
|
637
665
|
# Response for SearchJob method.
|
@@ -767,7 +795,7 @@ module Google
|
|
767
795
|
#
|
768
796
|
# If {::Google::Cloud::Talent::V4::BatchUpdateJobsRequest#update_mask update_mask}
|
769
797
|
# is provided, The {::Google::Cloud::Talent::V4::Job Job} inside
|
770
|
-
#
|
798
|
+
# {::Google::Cloud::Talent::V4::JobResult JobResult}
|
771
799
|
# will only contains fields that is updated, plus the Id of the Job.
|
772
800
|
# Otherwise, {::Google::Cloud::Talent::V4::Job Job} will include all fields,
|
773
801
|
# which can yield a very large response.
|
@@ -42,7 +42,7 @@ module Google
|
|
42
42
|
# The error result of the operation in case of failure or cancellation.
|
43
43
|
# @!attribute [rw] response
|
44
44
|
# @return [::Google::Protobuf::Any]
|
45
|
-
# The normal response of the operation
|
45
|
+
# The normal, successful response of the operation. If the original
|
46
46
|
# method returns no data on success, such as `Delete`, the response is
|
47
47
|
# `google.protobuf.Empty`. If the original method is standard
|
48
48
|
# `Get`/`Create`/`Update`, the response should be the resource. For other
|
@@ -55,7 +55,8 @@ module Google
|
|
55
55
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
56
56
|
end
|
57
57
|
|
58
|
-
# The request message for
|
58
|
+
# The request message for
|
59
|
+
# Operations.GetOperation.
|
59
60
|
# @!attribute [rw] name
|
60
61
|
# @return [::String]
|
61
62
|
# The name of the operation resource.
|
@@ -64,7 +65,8 @@ module Google
|
|
64
65
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
66
|
end
|
66
67
|
|
67
|
-
# The request message for
|
68
|
+
# The request message for
|
69
|
+
# Operations.ListOperations.
|
68
70
|
# @!attribute [rw] name
|
69
71
|
# @return [::String]
|
70
72
|
# The name of the operation's parent resource.
|
@@ -82,7 +84,8 @@ module Google
|
|
82
84
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
83
85
|
end
|
84
86
|
|
85
|
-
# The response message for
|
87
|
+
# The response message for
|
88
|
+
# Operations.ListOperations.
|
86
89
|
# @!attribute [rw] operations
|
87
90
|
# @return [::Array<::Google::Longrunning::Operation>]
|
88
91
|
# A list of operations that matches the specified filter in the request.
|
@@ -94,7 +97,8 @@ module Google
|
|
94
97
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
95
98
|
end
|
96
99
|
|
97
|
-
# The request message for
|
100
|
+
# The request message for
|
101
|
+
# Operations.CancelOperation.
|
98
102
|
# @!attribute [rw] name
|
99
103
|
# @return [::String]
|
100
104
|
# The name of the operation resource to be cancelled.
|
@@ -103,7 +107,8 @@ module Google
|
|
103
107
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
104
108
|
end
|
105
109
|
|
106
|
-
# The request message for
|
110
|
+
# The request message for
|
111
|
+
# Operations.DeleteOperation.
|
107
112
|
# @!attribute [rw] name
|
108
113
|
# @return [::String]
|
109
114
|
# The name of the operation resource to be deleted.
|
@@ -112,7 +117,8 @@ module Google
|
|
112
117
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
118
|
end
|
114
119
|
|
115
|
-
# The request message for
|
120
|
+
# The request message for
|
121
|
+
# Operations.WaitOperation.
|
116
122
|
# @!attribute [rw] name
|
117
123
|
# @return [::String]
|
118
124
|
# The name of the operation resource to wait on.
|
@@ -130,13 +136,12 @@ module Google
|
|
130
136
|
#
|
131
137
|
# Example:
|
132
138
|
#
|
133
|
-
#
|
134
|
-
#
|
135
|
-
#
|
136
|
-
#
|
137
|
-
#
|
138
|
-
# }
|
139
|
-
# }
|
139
|
+
# rpc Export(ExportRequest) returns (google.longrunning.Operation) {
|
140
|
+
# option (google.longrunning.operation_info) = {
|
141
|
+
# response_type: "ExportResponse"
|
142
|
+
# metadata_type: "ExportMetadata"
|
143
|
+
# };
|
144
|
+
# }
|
140
145
|
# @!attribute [rw] response_type
|
141
146
|
# @return [::String]
|
142
147
|
# Required. The message name of the primary return type for this
|
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: 1.0
|
4
|
+
version: 1.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:
|
11
|
+
date: 2025-01-08 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.24.0
|
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.24.0
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -166,7 +166,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
166
166
|
- !ruby/object:Gem::Version
|
167
167
|
version: '0'
|
168
168
|
requirements: []
|
169
|
-
rubygems_version: 3.5.
|
169
|
+
rubygems_version: 3.5.23
|
170
170
|
signing_key:
|
171
171
|
specification_version: 4
|
172
172
|
summary: Cloud Talent Solution provides the capability to create, read, update, and
|