Class: Google::Cloud::Talent::V4::SearchJobsRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4::SearchJobsRequest
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/talent/v4/job_service.rb
Overview
The Request body of the SearchJobs
call.
Defined Under Namespace
Modules: DiversificationLevel, KeywordMatchMode, SearchMode Classes: CustomRankingInfo
Instance Attribute Summary collapse
-
#custom_ranking_info ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo
Controls over how job documents get ranked on top of existing relevance score (determined by API algorithm).
-
#disable_keyword_match ⇒ ::Boolean
deprecated
Deprecated.
This field is deprecated and may be removed in the next major version update.
-
#diversification_level ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::DiversificationLevel
Controls whether highly similar jobs are returned next to each other in the search results.
-
#enable_broadening ⇒ ::Boolean
Controls whether to broaden the search when it produces sparse results.
-
#histogram_queries ⇒ ::Array<::Google::Cloud::Talent::V4::HistogramQuery>
An expression specifies a histogram request against matching jobs.
-
#job_query ⇒ ::Google::Cloud::Talent::V4::JobQuery
Query used to search against jobs, such as keyword, location filters, etc.
-
#job_view ⇒ ::Google::Cloud::Talent::V4::JobView
The desired job attributes returned for jobs in the search response.
-
#keyword_match_mode ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode
Controls what keyword match options to use.
-
#max_page_size ⇒ ::Integer
A limit on the number of jobs returned in the search results.
-
#offset ⇒ ::Integer
An integer that specifies the current offset (that is, starting result location, amongst the jobs deemed by the API as relevant) in search results.
-
#order_by ⇒ ::String
The criteria determining how search results are sorted.
-
#page_token ⇒ ::String
The token specifying the current offset within search results.
-
#parent ⇒ ::String
Required.
-
#request_metadata ⇒ ::Google::Cloud::Talent::V4::RequestMetadata
Required.
-
#search_mode ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::SearchMode
Mode of a search.
Instance Attribute Details
#custom_ranking_info ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo
Returns Controls over how job documents get ranked on top of existing relevance score (determined by API algorithm).
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#disable_keyword_match ⇒ ::Boolean
This field is deprecated and may be removed in the next major version update.
Returns This field is deprecated. Please use SearchJobsRequest.keyword_match_mode going forward.
To migrate, disable_keyword_match set to false maps to KeywordMatchMode.KEYWORD_MATCH_ALL, and disable_keyword_match set to true maps to KeywordMatchMode.KEYWORD_MATCH_DISABLED. If SearchJobsRequest.keyword_match_mode is set, this field is ignored.
Controls whether to disable exact keyword match on Job.title, Job.description, Job.company_display_name, Job.addresses, Job.qualifications. When disable keyword match is turned off, a keyword match returns jobs that do not match given category filters when there are matching keywords. For example, for the query "program manager," a result is returned even if the job posting has the title "software developer," which doesn't fall into "program manager" ontology, but does have "program manager" appearing in its description.
For queries like "cloud" that don't contain title or location specific ontology, jobs with "cloud" keyword matches are returned regardless of this flag's value.
Use Company.keyword_searchable_job_custom_attributes if company-specific globally matched custom field/attribute string values are needed. Enabling keyword match improves recall of subsequent search requests.
Defaults to false.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#diversification_level ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::DiversificationLevel
Returns Controls whether highly similar jobs are returned next to each other in the search results. Jobs are identified as highly similar based on their titles, job categories, and locations. Highly similar results are clustered so that only one representative job of the cluster is displayed to the job seeker higher up in the results, with the other jobs being displayed lower down in the results.
Defaults to DiversificationLevel.SIMPLE if no value is specified.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#enable_broadening ⇒ ::Boolean
Returns Controls whether to broaden the search when it produces sparse results. Broadened queries append results to the end of the matching results list.
Defaults to false.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#histogram_queries ⇒ ::Array<::Google::Cloud::Talent::V4::HistogramQuery>
Returns An expression specifies a histogram request against matching jobs.
Expression syntax is an aggregation function call with histogram facets and other options.
Available aggregation function calls are:
count(string_histogram_facet)
: Count the number of matching entities, for each distinct attribute value.count(numeric_histogram_facet, list of buckets)
: Count the number of matching entities within each bucket.
A maximum of 200 histogram buckets are supported.
Data types:
- Histogram facet: facet names with format
[a-zA-Z][a-zA-Z0-9_]+
. - String: string like "any string with backslash escape for quote(\")."
- Number: whole number and floating point number like 10, -1 and -0.01.
- List: list of elements with comma(,) separator surrounded by square brackets, for example, [1, 2, 3] and ["one", "two", "three"].
Built-in constants:
- MIN (minimum number similar to java Double.MIN_VALUE)
- MAX (maximum number similar to java Double.MAX_VALUE)
Built-in functions:
- bucket(start, end[, label]): bucket built-in function creates a bucket with range of [start, end). Note that the end is exclusive, for example, bucket(1, MAX, "positive number") or bucket(1, 10).
Job histogram facets:
- company_display_name: histogram by Job.company_display_name.
- employment_type: histogram by Job.employment_types, for example, "FULL_TIME", "PART_TIME".
- company_size (DEPRECATED): histogram by CompanySize, for example, "SMALL", "MEDIUM", "BIG".
- publish_time_in_day: histogram by the Job.posting_publish_time in days. Must specify list of numeric buckets in spec.
- publish_time_in_month: histogram by the Job.posting_publish_time in months. Must specify list of numeric buckets in spec.
- publish_time_in_year: histogram by the Job.posting_publish_time in years. Must specify list of numeric buckets in spec.
- degree_types: histogram by the Job.degree_types, for example, "Bachelors", "Masters".
- job_level: histogram by the Job.job_level, for example, "Entry Level".
- country: histogram by the country code of jobs, for example, "US", "FR".
- admin1: histogram by the admin1 code of jobs, which is a global placeholder referring to the state, province, or the particular term a country uses to define the geographic structure below the country level, for example, "CA", "IL".
- city: histogram by a combination of the "city name, admin1 code". For example, "Mountain View, CA", "New York, NY".
- admin1_country: histogram by a combination of the "admin1 code, country", for example, "CA, US", "IL, US".
- city_coordinate: histogram by the city center's GPS coordinates (latitude and longitude), for example, 37.4038522,-122.0987765. Since the coordinates of a city center can change, customers may need to refresh them periodically.
- locale: histogram by the Job.language_code, for example, "en-US", "fr-FR".
- language: histogram by the language subtag of the Job.language_code, for example, "en", "fr".
- category: histogram by the JobCategory, for example, "COMPUTER_AND_IT", "HEALTHCARE".
- base_compensation_unit: histogram by the CompensationInfo.CompensationUnit of base salary, for example, "WEEKLY", "MONTHLY".
- base_compensation: histogram by the base salary. Must specify list of numeric buckets to group results by.
- annualized_base_compensation: histogram by the base annualized salary. Must specify list of numeric buckets to group results by.
- annualized_total_compensation: histogram by the total annualized salary. Must specify list of numeric buckets to group results by.
- string_custom_attribute: histogram by string Job.custom_attributes. Values can be accessed via square bracket notations like string_custom_attribute["key1"].
- numeric_custom_attribute: histogram by numeric Job.custom_attributes. Values can be accessed via square bracket notations like numeric_custom_attribute["key1"]. Must specify list of numeric buckets to group results by.
Example expressions:
count(admin1)
count(base_compensation, [bucket(1000, 10000), bucket(10000, 100000), bucket(100000, MAX)])
count(string_custom_attribute["some-string-custom-attribute"])
count(numeric_custom_attribute["some-numeric-custom-attribute"], [bucket(MIN, 0, "negative"), bucket(0, MAX, "non-negative")])
.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#job_query ⇒ ::Google::Cloud::Talent::V4::JobQuery
Returns Query used to search against jobs, such as keyword, location filters, etc.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#job_view ⇒ ::Google::Cloud::Talent::V4::JobView
Returns The desired job attributes returned for jobs in the search response. Defaults to JobView.JOB_VIEW_SMALL if no value is specified.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#keyword_match_mode ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode
Returns Controls what keyword match options to use. If both keyword_match_mode and disable_keyword_match are set, keyword_match_mode will take precedence.
Defaults to KeywordMatchMode.KEYWORD_MATCH_ALL if no value is specified.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#max_page_size ⇒ ::Integer
Returns A limit on the number of jobs returned in the search results. Increasing this value above the default value of 10 can increase search response time. The value can be between 1 and 100.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#offset ⇒ ::Integer
Returns An integer that specifies the current offset (that is, starting result location, amongst the jobs deemed by the API as relevant) in search results. This field is only considered if page_token is unset.
The maximum allowed value is 5000. Otherwise an error is thrown.
For example, 0 means to return results starting from the first matching job, and 10 means to return from the 11th job. This can be used for pagination, (for example, pageSize = 10 and offset = 10 means to return from the second page).
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#order_by ⇒ ::String
Returns The criteria determining how search results are sorted. Default is
"relevance desc"
.
Supported options are:
"relevance desc"
: By relevance descending, as determined by the API algorithms. Relevance thresholding of query results is only available with this ordering."posting_publish_time desc"
: By Job.posting_publish_time descending."posting_update_time desc"
: By Job.posting_update_time descending."title"
: By Job.title ascending."title desc"
: By Job.title descending."annualized_base_compensation"
: By job's CompensationInfo.annualized_base_compensation_range ascending. Jobs whose annualized base compensation is unspecified are put at the end of search results."annualized_base_compensation desc"
: By job's CompensationInfo.annualized_base_compensation_range descending. Jobs whose annualized base compensation is unspecified are put at the end of search results."annualized_total_compensation"
: By job's CompensationInfo.annualized_total_compensation_range ascending. Jobs whose annualized base compensation is unspecified are put at the end of search results."annualized_total_compensation desc"
: By job's CompensationInfo.annualized_total_compensation_range descending. Jobs whose annualized base compensation is unspecified are put at the end of search results."custom_ranking desc"
: By the relevance score adjusted to the SearchJobsRequest.CustomRankingInfo.ranking_expression with weight factor assigned by SearchJobsRequest.CustomRankingInfo.importance_level in descending order.- Location sorting: Use the special syntax to order jobs by distance:
"distance_from('Hawaii')"
: Order by distance from Hawaii.
"distance_from(19.89, 155.5)"
: Order by distance from a coordinate.
"distance_from('Hawaii'), distance_from('Puerto Rico')"
: Order by multiple locations. See details below.
"distance_from('Hawaii'), distance_from(19.89, 155.5)"
: Order by multiple locations. See details below.
The string can have a maximum of 256 characters. When multiple distance centers are provided, a job that is close to any of the distance centers would have a high rank. When a job has multiple locations, the job location closest to one of the distance centers will be used. Jobs that don't have locations will be ranked at the bottom. Distance is calculated with a precision of 11.3 meters (37.4 feet). Diversification strategy is still applied unless explicitly disabled in diversification_level.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#page_token ⇒ ::String
Returns The token specifying the current offset within search results. See SearchJobsResponse.next_page_token for an explanation of how to obtain the next set of query results.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#parent ⇒ ::String
Returns Required. The resource name of the tenant to search within.
The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenants/bar".
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#request_metadata ⇒ ::Google::Cloud::Talent::V4::RequestMetadata
Returns Required. The meta information collected about the job searcher, used to
improve the search quality of the service. The identifiers (such as
user_id
) are provided by users, and must be unique and consistent.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |
#search_mode ⇒ ::Google::Cloud::Talent::V4::SearchJobsRequest::SearchMode
Returns Mode of a search.
Defaults to SearchMode.JOB_SEARCH.
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 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 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 |
# File 'proto_docs/google/cloud/talent/v4/job_service.rb', line 449 class SearchJobsRequest include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Custom ranking information for # {::Google::Cloud::Talent::V4::SearchJobsRequest SearchJobsRequest}. # @!attribute [rw] importance_level # @return [::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo::ImportanceLevel] # Required. Controls over how important the score of # {::Google::Cloud::Talent::V4::SearchJobsRequest::CustomRankingInfo#ranking_expression CustomRankingInfo.ranking_expression} # gets applied to job's final ranking position. # # An error is thrown if not specified. # @!attribute [rw] ranking_expression # @return [::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 # {::Google::Cloud::Talent::V4::Job#custom_attributes 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) class CustomRankingInfo include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The importance level for # {::Google::Cloud::Talent::V4::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 # A string-represented enumeration of the job search mode. The service # operate differently for different modes of service. module SearchMode # The mode of the search method isn't specified. The default search # behavior is identical to JOB_SEARCH search behavior. SEARCH_MODE_UNSPECIFIED = 0 # The job search matches against all jobs, and featured jobs # (jobs with promotionValue > 0) are not specially handled. JOB_SEARCH = 1 # The job search matches only against featured jobs (jobs with a # promotionValue > 0). This method doesn't return any jobs having a # promotionValue <= 0. The search results order is determined by the # promotionValue (jobs with a higher promotionValue are returned higher up # in the search results), with relevance being used as a tiebreaker. FEATURED_JOB_SEARCH = 2 end # Controls whether highly similar jobs are returned next to each other in # the search results. Jobs are identified as highly similar based on # their titles, job categories, and locations. Highly similar results are # clustered so that only one representative job of the cluster is # displayed to the job seeker higher up in the results, with the other jobs # being displayed lower down in the results. # # If you are using pageToken to page through the result set, # latency might be lower but we can't guarantee that all results are # returned. If you are using page offset, latency might be higher but all # results are returned. module DiversificationLevel # The diversification level isn't specified. DIVERSIFICATION_LEVEL_UNSPECIFIED = 0 # Disables diversification. Jobs that would normally be pushed to the last # page would not have their positions altered. This may result in highly # similar jobs appearing in sequence in the search results. DISABLED = 1 # Default diversifying behavior. The result list is ordered so that # highly similar results are pushed to the end of the last page of search # results. SIMPLE = 2 # Only one job from the same company will be shown at once, other jobs # under same company are pushed to the end of the last page of search # result. ONE_PER_COMPANY = 3 # Similar to ONE_PER_COMPANY, but it allows at most two jobs in the # same company to be shown at once, the other jobs under same company are # pushed to the end of the last page of search result. TWO_PER_COMPANY = 4 # Similar to ONE_PER_COMPANY, but it allows at most three jobs in the # same company to be shown at once, the other jobs under same company are # dropped. MAX_THREE_PER_COMPANY = 6 # The result list is ordered such that somewhat similar results are pushed # to the end of the last page of the search results. This option is # recommended if SIMPLE diversification does not diversify enough. DIVERSIFY_BY_LOOSER_SIMILARITY = 5 end # Controls what keyword matching behavior the search has. When keyword # matching is enabled, a keyword match returns jobs that may not match given # category filters when there are matching keywords. For example, for the # query "program manager" with KeywordMatchMode set to KEYWORD_MATCH_ALL, a # job posting with the title "software developer," which doesn't fall into # "program manager" ontology, and "program manager" appearing in its # description will be surfaced. # # For queries like "cloud" that don't contain title or # location specific ontology, jobs with "cloud" keyword matches are returned # regardless of this enum's value. # # Use # {::Google::Cloud::Talent::V4::Company#keyword_searchable_job_custom_attributes Company.keyword_searchable_job_custom_attributes} # if company-specific globally matched custom field/attribute string values # are needed. Enabling keyword match improves recall of subsequent search # requests. module KeywordMatchMode # The keyword match option isn't specified. Defaults to # {::Google::Cloud::Talent::V4::SearchJobsRequest::KeywordMatchMode::KEYWORD_MATCH_ALL KeywordMatchMode.KEYWORD_MATCH_ALL} # behavior. KEYWORD_MATCH_MODE_UNSPECIFIED = 0 # Disables keyword matching. KEYWORD_MATCH_DISABLED = 1 # Enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}, # {::Google::Cloud::Talent::V4::Job#description Job.description}, # {::Google::Cloud::Talent::V4::Job#company_display_name Job.company_display_name}, # {::Google::Cloud::Talent::V4::Job#addresses Job.addresses}, # {::Google::Cloud::Talent::V4::Job#qualifications Job.qualifications}, and # keyword searchable # {::Google::Cloud::Talent::V4::Job#custom_attributes Job.custom_attributes} # fields. KEYWORD_MATCH_ALL = 2 # Only enable keyword matching over # {::Google::Cloud::Talent::V4::Job#title Job.title}. KEYWORD_MATCH_TITLE_ONLY = 3 end end |