google-cloud-talent 0.1.0 → 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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +2 -0
  3. data/AUTHENTICATION.md +199 -0
  4. data/lib/google/cloud/talent.rb +20 -19
  5. data/lib/google/cloud/talent/v4beta1.rb +22 -21
  6. data/lib/google/cloud/talent/v4beta1/application_pb.rb +62 -0
  7. data/lib/google/cloud/talent/v4beta1/application_service_client.rb +492 -0
  8. data/lib/google/cloud/talent/v4beta1/application_service_client_config.json +51 -0
  9. data/lib/google/cloud/talent/v4beta1/application_service_pb.rb +52 -0
  10. data/lib/google/cloud/talent/v4beta1/application_service_services_pb.rb +56 -0
  11. data/lib/google/cloud/talent/v4beta1/common_pb.rb +47 -1
  12. data/lib/google/cloud/talent/v4beta1/company_pb.rb +1 -1
  13. data/lib/google/cloud/talent/v4beta1/company_service_client.rb +83 -55
  14. data/lib/google/cloud/talent/v4beta1/completion_client.rb +62 -42
  15. data/lib/google/cloud/talent/v4beta1/completion_service_pb.rb +2 -2
  16. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/application.rb +189 -0
  17. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/application_service.rb +121 -0
  18. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/common.rb +189 -94
  19. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/company.rb +12 -10
  20. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/company_service.rb +29 -20
  21. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb +26 -30
  22. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb +16 -55
  23. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event_service.rb +9 -1
  24. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb +74 -164
  25. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/histogram.rb +2 -5
  26. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb +58 -86
  27. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job_service.rb +109 -137
  28. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile.rb +76 -375
  29. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile_service.rb +21 -38
  30. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/tenant.rb +1 -3
  31. data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/tenant_service.rb +3 -7
  32. data/lib/google/cloud/talent/v4beta1/doc/google/protobuf/field_mask.rb +18 -26
  33. data/lib/google/cloud/talent/v4beta1/doc/google/protobuf/timestamp.rb +15 -13
  34. data/lib/google/cloud/talent/v4beta1/doc/google/type/date.rb +14 -10
  35. data/lib/google/cloud/talent/v4beta1/doc/google/type/latlng.rb +0 -34
  36. data/lib/google/cloud/talent/v4beta1/doc/google/type/timeofday.rb +2 -3
  37. data/lib/google/cloud/talent/v4beta1/event_pb.rb +2 -9
  38. data/lib/google/cloud/talent/v4beta1/event_service_client.rb +26 -13
  39. data/lib/google/cloud/talent/v4beta1/event_service_services_pb.rb +1 -1
  40. data/lib/google/cloud/talent/v4beta1/filters_pb.rb +8 -20
  41. data/lib/google/cloud/talent/v4beta1/helpers.rb +44 -10
  42. data/lib/google/cloud/talent/v4beta1/histogram_pb.rb +1 -1
  43. data/lib/google/cloud/talent/v4beta1/job_pb.rb +3 -2
  44. data/lib/google/cloud/talent/v4beta1/job_service_client.rb +229 -204
  45. data/lib/google/cloud/talent/v4beta1/job_service_pb.rb +0 -1
  46. data/lib/google/cloud/talent/v4beta1/job_service_services_pb.rb +8 -12
  47. data/lib/google/cloud/talent/v4beta1/profile_pb.rb +6 -64
  48. data/lib/google/cloud/talent/v4beta1/profile_service_client.rb +72 -68
  49. data/lib/google/cloud/talent/v4beta1/profile_service_pb.rb +1 -1
  50. data/lib/google/cloud/talent/v4beta1/profile_service_services_pb.rb +3 -3
  51. data/lib/google/cloud/talent/v4beta1/resume_service_client.rb +2 -2
  52. data/lib/google/cloud/talent/v4beta1/tenant_pb.rb +1 -1
  53. data/lib/google/cloud/talent/v4beta1/tenant_service_client.rb +34 -23
  54. metadata +11 -4
@@ -20,10 +20,10 @@ module Google
20
20
  # Message representing a period of time between two timestamps.
21
21
  # @!attribute [rw] start_time
22
22
  # @return [Google::Protobuf::Timestamp]
23
- # Begin of the period.
23
+ # Begin of the period (inclusive).
24
24
  # @!attribute [rw] end_time
25
25
  # @return [Google::Protobuf::Timestamp]
26
- # End of the period.
26
+ # End of the period (exclusive).
27
27
  class TimestampRange; end
28
28
 
29
29
  # Output only.
@@ -100,9 +100,7 @@ module Google
100
100
  # performance of the service.
101
101
  # @!attribute [rw] domain
102
102
  # @return [String]
103
- # Required if
104
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids}
105
- # is unset or `false`.
103
+ # Required if {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids} is unset or `false`.
106
104
  #
107
105
  # The client-defined scope or source of the service call, which typically
108
106
  # is the domain on
@@ -119,9 +117,7 @@ module Google
119
117
  # The maximum number of allowed characters is 255.
120
118
  # @!attribute [rw] session_id
121
119
  # @return [String]
122
- # Required if
123
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids}
124
- # is unset or `false`.
120
+ # Required if {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids} is unset or `false`.
125
121
  #
126
122
  # A unique session identification string. A session is defined as the
127
123
  # duration of an end user's interaction with the service over a certain
@@ -135,9 +131,7 @@ module Google
135
131
  # The maximum number of allowed characters is 255.
136
132
  # @!attribute [rw] user_id
137
133
  # @return [String]
138
- # Required if
139
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids}
140
- # is unset or `false`.
134
+ # Required if {Google::Cloud::Talent::V4beta1::RequestMetadata#allow_missing_ids allow_missing_ids} is unset or `false`.
141
135
  #
142
136
  # A unique user identification string, as determined by the client.
143
137
  # To have the strongest positive impact on search quality
@@ -153,16 +147,10 @@ module Google
153
147
  # @return [true, false]
154
148
  # Optional.
155
149
  #
156
- # If set to `true`,
157
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#domain domain},
158
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#session_id session_id} and
159
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#user_id user_id} are
160
- # optional. Only set when any of these fields isn't available for some
161
- # reason. It is highly recommended not to set this field and provide accurate
162
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#domain domain},
163
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#session_id session_id} and
164
- # {Google::Cloud::Talent::V4beta1::RequestMetadata#user_id user_id} for the best
165
- # service experience.
150
+ # If set to `true`, {Google::Cloud::Talent::V4beta1::RequestMetadata#domain domain}, {Google::Cloud::Talent::V4beta1::RequestMetadata#session_id session_id} and {Google::Cloud::Talent::V4beta1::RequestMetadata#user_id user_id} are optional.
151
+ # Only set when any of these fields isn't available for some reason. It
152
+ # is highly recommended not to set this field and provide accurate
153
+ # {Google::Cloud::Talent::V4beta1::RequestMetadata#domain domain}, {Google::Cloud::Talent::V4beta1::RequestMetadata#session_id session_id} and {Google::Cloud::Talent::V4beta1::RequestMetadata#user_id user_id} for the best service experience.
166
154
  # @!attribute [rw] device_info
167
155
  # @return [Google::Cloud::Talent::V4beta1::DeviceInfo]
168
156
  # Optional.
@@ -226,10 +214,8 @@ module Google
226
214
  # Custom attribute values that are either filterable or non-filterable.
227
215
  # @!attribute [rw] string_values
228
216
  # @return [Array<String>]
229
- # Optional but exactly one of
230
- # {Google::Cloud::Talent::V4beta1::CustomAttribute#string_values string_values}
231
- # or {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values}
232
- # must be specified.
217
+ # Optional but exactly one of {Google::Cloud::Talent::V4beta1::CustomAttribute#string_values string_values} or {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values} must
218
+ # be specified.
233
219
  #
234
220
  # This field is used to perform a string match (`CASE_SENSITIVE_MATCH` or
235
221
  # `CASE_INSENSITIVE_MATCH`) search.
@@ -241,17 +227,13 @@ module Google
241
227
  # Empty string isn't allowed.
242
228
  # @!attribute [rw] long_values
243
229
  # @return [Array<Integer>]
244
- # Optional but exactly one of
245
- # {Google::Cloud::Talent::V4beta1::CustomAttribute#string_values string_values}
246
- # or {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values}
247
- # must be specified.
230
+ # Optional but exactly one of {Google::Cloud::Talent::V4beta1::CustomAttribute#string_values string_values} or {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values} must
231
+ # be specified.
248
232
  #
249
233
  # This field is used to perform number range search.
250
234
  # (`EQ`, `GT`, `GE`, `LE`, `LT`) over filterable `long_value`.
251
235
  #
252
- # Currently at most 1
253
- # {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values} is
254
- # supported.
236
+ # Currently at most 1 {Google::Cloud::Talent::V4beta1::CustomAttribute#long_values long_values} is supported.
255
237
  # @!attribute [rw] filterable
256
238
  # @return [true, false]
257
239
  # Optional.
@@ -290,42 +272,30 @@ module Google
290
272
  # Job compensation information.
291
273
  #
292
274
  # At most one entry can be of type
293
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationType::BASE CompensationInfo::CompensationType::BASE},
294
- # which is referred as ** base compensation entry ** for the job.
275
+ # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationType::BASE CompensationInfo::CompensationType::BASE}, which is
276
+ # referred as ** base compensation entry ** for the job.
295
277
  # @!attribute [rw] annualized_base_compensation_range
296
278
  # @return [Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationRange]
297
279
  # Output only. Annualized base compensation range. Computed as
298
280
  # base compensation entry's {CompensationEntry#compensation} times
299
281
  # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#expected_units_per_year CompensationEntry#expected_units_per_year}.
300
282
  #
301
- # See
302
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry CompensationEntry}
303
- # for explanation on compensation annualization.
283
+ # See {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry CompensationEntry} for explanation on compensation annualization.
304
284
  # @!attribute [rw] annualized_total_compensation_range
305
285
  # @return [Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationRange]
306
286
  # Output only. Annualized total compensation range. Computed as
307
287
  # all compensation entries' {CompensationEntry#compensation} times
308
288
  # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#expected_units_per_year CompensationEntry#expected_units_per_year}.
309
289
  #
310
- # See
311
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry CompensationEntry}
312
- # for explanation on compensation annualization.
290
+ # See {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry CompensationEntry} for explanation on compensation annualization.
313
291
  class CompensationInfo
314
292
  # A compensation entry that represents one component of compensation, such
315
293
  # as base pay, bonus, or other compensation type.
316
294
  #
317
295
  # Annualization: One compensation entry can be annualized if
318
- # * it contains valid
319
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount amount}
320
- # or
321
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range range}.
322
- # * and its
323
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#expected_units_per_year expected_units_per_year}
324
- # is set or can be derived. Its annualized range is determined as
325
- # ({Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount amount}
326
- # or
327
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range range})
328
- # times
296
+ # * it contains valid {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount amount} or {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range range}.
297
+ # * and its {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#expected_units_per_year expected_units_per_year} is set or can be derived.
298
+ # Its annualized range is determined as ({Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount amount} or {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range range}) times
329
299
  # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#expected_units_per_year expected_units_per_year}.
330
300
  # @!attribute [rw] type
331
301
  # @return [Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationType]
@@ -340,8 +310,7 @@ module Google
340
310
  #
341
311
  # Frequency of the specified amount.
342
312
  #
343
- # Default is
344
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationUnit::OTHER_COMPENSATION_UNIT CompensationUnit::OTHER_COMPENSATION_UNIT}.
313
+ # Default is {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationUnit::OTHER_COMPENSATION_UNIT CompensationUnit::OTHER_COMPENSATION_UNIT}.
345
314
  # @!attribute [rw] amount
346
315
  # @return [Google::Type::Money]
347
316
  # Optional.
@@ -364,10 +333,8 @@ module Google
364
333
  # Optional.
365
334
  #
366
335
  # Expected number of units paid each year. If not specified, when
367
- # {Google::Cloud::Talent::V4beta1::Job#employment_types Job#employment_types}
368
- # is FULLTIME, a default value is inferred based on
369
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#unit unit}.
370
- # Default values:
336
+ # {Google::Cloud::Talent::V4beta1::Job#employment_types Job#employment_types} is FULLTIME, a default value is inferred
337
+ # based on {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#unit unit}. Default values:
371
338
  # * HOURLY: 2080
372
339
  # * DAILY: 260
373
340
  # * WEEKLY: 52
@@ -396,30 +363,19 @@ module Google
396
363
  # The type of compensation.
397
364
  #
398
365
  # For compensation amounts specified in non-monetary amounts,
399
- # describe the compensation scheme in the
400
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}.
366
+ # describe the compensation scheme in the {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}.
401
367
  #
402
368
  # For example, tipping format is described in
403
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}
404
- # (for example, "expect 15-20% tips based on customer bill.") and an estimate
405
- # of the tips provided in
406
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount CompensationEntry#amount}
407
- # or
408
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range CompensationEntry#range}
409
- # ($10 per hour).
369
+ # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description} (for example, "expect 15-20% tips based
370
+ # on customer bill.") and an estimate of the tips provided in
371
+ # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount CompensationEntry#amount} or {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range CompensationEntry#range} ($10 per hour).
410
372
  #
411
- # For example, equity is described in
412
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}
373
+ # For example, equity is described in {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}
413
374
  # (for example, "1% - 2% equity vesting over 4 years, 1 year cliff") and
414
- # value estimated in
415
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount CompensationEntry#amount}
416
- # or
417
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range CompensationEntry#range}.
418
- # If no value estimate is possible, units are
419
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationUnit::COMPENSATION_UNIT_UNSPECIFIED CompensationUnit::COMPENSATION_UNIT_UNSPECIFIED}
420
- # and then further clarified in
421
- # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description}
422
- # field.
375
+ # value estimated in {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#amount CompensationEntry#amount} or
376
+ # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#range CompensationEntry#range}. If no value estimate is possible, units are
377
+ # {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationUnit::COMPENSATION_UNIT_UNSPECIFIED CompensationUnit::COMPENSATION_UNIT_UNSPECIFIED} and then further
378
+ # clarified in {Google::Cloud::Talent::V4beta1::CompensationInfo::CompensationEntry#description CompensationEntry#description} field.
423
379
  module CompensationType
424
380
  # Default value.
425
381
  COMPENSATION_TYPE_UNSPECIFIED = 0
@@ -480,6 +436,105 @@ module Google
480
436
  end
481
437
  end
482
438
 
439
+ # Resource that represents a license or certification.
440
+ # @!attribute [rw] display_name
441
+ # @return [String]
442
+ # Optional.
443
+ #
444
+ # Name of license or certification.
445
+ #
446
+ # Number of characters allowed is 100.
447
+ # @!attribute [rw] acquire_date
448
+ # @return [Google::Type::Date]
449
+ # Optional.
450
+ #
451
+ # Acquisition date or effective date of license or certification.
452
+ # @!attribute [rw] expire_date
453
+ # @return [Google::Type::Date]
454
+ # Optional.
455
+ #
456
+ # Expiration date of license of certification.
457
+ # @!attribute [rw] authority
458
+ # @return [String]
459
+ # Optional.
460
+ #
461
+ # Authority of license, such as government.
462
+ #
463
+ # Number of characters allowed is 100.
464
+ # @!attribute [rw] description
465
+ # @return [String]
466
+ # Optional.
467
+ #
468
+ # Description of license or certification.
469
+ #
470
+ # Number of characters allowed is 100,000.
471
+ class Certification; end
472
+
473
+ # Resource that represents a skill of a candidate.
474
+ # @!attribute [rw] display_name
475
+ # @return [String]
476
+ # Optional.
477
+ #
478
+ # Skill display name.
479
+ #
480
+ # For example, "Java", "Python".
481
+ #
482
+ # Number of characters allowed is 100.
483
+ # @!attribute [rw] last_used_date
484
+ # @return [Google::Type::Date]
485
+ # Optional.
486
+ #
487
+ # The last time this skill was used.
488
+ # @!attribute [rw] level
489
+ # @return [Google::Cloud::Talent::V4beta1::SkillProficiencyLevel]
490
+ # Optional.
491
+ #
492
+ # Skill proficiency level which indicates how proficient the candidate is at
493
+ # this skill.
494
+ # @!attribute [rw] context
495
+ # @return [String]
496
+ # Optional.
497
+ #
498
+ # A paragraph describes context of this skill.
499
+ #
500
+ # Number of characters allowed is 100,000.
501
+ # @!attribute [rw] skill_name_snippet
502
+ # @return [String]
503
+ # Output only. Skill name snippet shows how the {Google::Cloud::Talent::V4beta1::Skill#display_name display_name} is related
504
+ # to a search query. It's empty if the {Google::Cloud::Talent::V4beta1::Skill#display_name display_name} isn't related to the
505
+ # search query.
506
+ class Skill; end
507
+
508
+ # Details of an interview.
509
+ # @!attribute [rw] rating
510
+ # @return [Google::Cloud::Talent::V4beta1::Rating]
511
+ # Optional.
512
+ #
513
+ # The rating on this interview.
514
+ # @!attribute [rw] outcome
515
+ # @return [Google::Cloud::Talent::V4beta1::Outcome]
516
+ # Required.
517
+ #
518
+ # The overall decision resulting from this interview (positive, negative,
519
+ # nuetral).
520
+ class Interview; end
521
+
522
+ # The details of the score received for an assessment or interview.
523
+ # @!attribute [rw] overall
524
+ # @return [Float]
525
+ # Overall score.
526
+ # @!attribute [rw] min
527
+ # @return [Float]
528
+ # The minimum value for the score.
529
+ # @!attribute [rw] max
530
+ # @return [Float]
531
+ # The maximum value for the score.
532
+ # @!attribute [rw] interval
533
+ # @return [Float]
534
+ # The steps within the score (for example, interval = 1 max = 5
535
+ # min = 1 indicates that the score can be 1, 2, 3, 4, or 5)
536
+ class Rating; end
537
+
483
538
  # Method for commute.
484
539
  module CommuteMethod
485
540
  # Commute method isn't specified.
@@ -489,7 +544,7 @@ module Google
489
544
  DRIVING = 1
490
545
 
491
546
  # Commute time is calculated based on public transit including bus, metro,
492
- # subway, etc.
547
+ # subway, and so on.
493
548
  TRANSIT = 2
494
549
 
495
550
  # Commute time is calculated based on walking time.
@@ -497,10 +552,6 @@ module Google
497
552
 
498
553
  # Commute time is calculated based on biking time.
499
554
  CYCLING = 4
500
-
501
- # Commute time is calculated based on public transit that is wheelchair
502
- # accessible.
503
- TRANSIT_ACCESSIBLE = 5
504
555
  end
505
556
 
506
557
  # An enum that represents the size of the company.
@@ -620,8 +671,7 @@ module Google
620
671
  # The job is offered as a contracted position with the understanding
621
672
  # that it's converted into a full-time position at the end of the
622
673
  # contract. Jobs of this type are also returned by a search for
623
- # {Google::Cloud::Talent::V4beta1::EmploymentType::CONTRACTOR EmploymentType::CONTRACTOR}
624
- # jobs.
674
+ # {Google::Cloud::Talent::V4beta1::EmploymentType::CONTRACTOR EmploymentType::CONTRACTOR} jobs.
625
675
  CONTRACT_TO_HIRE = 4
626
676
 
627
677
  # The job is offered as a temporary employment opportunity, usually
@@ -834,6 +884,29 @@ module Google
834
884
  EXECUTIVE = 5
835
885
  end
836
886
 
887
+ # The overall outcome /decision / result indicator.
888
+ module Outcome
889
+ # Default value.
890
+ OUTCOME_UNSPECIFIED = 0
891
+
892
+ # A positive outcome / passing indicator (for example, candidate was
893
+ # recommended for hiring or to be moved forward in the hiring process,
894
+ # candidate passed a test).
895
+ POSITIVE = 1
896
+
897
+ # A neutral outcome / no clear indicator (for example, no strong
898
+ # reccommendation either to move forward / not move forward, neutral score).
899
+ NEUTRAL = 2
900
+
901
+ # A negative outcome / failing indicator (for example, candidate was
902
+ # recommended to NOT move forward in the hiring process, failed a test).
903
+ NEGATIVE = 3
904
+
905
+ # The assessment outcome is not available or otherwise unknown (for example,
906
+ # candidate did not complete assessment).
907
+ OUTCOME_NOT_AVAILABLE = 4
908
+ end
909
+
837
910
  # An enum that represents the job posting region. In most cases, job postings
838
911
  # don't need to specify a region. If a region is given, jobs are
839
912
  # eligible for searches in the specified region.
@@ -843,11 +916,10 @@ module Google
843
916
  POSTING_REGION_UNSPECIFIED = 0
844
917
 
845
918
  # In addition to exact location matching, job posting is returned when the
846
- # {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} in the search
847
- # query is in the same administrative area as the returned job posting. For
848
- # example, if a `ADMINISTRATIVE_AREA` job is posted in "CA, USA", it's
849
- # returned if {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter}
850
- # has "Mountain View".
919
+ # {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} in the search query is in the same administrative area
920
+ # as the returned job posting. For example, if a `ADMINISTRATIVE_AREA` job
921
+ # is posted in "CA, USA", it's returned if {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} has
922
+ # "Mountain View".
851
923
  #
852
924
  # Administrative area refers to top-level administrative subdivision of this
853
925
  # country. For example, US state, IT region, UK constituent nation and
@@ -855,11 +927,9 @@ module Google
855
927
  ADMINISTRATIVE_AREA = 1
856
928
 
857
929
  # In addition to exact location matching, job is returned when
858
- # {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} in search
859
- # query is in the same country as this job. For example, if a `NATION_WIDE`
860
- # job is posted in "USA", it's returned if
861
- # {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} has 'Mountain
862
- # View'.
930
+ # {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} in search query is in the same country as this job.
931
+ # For example, if a `NATION_WIDE` job is posted in "USA", it's
932
+ # returned if {Google::Cloud::Talent::V4beta1::LocationFilter LocationFilter} has 'Mountain View'.
863
933
  NATION = 2
864
934
 
865
935
  # Job allows employees to work remotely (telecommute).
@@ -868,6 +938,31 @@ module Google
868
938
  TELECOMMUTE = 3
869
939
  end
870
940
 
941
+ # Enum that represents the skill proficiency level.
942
+ module SkillProficiencyLevel
943
+ # Default value.
944
+ SKILL_PROFICIENCY_LEVEL_UNSPECIFIED = 0
945
+
946
+ # Have a common knowledge or an understanding of basic techniques and
947
+ # concepts.
948
+ FUNDAMENTAL_AWARENESS = 1
949
+
950
+ # Have the level of experience gained in a classroom and/or experimental
951
+ # scenarios or as a trainee on-the-job.
952
+ NOVICE = 2
953
+
954
+ # Be able to successfully complete tasks in this skill as requested. Help
955
+ # from an expert may be required from time to time, but can usually perform
956
+ # skill independently.
957
+ INTERMEDIATE = 3
958
+
959
+ # Can perform the actions associated with this skill without assistance.
960
+ ADVANCED = 4
961
+
962
+ # Known as an expert in this area.
963
+ EXPERT = 5
964
+ end
965
+
871
966
  # An enum that represents who has view access to the resource.
872
967
  module Visibility
873
968
  # Default value.
@@ -27,8 +27,12 @@ module Google
27
27
  # The resource name for a company. This is generated by the service when a
28
28
  # company is created.
29
29
  #
30
- # The format is "projects/{project_id}/companies/{company_id}", for example,
31
- # "projects/api-test-project/companies/foo".
30
+ # The format is
31
+ # "projects/{project_id}/tenants/{tenant_id}/companies/{company_id}", for
32
+ # example, "projects/api-test-project/tenants/foo/companies/bar".
33
+ #
34
+ # Tenant id is optional and the default tenant is used if unspecified, for
35
+ # example, "projects/api-test-project/companies/bar".
32
36
  # @!attribute [rw] display_name
33
37
  # @return [String]
34
38
  # Required.
@@ -54,8 +58,7 @@ module Google
54
58
  # The street address of the company's main headquarters, which may be
55
59
  # different from the job location. The service attempts
56
60
  # to geolocate the provided address, and populates a more specific
57
- # location wherever possible in
58
- # {Google::Cloud::Talent::V4beta1::Company::DerivedInfo#headquarters_location DerivedInfo#headquarters_location}.
61
+ # location wherever possible in {Google::Cloud::Talent::V4beta1::Company::DerivedInfo#headquarters_location DerivedInfo#headquarters_location}.
59
62
  # @!attribute [rw] hiring_agency
60
63
  # @return [true, false]
61
64
  # Optional.
@@ -96,13 +99,12 @@ module Google
96
99
  # @return [Array<String>]
97
100
  # Optional.
98
101
  #
99
- # A list of keys of filterable
100
- # {Google::Cloud::Talent::V4beta1::Job#custom_attributes Job#custom_attributes},
101
- # whose corresponding `string_values` are used in keyword search. Jobs with
102
+ # A list of keys of filterable {Google::Cloud::Talent::V4beta1::Job#custom_attributes Job#custom_attributes}, whose
103
+ # corresponding `string_values` are used in keyword searches. Jobs with
102
104
  # `string_values` under these specified field keys are returned if any
103
- # of the values matches the search keyword. Custom field values with
104
- # parenthesis, brackets and special symbols won't be properly searchable,
105
- # and those keyword queries need to be surrounded by quotes.
105
+ # of the values match the search keyword. Custom field values with
106
+ # parenthesis, brackets and special symbols are not searchable as-is,
107
+ # and those keyword queries must be surrounded by quotes.
106
108
  # @!attribute [rw] derived_info
107
109
  # @return [Google::Cloud::Talent::V4beta1::Company::DerivedInfo]
108
110
  # Output only. Derived details about the company.