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.
- checksums.yaml +4 -4
- data/.yardopts +2 -0
- data/AUTHENTICATION.md +199 -0
- data/lib/google/cloud/talent.rb +20 -19
- data/lib/google/cloud/talent/v4beta1.rb +22 -21
- data/lib/google/cloud/talent/v4beta1/application_pb.rb +62 -0
- data/lib/google/cloud/talent/v4beta1/application_service_client.rb +492 -0
- data/lib/google/cloud/talent/v4beta1/application_service_client_config.json +51 -0
- data/lib/google/cloud/talent/v4beta1/application_service_pb.rb +52 -0
- data/lib/google/cloud/talent/v4beta1/application_service_services_pb.rb +56 -0
- data/lib/google/cloud/talent/v4beta1/common_pb.rb +47 -1
- data/lib/google/cloud/talent/v4beta1/company_pb.rb +1 -1
- data/lib/google/cloud/talent/v4beta1/company_service_client.rb +83 -55
- data/lib/google/cloud/talent/v4beta1/completion_client.rb +62 -42
- data/lib/google/cloud/talent/v4beta1/completion_service_pb.rb +2 -2
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/application.rb +189 -0
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/application_service.rb +121 -0
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/common.rb +189 -94
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/company.rb +12 -10
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/company_service.rb +29 -20
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb +26 -30
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event.rb +16 -55
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/event_service.rb +9 -1
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/filters.rb +74 -164
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/histogram.rb +2 -5
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb +58 -86
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job_service.rb +109 -137
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile.rb +76 -375
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/profile_service.rb +21 -38
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/tenant.rb +1 -3
- data/lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/tenant_service.rb +3 -7
- data/lib/google/cloud/talent/v4beta1/doc/google/protobuf/field_mask.rb +18 -26
- data/lib/google/cloud/talent/v4beta1/doc/google/protobuf/timestamp.rb +15 -13
- data/lib/google/cloud/talent/v4beta1/doc/google/type/date.rb +14 -10
- data/lib/google/cloud/talent/v4beta1/doc/google/type/latlng.rb +0 -34
- data/lib/google/cloud/talent/v4beta1/doc/google/type/timeofday.rb +2 -3
- data/lib/google/cloud/talent/v4beta1/event_pb.rb +2 -9
- data/lib/google/cloud/talent/v4beta1/event_service_client.rb +26 -13
- data/lib/google/cloud/talent/v4beta1/event_service_services_pb.rb +1 -1
- data/lib/google/cloud/talent/v4beta1/filters_pb.rb +8 -20
- data/lib/google/cloud/talent/v4beta1/helpers.rb +44 -10
- data/lib/google/cloud/talent/v4beta1/histogram_pb.rb +1 -1
- data/lib/google/cloud/talent/v4beta1/job_pb.rb +3 -2
- data/lib/google/cloud/talent/v4beta1/job_service_client.rb +229 -204
- data/lib/google/cloud/talent/v4beta1/job_service_pb.rb +0 -1
- data/lib/google/cloud/talent/v4beta1/job_service_services_pb.rb +8 -12
- data/lib/google/cloud/talent/v4beta1/profile_pb.rb +6 -64
- data/lib/google/cloud/talent/v4beta1/profile_service_client.rb +72 -68
- data/lib/google/cloud/talent/v4beta1/profile_service_pb.rb +1 -1
- data/lib/google/cloud/talent/v4beta1/profile_service_services_pb.rb +3 -3
- data/lib/google/cloud/talent/v4beta1/resume_service_client.rb +2 -2
- data/lib/google/cloud/talent/v4beta1/tenant_pb.rb +1 -1
- data/lib/google/cloud/talent/v4beta1/tenant_service_client.rb +34 -23
- metadata +11 -4
@@ -18,9 +18,8 @@ module Google
|
|
18
18
|
module Talent
|
19
19
|
module V4beta1
|
20
20
|
# A resource that represents the profile for a job candidate (also referred to
|
21
|
-
# as a "single-source profile"). A profile belongs to a
|
22
|
-
#
|
23
|
-
# of the customer that owns the profile.
|
21
|
+
# as a "single-source profile"). A profile belongs to a {Google::Cloud::Talent::V4beta1::Company Company}, which is
|
22
|
+
# the company/organization that owns the profile.
|
24
23
|
# @!attribute [rw] name
|
25
24
|
# @return [String]
|
26
25
|
# Required during profile update.
|
@@ -61,22 +60,17 @@ module Google
|
|
61
60
|
# The cluster id of the profile to associate with other profile(s) for the
|
62
61
|
# same candidate.
|
63
62
|
#
|
64
|
-
# A random UUID is assigned if
|
65
|
-
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id} isn't
|
66
|
-
#
|
67
|
-
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id}
|
68
|
-
# If {Google::Cloud::Talent::V4beta1::Profile#group_id group_id} is set, there
|
69
|
-
# must be at least one other profile with the same system generated
|
70
|
-
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id}, otherwise an
|
71
|
-
# error is thrown.
|
63
|
+
# A random UUID is assigned if {Google::Cloud::Talent::V4beta1::Profile#group_id group_id} isn't provided. To ensure
|
64
|
+
# global uniqueness, customized {Google::Cloud::Talent::V4beta1::Profile#group_id group_id} isn't supported. If
|
65
|
+
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id} is set, there must be at least one other profile with the
|
66
|
+
# same system generated {Google::Cloud::Talent::V4beta1::Profile#group_id group_id}, otherwise an error is thrown.
|
72
67
|
#
|
73
68
|
# This is used to link multiple profiles to the same candidate. For example,
|
74
69
|
# a client has a candidate with two profiles, where one was created recently
|
75
70
|
# and the other one was created 5 years ago. These two profiles may be very
|
76
71
|
# different. The clients can create the first profile and get a generated
|
77
|
-
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id}, and assign it
|
78
|
-
#
|
79
|
-
# referring to the same candidate.
|
72
|
+
# {Google::Cloud::Talent::V4beta1::Profile#group_id group_id}, and assign it when the second profile is created,
|
73
|
+
# indicating these two profiles are referring to the same candidate.
|
80
74
|
# @!attribute [rw] is_hirable
|
81
75
|
# @return [Google::Protobuf::BoolValue]
|
82
76
|
# Optional.
|
@@ -100,21 +94,15 @@ module Google
|
|
100
94
|
# See http://schemas.liquid-technologies.com/hr-xml/2007-04-15/ for more
|
101
95
|
# information about Human Resources XML.
|
102
96
|
#
|
103
|
-
# Users can create a profile with only
|
104
|
-
# {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml}
|
105
|
-
#
|
106
|
-
# {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml}
|
107
|
-
#
|
108
|
-
#
|
109
|
-
# {Google::Cloud::Talent::V4beta1::
|
110
|
-
#
|
111
|
-
#
|
112
|
-
# parsed.
|
113
|
-
#
|
114
|
-
# If the {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml} is
|
115
|
-
# provided during profile creation or update, any other structured data
|
116
|
-
# provided in the profile is ignored. The API populates these fields by
|
117
|
-
# parsing the HR-XML.
|
97
|
+
# Users can create a profile with only {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml} field. For example,
|
98
|
+
# the API parses the {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml} and creates a profile with all
|
99
|
+
# structured fields populated, for example. {Google::Cloud::Talent::V4beta1::EmploymentRecord EmploymentRecord},
|
100
|
+
# {Google::Cloud::Talent::V4beta1::EducationRecord EducationRecord}, and so on. An error is thrown if the {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml}
|
101
|
+
# can't be parsed.
|
102
|
+
#
|
103
|
+
# If the {Google::Cloud::Talent::V4beta1::Profile#resume_hrxml resume_hrxml} is provided during profile creation or update,
|
104
|
+
# any other structured data provided in the profile is ignored. The
|
105
|
+
# API populates these fields by parsing the HR-XML.
|
118
106
|
# @!attribute [rw] person_names
|
119
107
|
# @return [Array<Google::Cloud::Talent::V4beta1::PersonName>]
|
120
108
|
# Optional.
|
@@ -146,12 +134,8 @@ module Google
|
|
146
134
|
# @return [Array<Google::Cloud::Talent::V4beta1::AdditionalContactInfo>]
|
147
135
|
# Optional.
|
148
136
|
#
|
149
|
-
# Available contact information besides
|
150
|
-
# {Google::Cloud::Talent::V4beta1::Profile#
|
151
|
-
# {Google::Cloud::Talent::V4beta1::Profile#email_addresses email_addresses},
|
152
|
-
# {Google::Cloud::Talent::V4beta1::Profile#phone_numbers phone_numbers} and
|
153
|
-
# {Google::Cloud::Talent::V4beta1::Profile#personal_uris personal_uris}. For
|
154
|
-
# example, Hang-out, Skype.
|
137
|
+
# Available contact information besides {Google::Cloud::Talent::V4beta1::Profile#addresses addresses}, {Google::Cloud::Talent::V4beta1::Profile#email_addresses email_addresses},
|
138
|
+
# {Google::Cloud::Talent::V4beta1::Profile#phone_numbers phone_numbers} and {Google::Cloud::Talent::V4beta1::Profile#personal_uris personal_uris}. For example, Hang-out, Skype.
|
155
139
|
# @!attribute [rw] employment_records
|
156
140
|
# @return [Array<Google::Cloud::Talent::V4beta1::EmploymentRecord>]
|
157
141
|
# Optional.
|
@@ -165,10 +149,8 @@ module Google
|
|
165
149
|
# change is.
|
166
150
|
# For example, only job title is changed from "software engineer" to "senior
|
167
151
|
# software engineer".
|
168
|
-
# * Provide
|
169
|
-
#
|
170
|
-
# for the current employment if possible. If not, it's inferred from user
|
171
|
-
# inputs.
|
152
|
+
# * Provide {Google::Cloud::Talent::V4beta1::EmploymentRecord#is_current EmploymentRecord#is_current} for the current employment if
|
153
|
+
# possible. If not, it's inferred from user inputs.
|
172
154
|
# @!attribute [rw] education_records
|
173
155
|
# @return [Array<Google::Cloud::Talent::V4beta1::EducationRecord>]
|
174
156
|
# Optional.
|
@@ -181,10 +163,8 @@ module Google
|
|
181
163
|
# * List each education type separately, no matter how minor the change is.
|
182
164
|
# For example, the profile contains the education experience from the same
|
183
165
|
# school but different degrees.
|
184
|
-
# * Provide
|
185
|
-
#
|
186
|
-
# for the current education if possible. If not, it's inferred from user
|
187
|
-
# inputs.
|
166
|
+
# * Provide {Google::Cloud::Talent::V4beta1::EducationRecord#is_current EducationRecord#is_current} for the current education if
|
167
|
+
# possible. If not, it's inferred from user inputs.
|
188
168
|
# @!attribute [rw] skills
|
189
169
|
# @return [Array<Google::Cloud::Talent::V4beta1::Skill>]
|
190
170
|
# Optional.
|
@@ -197,8 +177,7 @@ module Google
|
|
197
177
|
#
|
198
178
|
# The individual or collaborative activities which the candidate has
|
199
179
|
# participated in, for example, open-source projects, class assignments that
|
200
|
-
# aren't listed in
|
201
|
-
# {Google::Cloud::Talent::V4beta1::Profile#employment_records employment_records}.
|
180
|
+
# aren't listed in {Google::Cloud::Talent::V4beta1::Profile#employment_records employment_records}.
|
202
181
|
# @!attribute [rw] publications
|
203
182
|
# @return [Array<Google::Cloud::Talent::V4beta1::Publication>]
|
204
183
|
# Optional.
|
@@ -214,42 +193,34 @@ module Google
|
|
214
193
|
# Optional.
|
215
194
|
#
|
216
195
|
# The certifications acquired by the candidate.
|
217
|
-
# @!attribute [rw]
|
218
|
-
# @return [Array<
|
219
|
-
#
|
220
|
-
#
|
221
|
-
#
|
222
|
-
#
|
223
|
-
# @return [Array<Google::Cloud::Talent::V4beta1::RecruitingNote>]
|
224
|
-
# Optional.
|
225
|
-
#
|
226
|
-
# The recruiting notes added for the candidate.
|
227
|
-
#
|
228
|
-
# For example, the recruiter can add some unstructured comments for this
|
229
|
-
# candidate like "this candidate also has experiences in volunteer work".
|
196
|
+
# @!attribute [rw] applications
|
197
|
+
# @return [Array<String>]
|
198
|
+
# Output only. The resource names of the candidate's applications.
|
199
|
+
# @!attribute [rw] assignments
|
200
|
+
# @return [Array<String>]
|
201
|
+
# Output only. The resource names of the candidate's assignments.
|
230
202
|
# @!attribute [rw] custom_attributes
|
231
203
|
# @return [Hash{String => Google::Cloud::Talent::V4beta1::CustomAttribute}]
|
232
204
|
# Optional.
|
233
205
|
#
|
234
206
|
# A map of fields to hold both filterable and non-filterable custom profile
|
235
207
|
# attributes that aren't covered by the provided structured fields. See
|
236
|
-
# {Google::Cloud::Talent::V4beta1::CustomAttribute CustomAttribute} for more
|
237
|
-
# details.
|
208
|
+
# {Google::Cloud::Talent::V4beta1::CustomAttribute CustomAttribute} for more details.
|
238
209
|
#
|
239
210
|
# At most 100 filterable and at most 100 unfilterable keys are supported. If
|
240
|
-
# limit is exceeded, an error is thrown.
|
211
|
+
# limit is exceeded, an error is thrown. Custom attributes are `unfilterable`
|
212
|
+
# by default. These are filterable when the `filterable` flag is set to
|
213
|
+
# `true`.
|
241
214
|
#
|
242
215
|
# Numeric custom attributes: each key can only map to one numeric value,
|
243
|
-
# otherwise an error is thrown.
|
216
|
+
# otherwise an error is thrown. Client can also filter on numeric custom
|
217
|
+
# attributes using '>', '<' or '=' operators.
|
244
218
|
#
|
245
219
|
# String custom attributes: each key can map up to 50 string values. For
|
246
220
|
# filterable string value, each value has a byte size of no more than 256B.
|
247
221
|
# For unfilterable string values, the maximum byte size of a single key is
|
248
222
|
# 64B. An error is thrown for any request exceeding the limit.
|
249
223
|
# The maximum total byte size is 10KB.
|
250
|
-
#
|
251
|
-
# Currently filterable numeric custom attributes are not supported, and
|
252
|
-
# they automatically set to unfilterable.
|
253
224
|
# @!attribute [rw] processed
|
254
225
|
# @return [true, false]
|
255
226
|
# Output only. Indicates if the profile is fully processed and searchable.
|
@@ -271,7 +242,8 @@ module Google
|
|
271
242
|
# @return [Google::Cloud::Talent::V4beta1::PersonName::PersonStructuredName]
|
272
243
|
# Optional.
|
273
244
|
#
|
274
|
-
# A person's name in a structured way (last name, first name, suffix,
|
245
|
+
# A person's name in a structured way (last name, first name, suffix, and
|
246
|
+
# so on.)
|
275
247
|
# @!attribute [rw] preferred_name
|
276
248
|
# @return [String]
|
277
249
|
# Optional.
|
@@ -285,9 +257,7 @@ module Google
|
|
285
257
|
#
|
286
258
|
# Given/first name.
|
287
259
|
#
|
288
|
-
# It's derived from
|
289
|
-
# {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name}
|
290
|
-
# if not provided.
|
260
|
+
# It's derived from {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name} if not provided.
|
291
261
|
#
|
292
262
|
# Number of characters allowed is 100.
|
293
263
|
# @!attribute [rw] middle_initial
|
@@ -296,9 +266,7 @@ module Google
|
|
296
266
|
#
|
297
267
|
# Middle initial.
|
298
268
|
#
|
299
|
-
# It's derived from
|
300
|
-
# {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name}
|
301
|
-
# if not provided.
|
269
|
+
# It's derived from {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name} if not provided.
|
302
270
|
#
|
303
271
|
# Number of characters allowed is 20.
|
304
272
|
# @!attribute [rw] family_name
|
@@ -307,9 +275,7 @@ module Google
|
|
307
275
|
#
|
308
276
|
# Family/last name.
|
309
277
|
#
|
310
|
-
# It's derived from
|
311
|
-
# {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name}
|
312
|
-
# if not provided.
|
278
|
+
# It's derived from {Google::Cloud::Talent::V4beta1::PersonName#formatted_name formatted_name} if not provided.
|
313
279
|
#
|
314
280
|
# Number of characters allowed is 100.
|
315
281
|
# @!attribute [rw] suffixes
|
@@ -350,8 +316,8 @@ module Google
|
|
350
316
|
# Optional.
|
351
317
|
#
|
352
318
|
# Structured address that contains street address, city, state, country,
|
353
|
-
#
|
354
|
-
# @!attribute [rw]
|
319
|
+
# and so on.
|
320
|
+
# @!attribute [rw] current
|
355
321
|
# @return [Google::Protobuf::BoolValue]
|
356
322
|
# Optional.
|
357
323
|
#
|
@@ -428,10 +394,10 @@ module Google
|
|
428
394
|
VOICEMAIL = 6
|
429
395
|
|
430
396
|
# A virtual telephone number is a number that can be routed to another
|
431
|
-
# number and managed by the user via Web, SMS, IVR,
|
432
|
-
# with a particular person, and may be routed to either a MOBILE
|
433
|
-
# LANDLINE number. The phone usage (see ContactInfoUsage above) should
|
434
|
-
# set to PERSONAL for these phone types. Some more information can be
|
397
|
+
# number and managed by the user via Web, SMS, IVR, and so on. It is
|
398
|
+
# associated with a particular person, and may be routed to either a MOBILE
|
399
|
+
# or LANDLINE number. The phone usage (see ContactInfoUsage above) should
|
400
|
+
# be set to PERSONAL for these phone types. Some more information can be
|
435
401
|
# found here: http://en.wikipedia.org/wiki/Personal_Numbers
|
436
402
|
VIRTUAL = 7
|
437
403
|
|
@@ -509,7 +475,7 @@ module Google
|
|
509
475
|
#
|
510
476
|
# The name of the employer company/organization.
|
511
477
|
#
|
512
|
-
# For example, "Google", "Alphabet",
|
478
|
+
# For example, "Google", "Alphabet", and so on.
|
513
479
|
#
|
514
480
|
# Number of characters allowed is 100.
|
515
481
|
# @!attribute [rw] division_name
|
@@ -518,7 +484,7 @@ module Google
|
|
518
484
|
#
|
519
485
|
# The division name of the employment.
|
520
486
|
#
|
521
|
-
# For example, division, department, client,
|
487
|
+
# For example, division, department, client, and so on.
|
522
488
|
#
|
523
489
|
# Number of characters allowed is 100.
|
524
490
|
# @!attribute [rw] address
|
@@ -532,7 +498,7 @@ module Google
|
|
532
498
|
#
|
533
499
|
# The job title of the employment.
|
534
500
|
#
|
535
|
-
# For example, "Software Engineer", "Data Scientist",
|
501
|
+
# For example, "Software Engineer", "Data Scientist", and so on.
|
536
502
|
#
|
537
503
|
# Number of characters allowed is 100.
|
538
504
|
# @!attribute [rw] job_description
|
@@ -542,11 +508,11 @@ module Google
|
|
542
508
|
# The description of job content.
|
543
509
|
#
|
544
510
|
# Number of characters allowed is 100,000.
|
545
|
-
# @!attribute [rw]
|
511
|
+
# @!attribute [rw] is_supervisor
|
546
512
|
# @return [Google::Protobuf::BoolValue]
|
547
513
|
# Optional.
|
548
514
|
#
|
549
|
-
# If
|
515
|
+
# If the jobs is a supervisor position.
|
550
516
|
# @!attribute [rw] is_self_employed
|
551
517
|
# @return [Google::Protobuf::BoolValue]
|
552
518
|
# Optional.
|
@@ -559,25 +525,19 @@ module Google
|
|
559
525
|
# If this employment is current.
|
560
526
|
# @!attribute [rw] job_title_snippet
|
561
527
|
# @return [String]
|
562
|
-
# Output only. The job title snippet shows how the
|
563
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_title job_title}
|
564
|
-
#
|
565
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_title job_title} isn't
|
566
|
-
# related to the search query.
|
528
|
+
# Output only. The job title snippet shows how the {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_title job_title} is related
|
529
|
+
# to a search query. It's empty if the {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_title job_title} isn't related to the
|
530
|
+
# search query.
|
567
531
|
# @!attribute [rw] job_description_snippet
|
568
532
|
# @return [String]
|
569
|
-
# Output only. The job description snippet shows how the
|
570
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_description job_description}
|
571
|
-
#
|
572
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_description job_description}
|
573
|
-
# isn't related to the search query.
|
533
|
+
# Output only. The job description snippet shows how the {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_description job_description}
|
534
|
+
# is related to a search query. It's empty if the {Google::Cloud::Talent::V4beta1::EmploymentRecord#job_description job_description} isn't
|
535
|
+
# related to the search query.
|
574
536
|
# @!attribute [rw] employer_name_snippet
|
575
537
|
# @return [String]
|
576
|
-
# Output only. The employer name snippet shows how the
|
577
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#employer_name employer_name}
|
578
|
-
#
|
579
|
-
# {Google::Cloud::Talent::V4beta1::EmploymentRecord#employer_name employer_name}
|
580
|
-
# isn't related to the search query.
|
538
|
+
# Output only. The employer name snippet shows how the {Google::Cloud::Talent::V4beta1::EmploymentRecord#employer_name employer_name} is
|
539
|
+
# related to a search query. It's empty if the {Google::Cloud::Talent::V4beta1::EmploymentRecord#employer_name employer_name} isn't
|
540
|
+
# related to the search query.
|
581
541
|
class EmploymentRecord; end
|
582
542
|
|
583
543
|
# Resource that represents an education record of a candidate.
|
@@ -602,7 +562,7 @@ module Google
|
|
602
562
|
#
|
603
563
|
# The name of the school or institution.
|
604
564
|
#
|
605
|
-
# For example, "Stanford University", "UC Berkeley",
|
565
|
+
# For example, "Stanford University", "UC Berkeley", and so on.
|
606
566
|
#
|
607
567
|
# Number of characters allowed is 100.
|
608
568
|
# @!attribute [rw] address
|
@@ -638,18 +598,14 @@ module Google
|
|
638
598
|
# If this education is current.
|
639
599
|
# @!attribute [rw] school_name_snippet
|
640
600
|
# @return [String]
|
641
|
-
# Output only. The school name snippet shows how the
|
642
|
-
# {Google::Cloud::Talent::V4beta1::EducationRecord#school_name school_name} is
|
601
|
+
# Output only. The school name snippet shows how the {Google::Cloud::Talent::V4beta1::EducationRecord#school_name school_name} is
|
643
602
|
# related to a search query in search result. It's empty if the
|
644
|
-
# {Google::Cloud::Talent::V4beta1::EducationRecord#school_name school_name}
|
645
|
-
# isn't related to the search query.
|
603
|
+
# {Google::Cloud::Talent::V4beta1::EducationRecord#school_name school_name} isn't related to the search query.
|
646
604
|
# @!attribute [rw] degree_snippet
|
647
605
|
# @return [String]
|
648
|
-
# Output only. The job description snippet shows how the
|
649
|
-
# {Google::Cloud::Talent::V4beta1::Degree degree}
|
650
|
-
#
|
651
|
-
# {Google::Cloud::Talent::V4beta1::Degree degree} isn't related to the search
|
652
|
-
# query.
|
606
|
+
# Output only. The job description snippet shows how the {Google::Cloud::Talent::V4beta1::Degree degree} is
|
607
|
+
# related to a search query in search result. It's empty if the {Google::Cloud::Talent::V4beta1::Degree degree}
|
608
|
+
# isn't related to the search query.
|
653
609
|
class EducationRecord; end
|
654
610
|
|
655
611
|
# Resource that represents a degree pursuing or acquired by a candidate.
|
@@ -664,7 +620,7 @@ module Google
|
|
664
620
|
#
|
665
621
|
# Full Degree name.
|
666
622
|
#
|
667
|
-
# For example, "B.S.", "Master of Arts",
|
623
|
+
# For example, "B.S.", "Master of Arts", and so on.
|
668
624
|
#
|
669
625
|
# Number of characters allowed is 100.
|
670
626
|
# @!attribute [rw] fields_of_study
|
@@ -678,71 +634,9 @@ module Google
|
|
678
634
|
# Number of characters allowed is 100.
|
679
635
|
class Degree; end
|
680
636
|
|
681
|
-
# Resource that represents a skill of a candidate.
|
682
|
-
# @!attribute [rw] display_name
|
683
|
-
# @return [String]
|
684
|
-
# Optional.
|
685
|
-
#
|
686
|
-
# Skill display name.
|
687
|
-
#
|
688
|
-
# For example, "Java", "Python".
|
689
|
-
#
|
690
|
-
# Number of characters allowed is 100.
|
691
|
-
# @!attribute [rw] last_used_date
|
692
|
-
# @return [Google::Type::Date]
|
693
|
-
# Optional.
|
694
|
-
#
|
695
|
-
# The last time this skill was used.
|
696
|
-
# @!attribute [rw] level
|
697
|
-
# @return [Google::Cloud::Talent::V4beta1::Skill::SkillProficiencyLevel]
|
698
|
-
# Optional.
|
699
|
-
#
|
700
|
-
# Skill proficiency level which indicates how proficient the candidate is at
|
701
|
-
# this skill.
|
702
|
-
# @!attribute [rw] context
|
703
|
-
# @return [String]
|
704
|
-
# Optional.
|
705
|
-
#
|
706
|
-
# A paragraph describes context of this skill.
|
707
|
-
#
|
708
|
-
# Number of characters allowed is 100,000.
|
709
|
-
# @!attribute [rw] skill_name_snippet
|
710
|
-
# @return [String]
|
711
|
-
# Output only. Skill name snippet shows how the
|
712
|
-
# {Google::Cloud::Talent::V4beta1::Skill#display_name display_name} is related
|
713
|
-
# to a search query. It's empty if the
|
714
|
-
# {Google::Cloud::Talent::V4beta1::Skill#display_name display_name} isn't
|
715
|
-
# related to the search query.
|
716
|
-
class Skill
|
717
|
-
# Enum that represents the skill proficiency level.
|
718
|
-
module SkillProficiencyLevel
|
719
|
-
# Default value.
|
720
|
-
SKILL_PROFICIENCY_LEVEL_UNSPECIFIED = 0
|
721
|
-
|
722
|
-
# Have a common knowledge or an understanding of basic techniques and
|
723
|
-
# concepts.
|
724
|
-
FUNDAMENTAL_AWARENESS = 1
|
725
|
-
|
726
|
-
# Have the level of experience gained in a classroom and/or experimental
|
727
|
-
# scenarios or as a trainee on-the-job.
|
728
|
-
NOVICE = 2
|
729
|
-
|
730
|
-
# Be able to successfully complete tasks in this skill as requested. Help
|
731
|
-
# from an expert may be required from time to time, but can usually perform
|
732
|
-
# skill independently.
|
733
|
-
INTERMEDIATE = 3
|
734
|
-
|
735
|
-
# Can perform the actions associated with this skill without assistance.
|
736
|
-
ADVANCED = 4
|
737
|
-
|
738
|
-
# Known as an expert in this area.
|
739
|
-
EXPERT = 5
|
740
|
-
end
|
741
|
-
end
|
742
|
-
|
743
637
|
# Resource that represents an individual or collaborative activity participated
|
744
638
|
# in by a candidate, for example, an open-source project, a class assignment,
|
745
|
-
#
|
639
|
+
# and so on.
|
746
640
|
# @!attribute [rw] display_name
|
747
641
|
# @return [String]
|
748
642
|
# Optional.
|
@@ -788,25 +682,19 @@ module Google
|
|
788
682
|
# A list of skills used in this activity.
|
789
683
|
# @!attribute [rw] activity_name_snippet
|
790
684
|
# @return [String]
|
791
|
-
# Output only. Activity name snippet shows how the
|
792
|
-
# {Google::Cloud::Talent::V4beta1::Activity#display_name display_name}
|
793
|
-
#
|
794
|
-
# {Google::Cloud::Talent::V4beta1::Activity#display_name display_name} isn't
|
795
|
-
# related to the search query.
|
685
|
+
# Output only. Activity name snippet shows how the {Google::Cloud::Talent::V4beta1::Activity#display_name display_name} is
|
686
|
+
# related to a search query. It's empty if the {Google::Cloud::Talent::V4beta1::Activity#display_name display_name} isn't related
|
687
|
+
# to the search query.
|
796
688
|
# @!attribute [rw] activity_description_snippet
|
797
689
|
# @return [String]
|
798
690
|
# Output only. Activity description snippet shows how the
|
799
|
-
# {Google::Cloud::Talent::V4beta1::Activity#description description} is related
|
800
|
-
# to
|
801
|
-
# {Google::Cloud::Talent::V4beta1::Activity#description description} isn't
|
802
|
-
# related to the search query.
|
691
|
+
# {Google::Cloud::Talent::V4beta1::Activity#description description} is related to a search query. It's empty if the
|
692
|
+
# {Google::Cloud::Talent::V4beta1::Activity#description description} isn't related to the search query.
|
803
693
|
# @!attribute [rw] skills_used_snippet
|
804
694
|
# @return [Array<String>]
|
805
695
|
# Output only. Skill used snippet shows how the corresponding
|
806
|
-
# {Google::Cloud::Talent::V4beta1::Activity#skills_used skills_used} are related
|
807
|
-
#
|
808
|
-
# {Google::Cloud::Talent::V4beta1::Activity#skills_used skills_used} are not
|
809
|
-
# related to the search query.
|
696
|
+
# {Google::Cloud::Talent::V4beta1::Activity#skills_used skills_used} are related to a search query. It's empty if the
|
697
|
+
# corresponding {Google::Cloud::Talent::V4beta1::Activity#skills_used skills_used} are not related to the search query.
|
810
698
|
class Activity; end
|
811
699
|
|
812
700
|
# Resource that represents a publication resource of a candidate.
|
@@ -932,193 +820,6 @@ module Google
|
|
932
820
|
#
|
933
821
|
# The skills used in this patent.
|
934
822
|
class Patent; end
|
935
|
-
|
936
|
-
# Resource that represents a job application record of a candidate.
|
937
|
-
# @!attribute [rw] job
|
938
|
-
# @return [Google::Cloud::Talent::V4beta1::Job]
|
939
|
-
# Optional.
|
940
|
-
#
|
941
|
-
# The information of job which the candidate applied for.
|
942
|
-
#
|
943
|
-
# If {Google::Cloud::Talent::V4beta1::Job#name Job#name} is provided, the
|
944
|
-
# corresponding {Google::Cloud::Talent::V4beta1::Job Job} must be created.
|
945
|
-
#
|
946
|
-
# Otherwise, only
|
947
|
-
# {Google::Cloud::Talent::V4beta1::Job#requisition_id Job#requisition_id},
|
948
|
-
# {Google::Cloud::Talent::V4beta1::Job#title Job#title},
|
949
|
-
# {Google::Cloud::Talent::V4beta1::Job#description Job#description} and
|
950
|
-
# {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} provided here
|
951
|
-
# are persisted in the application. No {Google::Cloud::Talent::V4beta1::Job Job}
|
952
|
-
# entity is created in this case.
|
953
|
-
# @!attribute [rw] application_id
|
954
|
-
# @return [String]
|
955
|
-
# Optional.
|
956
|
-
#
|
957
|
-
# The job application id.
|
958
|
-
#
|
959
|
-
# Number of characters allowed is 100.
|
960
|
-
# @!attribute [rw] application_date
|
961
|
-
# @return [Google::Type::Date]
|
962
|
-
# Optional.
|
963
|
-
#
|
964
|
-
# The application date.
|
965
|
-
# @!attribute [rw] last_stage
|
966
|
-
# @return [String]
|
967
|
-
# Optional.
|
968
|
-
#
|
969
|
-
# The last stage the candidate reached in the application progress.
|
970
|
-
# For example, "new", "phone screen", "interview".
|
971
|
-
# @!attribute [rw] state
|
972
|
-
# @return [Google::Cloud::Talent::V4beta1::JobApplication::ApplicationStatus]
|
973
|
-
# Optional.
|
974
|
-
#
|
975
|
-
# The application state.
|
976
|
-
# @!attribute [rw] average_interview_score
|
977
|
-
# @return [Float]
|
978
|
-
# Optional.
|
979
|
-
#
|
980
|
-
# The average interview score.
|
981
|
-
# @!attribute [rw] interview_score_scale_id
|
982
|
-
# @return [String]
|
983
|
-
# Optional.
|
984
|
-
#
|
985
|
-
# The scale id of the interview score.
|
986
|
-
#
|
987
|
-
# Number of characters allowed is 100.
|
988
|
-
# @!attribute [rw] number_of_interviews
|
989
|
-
# @return [Integer]
|
990
|
-
# Optional.
|
991
|
-
#
|
992
|
-
# The number of interviews.
|
993
|
-
# @!attribute [rw] is_employee_referred
|
994
|
-
# @return [Google::Protobuf::BoolValue]
|
995
|
-
# Optional.
|
996
|
-
#
|
997
|
-
# If the candidate is referred by a employee.
|
998
|
-
# @!attribute [rw] update_time
|
999
|
-
# @return [Google::Protobuf::Timestamp]
|
1000
|
-
# Optional.
|
1001
|
-
#
|
1002
|
-
# The last update timestamp.
|
1003
|
-
# @!attribute [rw] outcome_reason
|
1004
|
-
# @return [String]
|
1005
|
-
# Optional.
|
1006
|
-
#
|
1007
|
-
# The outcome reason for the job application.
|
1008
|
-
#
|
1009
|
-
# Number of characters allowed is 100.
|
1010
|
-
# @!attribute [rw] outcome_positiveness
|
1011
|
-
# @return [Float]
|
1012
|
-
# Optional.
|
1013
|
-
#
|
1014
|
-
# Outcome positiveness shows how positive the outcome is.
|
1015
|
-
#
|
1016
|
-
# Currently only -1, 0 and 1 are accepted, where -1 means not positive, 0
|
1017
|
-
# means neutral and 1 means positive. An error is thrown if other value is
|
1018
|
-
# set.
|
1019
|
-
# @!attribute [rw] is_match
|
1020
|
-
# @return [Google::Protobuf::BoolValue]
|
1021
|
-
# Output only. Indicates whether this job application is a match to
|
1022
|
-
# application related filters. This value is only applicable in profile
|
1023
|
-
# search response.
|
1024
|
-
# @!attribute [rw] job_title_snippet
|
1025
|
-
# @return [String]
|
1026
|
-
# Output only. Job title snippet shows how the job title is related to a
|
1027
|
-
# search query. It's empty if the job title isn't related to the search
|
1028
|
-
# query.
|
1029
|
-
class JobApplication
|
1030
|
-
# Enum that represents the application status.
|
1031
|
-
module ApplicationStatus
|
1032
|
-
# Default value.
|
1033
|
-
APPLICATION_STATUS_UNSPECIFIED = 0
|
1034
|
-
|
1035
|
-
# The offer is extended.
|
1036
|
-
OFFER_EXTENDED = 1
|
1037
|
-
|
1038
|
-
# The offer is rejected by candidate.
|
1039
|
-
REJECTED_BY_CANDIDATE = 2
|
1040
|
-
|
1041
|
-
# The application is active.
|
1042
|
-
ACTIVE = 3
|
1043
|
-
|
1044
|
-
# The candidate is rejected by employer.
|
1045
|
-
REJECTED_BY_EMPLOYER = 4
|
1046
|
-
|
1047
|
-
# The candidate is hired and hasn't started the new job.
|
1048
|
-
HIRED_PENDING_DATE = 5
|
1049
|
-
|
1050
|
-
# The candidate is hired started.
|
1051
|
-
HIRED_STARTED = 6
|
1052
|
-
|
1053
|
-
# The candidate is a prospect candidate.
|
1054
|
-
PROSPECTED = 7
|
1055
|
-
end
|
1056
|
-
end
|
1057
|
-
|
1058
|
-
# Resource that represents a license or certification.
|
1059
|
-
# @!attribute [rw] display_name
|
1060
|
-
# @return [String]
|
1061
|
-
# Optional.
|
1062
|
-
#
|
1063
|
-
# Name of license or certification.
|
1064
|
-
#
|
1065
|
-
# Number of characters allowed is 100.
|
1066
|
-
# @!attribute [rw] acquire_date
|
1067
|
-
# @return [Google::Type::Date]
|
1068
|
-
# Optional.
|
1069
|
-
#
|
1070
|
-
# Acquirement date or effective date of license or certification.
|
1071
|
-
# @!attribute [rw] expire_date
|
1072
|
-
# @return [Google::Type::Date]
|
1073
|
-
# Optional.
|
1074
|
-
#
|
1075
|
-
# Expiration date of license of certification.
|
1076
|
-
# @!attribute [rw] authority
|
1077
|
-
# @return [String]
|
1078
|
-
# Optional.
|
1079
|
-
#
|
1080
|
-
# Authority of license, such as government.
|
1081
|
-
#
|
1082
|
-
# Number of characters allowed is 100.
|
1083
|
-
# @!attribute [rw] description
|
1084
|
-
# @return [String]
|
1085
|
-
# Optional.
|
1086
|
-
#
|
1087
|
-
# Description of license or certification.
|
1088
|
-
#
|
1089
|
-
# Number of characters allowed is 100,000.
|
1090
|
-
class Certification; end
|
1091
|
-
|
1092
|
-
# RecruitingNote represents a note/comment regarding the recruiting for a
|
1093
|
-
# candidate. For example, "This candidate is a potential match for a frontend
|
1094
|
-
# engineer at SF".
|
1095
|
-
# @!attribute [rw] note
|
1096
|
-
# @return [String]
|
1097
|
-
# Optional.
|
1098
|
-
#
|
1099
|
-
# The content of note.
|
1100
|
-
#
|
1101
|
-
# Number of characters allowed is 4,000.
|
1102
|
-
# @!attribute [rw] commenter
|
1103
|
-
# @return [String]
|
1104
|
-
# Optional.
|
1105
|
-
#
|
1106
|
-
# The person who wrote the notes.
|
1107
|
-
#
|
1108
|
-
# Number of characters allowed is 100.
|
1109
|
-
# @!attribute [rw] create_date
|
1110
|
-
# @return [Google::Type::Date]
|
1111
|
-
# Optional.
|
1112
|
-
#
|
1113
|
-
# The create date of the note.
|
1114
|
-
# @!attribute [rw] type
|
1115
|
-
# @return [String]
|
1116
|
-
# Optional.
|
1117
|
-
#
|
1118
|
-
# The note type.
|
1119
|
-
#
|
1120
|
-
# Number of characters allowed is 100.
|
1121
|
-
class RecruitingNote; end
|
1122
823
|
end
|
1123
824
|
end
|
1124
825
|
end
|