Class: Google::Cloud::Talent::V4beta1::Job
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4beta1::Job
- Defined in:
- lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb
Overview
A Job resource represents a job posting (also referred to as a "job listing" or "job requisition"). A job belongs to a Company, which is the hiring entity responsible for the job.
Defined Under Namespace
Classes: ApplicationInfo, DerivedInfo, ProcessingOptions
Instance Attribute Summary collapse
-
#addresses ⇒ Array<String>
Strongly recommended for the best service experience.
-
#application_info ⇒ Google::Cloud::Talent::V4beta1::Job::ApplicationInfo
Job application information.
-
#company ⇒ String
Required.
-
#company_display_name ⇒ String
Output only.
-
#compensation_info ⇒ Google::Cloud::Talent::V4beta1::CompensationInfo
Job compensation information (a.k.a. "pay rate") i.e., the compensation that will paid to the employee.
-
#custom_attributes ⇒ Hash{String => Google::Cloud::Talent::V4beta1::CustomAttribute}
A map of fields to hold both filterable and non-filterable custom job attributes that are not covered by the provided structured fields.
-
#degree_types ⇒ Array<Google::Cloud::Talent::V4beta1::DegreeType>
The desired education degrees for the job, such as Bachelors, Masters.
-
#department ⇒ String
The department or functional area within the company with the open position.
-
#derived_info ⇒ Google::Cloud::Talent::V4beta1::Job::DerivedInfo
Output only.
-
#description ⇒ String
Required.
- #employment_types ⇒ Array<Google::Cloud::Talent::V4beta1::EmploymentType>
-
#incentives ⇒ String
A description of bonus, commission, and other compensation incentives associated with the job not including salary or pay.
-
#job_benefits ⇒ Array<Google::Cloud::Talent::V4beta1::JobBenefit>
The benefits included with the job.
-
#job_end_time ⇒ Google::Protobuf::Timestamp
The end timestamp of the job.
-
#job_level ⇒ Google::Cloud::Talent::V4beta1::JobLevel
The experience level associated with the job, such as "Entry Level".
-
#job_start_time ⇒ Google::Protobuf::Timestamp
The start timestamp of the job in UTC time zone.
-
#language_code ⇒ String
The language of the posting.
-
#name ⇒ String
Required during job update.
-
#posting_create_time ⇒ Google::Protobuf::Timestamp
Output only.
-
#posting_expire_time ⇒ Google::Protobuf::Timestamp
Strongly recommended for the best service experience.
-
#posting_publish_time ⇒ Google::Protobuf::Timestamp
The timestamp this job posting was most recently published.
-
#posting_region ⇒ Google::Cloud::Talent::V4beta1::PostingRegion
The job PostingRegion (for example, state, country) throughout which the job is available.
-
#posting_update_time ⇒ Google::Protobuf::Timestamp
Output only.
-
#processing_options ⇒ Google::Cloud::Talent::V4beta1::Job::ProcessingOptions
Options for job processing.
-
#promotion_value ⇒ Integer
A promotion value of the job, as determined by the client.
-
#qualifications ⇒ String
A description of the qualifications required to perform the job.
-
#requisition_id ⇒ String
Required.
-
#responsibilities ⇒ String
A description of job responsibilities.
-
#title ⇒ String
Required.
-
#visibility ⇒ Google::Cloud::Talent::V4beta1::Visibility
Deprecated.
Instance Attribute Details
#addresses ⇒ Array<String>
Returns Strongly recommended for the best service experience.
Location(s) where the employer is looking to hire for this job posting.
Specifying the full street address(es) of the hiring location enables better API results, especially job searches by commute time.
At most 50 locations are allowed for best search performance. If a job has more locations, it is suggested to split it into multiple jobs with unique requisition_ids (e.g. 'ReqA' becomes 'ReqA-1', 'ReqA-2', and so on.) as multiple jobs with the same company, language_code and requisition_id are not allowed. If the original requisition_id must be preserved, a custom field should be used for storage. It is also suggested to group the locations that close to each other in the same job for better search experience.
The maximum number of allowed characters is 500.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#application_info ⇒ Google::Cloud::Talent::V4beta1::Job::ApplicationInfo
Returns Job application information.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#company ⇒ String
Returns Required. The resource name of the company listing the job.
The format is "projects/project_id/tenants/tenant_id/companies/company_id". For example, "projects/foo/tenants/bar/companies/baz".
If tenant id is unspecified, the default tenant is used. For example, "projects/foo/companies/bar".
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#company_display_name ⇒ String
Returns Output only. Display name of the company listing the job.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#compensation_info ⇒ Google::Cloud::Talent::V4beta1::CompensationInfo
Returns Job compensation information (a.k.a. "pay rate") i.e., the compensation that will paid to the employee.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#custom_attributes ⇒ Hash{String => Google::Cloud::Talent::V4beta1::CustomAttribute}
Returns A map of fields to hold both filterable and non-filterable custom job attributes that are not covered by the provided structured fields.
The keys of the map are strings up to 64 bytes and must match the pattern: [a-zA-Z][a-zA-Z0-9_]*. For example, key0LikeThis or KEY_1_LIKE_THIS.
At most 100 filterable and at most 100 unfilterable keys are supported.
For filterable string_values
, across all keys at most 200 values are
allowed, with each string no more than 255 characters. For unfilterable
string_values
, the maximum total size of string_values
across all keys
is 50KB.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#degree_types ⇒ Array<Google::Cloud::Talent::V4beta1::DegreeType>
Returns The desired education degrees for the job, such as Bachelors, Masters.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#department ⇒ String
Returns The department or functional area within the company with the open position.
The maximum number of allowed characters is 255.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#derived_info ⇒ Google::Cloud::Talent::V4beta1::Job::DerivedInfo
Returns Output only. Derived details about the job posting.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#description ⇒ String
Returns Required. The description of the job, which typically includes a multi-paragraph description of the company and related information. Separate fields are provided on the job object for responsibilities, qualifications, and other job characteristics. Use of these separate job fields is recommended.
This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags.
The maximum number of allowed characters is 100,000.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#employment_types ⇒ Array<Google::Cloud::Talent::V4beta1::EmploymentType>
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#incentives ⇒ String
Returns A description of bonus, commission, and other compensation incentives associated with the job not including salary or pay.
The maximum number of allowed characters is 10,000.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#job_benefits ⇒ Array<Google::Cloud::Talent::V4beta1::JobBenefit>
Returns The benefits included with the job.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#job_end_time ⇒ Google::Protobuf::Timestamp
Returns The end timestamp of the job. Typically this field is used for contracting engagements. Invalid timestamps are ignored.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#job_level ⇒ Google::Cloud::Talent::V4beta1::JobLevel
Returns The experience level associated with the job, such as "Entry Level".
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#job_start_time ⇒ Google::Protobuf::Timestamp
Returns The start timestamp of the job in UTC time zone. Typically this field is used for contracting engagements. Invalid timestamps are ignored.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#language_code ⇒ String
Returns The language of the posting. This field is distinct from any requirements for fluency that are associated with the job.
Language codes must be in BCP-47 format, such as "en-US" or "sr-Latn". For more information, see Tags for Identifying Languages{: class="external" target="_blank" }.
If this field is unspecified and Job#description is present, detected language code based on Job#description is assigned, otherwise defaults to 'en_US'.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#name ⇒ String
Returns Required during job update.
The resource name for the job. This is generated by the service when a job is created.
The format is "projects/project_id/tenants/tenant_id/jobs/job_id". For example, "projects/foo/tenants/bar/jobs/baz".
If tenant id is unspecified, the default tenant is used. For example, "projects/foo/jobs/bar".
Use of this field in job queries and API calls is preferred over the use of requisition_id since this value is unique.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#posting_create_time ⇒ Google::Protobuf::Timestamp
Returns Output only. The timestamp when this job posting was created.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#posting_expire_time ⇒ Google::Protobuf::Timestamp
Returns Strongly recommended for the best service experience.
The expiration timestamp of the job. After this timestamp, the job is marked as expired, and it no longer appears in search results. The expired job can't be listed by the ListJobs API, but it can be retrieved with the GetJob API or updated with the UpdateJob API or deleted with the DeleteJob API. An expired job can be updated and opened again by using a future expiration timestamp. Updating an expired job fails if there is another existing open job with same company, language_code and requisition_id.
The expired jobs are retained in our system for 90 days. However, the overall expired job count cannot exceed 3 times the maximum number of open jobs over previous 7 days. If this threshold is exceeded, expired jobs are cleaned out in order of earliest expire time. Expired jobs are no longer accessible after they are cleaned out.
Invalid timestamps are ignored, and treated as expire time not provided.
If the timestamp is before the instant request is made, the job is treated as expired immediately on creation. This kind of job can not be updated. And when creating a job with past timestamp, the posting_publish_time must be set before posting_expire_time. The purpose of this feature is to allow other objects, such as Application, to refer a job that didn't exist in the system prior to becoming expired. If you want to modify a job that was expired on creation, delete it and create a new one.
If this value isn't provided at the time of job creation or is invalid, the job posting expires after 30 days from the job's creation time. For example, if the job was created on 2017/01/01 13:00AM UTC with an unspecified expiration date, the job expires after 2017/01/31 13:00AM UTC.
If this value isn't provided on job update, it depends on the field masks set by UpdateJobRequest#update_mask. If the field masks include job_end_time, or the masks are empty meaning that every field is updated, the job posting expires after 30 days from the job's last update time. Otherwise the expiration date isn't updated.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#posting_publish_time ⇒ Google::Protobuf::Timestamp
Returns The timestamp this job posting was most recently published. The default value is the time the request arrives at the server. Invalid timestamps are ignored.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#posting_region ⇒ Google::Cloud::Talent::V4beta1::PostingRegion
Returns The job PostingRegion (for example, state, country) throughout which the job is available. If this field is set, a LocationFilter in a search query within the job region finds this job posting if an exact location match isn't specified. If this field is set to PostingRegion::NATION or PostingRegion::ADMINISTRATIVE_AREA, setting job Job#addresses to the same location level as this field is strongly recommended.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#posting_update_time ⇒ Google::Protobuf::Timestamp
Returns Output only. The timestamp when this job posting was last updated.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#processing_options ⇒ Google::Cloud::Talent::V4beta1::Job::ProcessingOptions
Returns Options for job processing.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#promotion_value ⇒ Integer
Returns A promotion value of the job, as determined by the client. The value determines the sort order of the jobs returned when searching for jobs using the featured jobs search call, with higher promotional values being returned first and ties being resolved by relevance sort. Only the jobs with a promotionValue >0 are returned in a FEATURED_JOB_SEARCH.
Default value is 0, and negative values are treated as 0.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#qualifications ⇒ String
Returns A description of the qualifications required to perform the job. The use of this field is recommended as an alternative to using the more general description field.
This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags.
The maximum number of allowed characters is 10,000.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#requisition_id ⇒ String
Returns Required. The requisition ID, also referred to as the posting ID, is assigned by the client to identify a job. This field is intended to be used by clients for client identification and tracking of postings. A job isn't allowed to be created if there is another job with the same company, language_code and requisition_id.
The maximum number of allowed characters is 255.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#responsibilities ⇒ String
Returns A description of job responsibilities. The use of this field is recommended as an alternative to using the more general description field.
This field accepts and sanitizes HTML input, and also accepts bold, italic, ordered list, and unordered list markup tags.
The maximum number of allowed characters is 10,000.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#title ⇒ String
Returns Required. The title of the job, such as "Software Engineer"
The maximum number of allowed characters is 500.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |
#visibility ⇒ Google::Cloud::Talent::V4beta1::Visibility
Returns Deprecated. The job is only visible to the owner.
The visibility of the job.
Defaults to Visibility::ACCOUNT_ONLY if not specified.
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/job.rb', line 296 class Job # Application related details of a job posting. # @!attribute [rw] emails # @return [Array<String>] # Use this field to specify email address(es) to which resumes or # applications can be sent. # # The maximum number of allowed characters for each entry is 255. # @!attribute [rw] instruction # @return [String] # Use this field to provide instructions, such as "Mail your application # to ...", that a candidate can follow to apply for the job. # # This field accepts and sanitizes HTML input, and also accepts # bold, italic, ordered list, and unordered list markup tags. # # The maximum number of allowed characters is 3,000. # @!attribute [rw] uris # @return [Array<String>] # Use this URI field to direct an applicant to a website, for example to # link to an online application form. # # The maximum number of allowed characters for each entry is 2,000. class ApplicationInfo; end # Derived details about the job posting. # @!attribute [rw] locations # @return [Array<Google::Cloud::Talent::V4beta1::Location>] # Structured locations of the job, resolved from # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses}. # # {Google::Cloud::Talent::V4beta1::Job::DerivedInfo#locations locations} are # exactly matched to # {Google::Cloud::Talent::V4beta1::Job#addresses Job#addresses} in the same # order. # @!attribute [rw] job_categories # @return [Array<Google::Cloud::Talent::V4beta1::JobCategory>] # Job categories derived from # {Google::Cloud::Talent::V4beta1::Job#title Job#title} and # {Google::Cloud::Talent::V4beta1::Job#description Job#description}. class DerivedInfo; end # Options for job processing. # @!attribute [rw] disable_street_address_resolution # @return [true, false] # If set to `true`, the service does not attempt to resolve a # more precise address for the job. # @!attribute [rw] html_sanitization # @return [Google::Cloud::Talent::V4beta1::HtmlSanitization] # Option for job HTML content sanitization. Applied fields are: # # * description # * applicationInfo.instruction # * incentives # * qualifications # * responsibilities # # HTML tags in these fields may be stripped if sanitiazation isn't # disabled. # # Defaults to # {Google::Cloud::Talent::V4beta1::HtmlSanitization::SIMPLE_FORMATTING_ONLY HtmlSanitization::SIMPLE_FORMATTING_ONLY}. class ProcessingOptions; end end |