google-cloud-talent-v4 0.8.0 → 0.9.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 +1 -1
- data/README.md +2 -2
- data/lib/google/cloud/talent/v4/company_service/client.rb +15 -12
- data/lib/google/cloud/talent/v4/company_service/rest/client.rb +682 -0
- data/lib/google/cloud/talent/v4/company_service/rest/service_stub.rb +345 -0
- data/lib/google/cloud/talent/v4/company_service/rest.rb +52 -0
- data/lib/google/cloud/talent/v4/company_service.rb +7 -1
- data/lib/google/cloud/talent/v4/completion/client.rb +4 -2
- data/lib/google/cloud/talent/v4/completion/rest/client.rb +380 -0
- data/lib/google/cloud/talent/v4/completion/rest/service_stub.rb +107 -0
- data/lib/google/cloud/talent/v4/completion/rest.rb +52 -0
- data/lib/google/cloud/talent/v4/completion.rb +7 -1
- data/lib/google/cloud/talent/v4/event_service/client.rb +2 -2
- data/lib/google/cloud/talent/v4/event_service/rest/client.rb +358 -0
- data/lib/google/cloud/talent/v4/event_service/rest/service_stub.rb +108 -0
- data/lib/google/cloud/talent/v4/event_service/rest.rb +52 -0
- data/lib/google/cloud/talent/v4/event_service.rb +7 -1
- data/lib/google/cloud/talent/v4/job_service/client.rb +238 -161
- data/lib/google/cloud/talent/v4/job_service/operations.rb +12 -14
- data/lib/google/cloud/talent/v4/job_service/rest/client.rb +1685 -0
- data/lib/google/cloud/talent/v4/job_service/rest/operations.rb +793 -0
- data/lib/google/cloud/talent/v4/job_service/rest/service_stub.rb +645 -0
- data/lib/google/cloud/talent/v4/job_service/rest.rb +53 -0
- data/lib/google/cloud/talent/v4/job_service.rb +7 -1
- data/lib/google/cloud/talent/v4/job_service_services_pb.rb +12 -8
- data/lib/google/cloud/talent/v4/rest.rb +41 -0
- data/lib/google/cloud/talent/v4/tenant_service/client.rb +10 -9
- data/lib/google/cloud/talent/v4/tenant_service/rest/client.rb +670 -0
- data/lib/google/cloud/talent/v4/tenant_service/rest/service_stub.rb +345 -0
- data/lib/google/cloud/talent/v4/tenant_service/rest.rb +52 -0
- data/lib/google/cloud/talent/v4/tenant_service.rb +7 -1
- data/lib/google/cloud/talent/v4/version.rb +1 -1
- data/lib/google/cloud/talent/v4.rb +7 -2
- data/proto_docs/google/api/client.rb +318 -0
- data/proto_docs/google/api/launch_stage.rb +71 -0
- data/proto_docs/google/cloud/talent/v4/common.rb +116 -56
- data/proto_docs/google/cloud/talent/v4/company.rb +12 -4
- data/proto_docs/google/cloud/talent/v4/company_service.rb +11 -6
- data/proto_docs/google/cloud/talent/v4/completion_service.rb +21 -10
- data/proto_docs/google/cloud/talent/v4/event.rb +17 -9
- data/proto_docs/google/cloud/talent/v4/event_service.rb +2 -2
- data/proto_docs/google/cloud/talent/v4/filters.rb +55 -37
- data/proto_docs/google/cloud/talent/v4/histogram.rb +6 -2
- data/proto_docs/google/cloud/talent/v4/job.rb +83 -55
- data/proto_docs/google/cloud/talent/v4/job_service.rb +199 -117
- data/proto_docs/google/cloud/talent/v4/tenant.rb +2 -1
- data/proto_docs/google/cloud/talent/v4/tenant_service.rb +6 -3
- data/proto_docs/google/protobuf/empty.rb +0 -2
- data/proto_docs/google/rpc/status.rb +4 -2
- metadata +28 -8
@@ -158,13 +158,11 @@ module Google
|
|
158
158
|
# # Call the list_operations method.
|
159
159
|
# result = client.list_operations request
|
160
160
|
#
|
161
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
162
|
-
# #
|
163
|
-
#
|
164
|
-
# # methods are also available for managing paging directly.
|
165
|
-
# result.each do |response|
|
161
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
162
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
163
|
+
# result.each do |item|
|
166
164
|
# # Each element is of type ::Google::Longrunning::Operation.
|
167
|
-
# p
|
165
|
+
# p item
|
168
166
|
# end
|
169
167
|
#
|
170
168
|
def list_operations request, options = nil
|
@@ -253,14 +251,14 @@ module Google
|
|
253
251
|
# # Call the get_operation method.
|
254
252
|
# result = client.get_operation request
|
255
253
|
#
|
256
|
-
# # The returned object is of type Gapic::Operation. You can use
|
257
|
-
# #
|
258
|
-
# #
|
254
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
255
|
+
# # check the status of an operation, cancel it, or wait for results.
|
256
|
+
# # Here is how to wait for a response.
|
259
257
|
# result.wait_until_done! timeout: 60
|
260
258
|
# if result.response?
|
261
259
|
# p result.response
|
262
260
|
# else
|
263
|
-
# puts "
|
261
|
+
# puts "No response received."
|
264
262
|
# end
|
265
263
|
#
|
266
264
|
def get_operation request, options = nil
|
@@ -540,14 +538,14 @@ module Google
|
|
540
538
|
# # Call the wait_operation method.
|
541
539
|
# result = client.wait_operation request
|
542
540
|
#
|
543
|
-
# # The returned object is of type Gapic::Operation. You can use
|
544
|
-
# #
|
545
|
-
# #
|
541
|
+
# # The returned object is of type Gapic::Operation. You can use it to
|
542
|
+
# # check the status of an operation, cancel it, or wait for results.
|
543
|
+
# # Here is how to wait for a response.
|
546
544
|
# result.wait_until_done! timeout: 60
|
547
545
|
# if result.response?
|
548
546
|
# p result.response
|
549
547
|
# else
|
550
|
-
# puts "
|
548
|
+
# puts "No response received."
|
551
549
|
# end
|
552
550
|
#
|
553
551
|
def wait_operation request, options = nil
|