Class: Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo

Inherits:
Object
  • Object
show all
Extended by:
Protobuf::MessageExts::ClassMethods
Includes:
Protobuf::MessageExts
Defined in:
proto_docs/google/cloud/talent/v4beta1/job_service.rb

Overview

Custom ranking information for SearchJobsRequest.

Defined Under Namespace

Modules: ImportanceLevel

Instance Attribute Summary collapse

Instance Attribute Details

#importance_level::Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo::ImportanceLevel

Returns Required. Controls over how important the score of CustomRankingInfo.ranking_expression gets applied to job's final ranking position.

An error is thrown if not specified.

Returns:



481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# File 'proto_docs/google/cloud/talent/v4beta1/job_service.rb', line 481

class CustomRankingInfo
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The importance level for {::Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression}.
  module ImportanceLevel
    # Default value if the importance level isn't specified.
    IMPORTANCE_LEVEL_UNSPECIFIED = 0

    # The given ranking expression is of None importance, existing relevance
    # score (determined by API algorithm) dominates job's final ranking
    # position.
    NONE = 1

    # The given ranking expression is of Low importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    LOW = 2

    # The given ranking expression is of Mild importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    MILD = 3

    # The given ranking expression is of Medium importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    MEDIUM = 4

    # The given ranking expression is of High importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    HIGH = 5

    # The given ranking expression is of Extreme importance, and dominates
    # job's final ranking position with existing relevance
    # score (determined by API algorithm) ignored.
    EXTREME = 6
  end
end

#ranking_expression::String

Returns Required. Controls over how job documents get ranked on top of existing relevance score (determined by API algorithm). A combination of the ranking expression and relevance score is used to determine job's final ranking position.

The syntax for this expression is a subset of Google SQL syntax.

Supported operators are: +, -, *, /, where the left and right side of the operator is either a numeric Job.custom_attributes key, integer/double value or an expression that can be evaluated to a number.

Parenthesis are supported to adjust calculation precedence. The expression must be < 200 characters in length.

The expression is considered invalid for a job if the expression references custom attributes that are not populated on the job or if the expression results in a divide by zero. If an expression is invalid for a job, that job is demoted to the end of the results.

Sample ranking expression (year + 25) * 0.25 - (freshness / 0.5).

Returns:

  • (::String)

    Required. Controls over how job documents get ranked on top of existing relevance score (determined by API algorithm). A combination of the ranking expression and relevance score is used to determine job's final ranking position.

    The syntax for this expression is a subset of Google SQL syntax.

    Supported operators are: +, -, *, /, where the left and right side of the operator is either a numeric Job.custom_attributes key, integer/double value or an expression that can be evaluated to a number.

    Parenthesis are supported to adjust calculation precedence. The expression must be < 200 characters in length.

    The expression is considered invalid for a job if the expression references custom attributes that are not populated on the job or if the expression results in a divide by zero. If an expression is invalid for a job, that job is demoted to the end of the results.

    Sample ranking expression (year + 25) * 0.25 - (freshness / 0.5)



481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
# File 'proto_docs/google/cloud/talent/v4beta1/job_service.rb', line 481

class CustomRankingInfo
  include ::Google::Protobuf::MessageExts
  extend ::Google::Protobuf::MessageExts::ClassMethods

  # The importance level for {::Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression}.
  module ImportanceLevel
    # Default value if the importance level isn't specified.
    IMPORTANCE_LEVEL_UNSPECIFIED = 0

    # The given ranking expression is of None importance, existing relevance
    # score (determined by API algorithm) dominates job's final ranking
    # position.
    NONE = 1

    # The given ranking expression is of Low importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    LOW = 2

    # The given ranking expression is of Mild importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    MILD = 3

    # The given ranking expression is of Medium importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    MEDIUM = 4

    # The given ranking expression is of High importance in terms of job's
    # final ranking position compared to existing relevance
    # score (determined by API algorithm).
    HIGH = 5

    # The given ranking expression is of Extreme importance, and dominates
    # job's final ranking position with existing relevance
    # score (determined by API algorithm) ignored.
    EXTREME = 6
  end
end