Cloud Talent Solution V4beta1 API - Class Google::Cloud::Talent::V4beta1::SearchJobsRequest (v0.5.0)

Reference documentation and code samples for the Cloud Talent Solution V4beta1 API class Google::Cloud::Talent::V4beta1::SearchJobsRequest.

The Request body of the SearchJobs call.

Inherits

  • Object

Extended By

  • Google::Protobuf::MessageExts::ClassMethods

Includes

  • Google::Protobuf::MessageExts

Methods

#custom_ranking_info

def custom_ranking_info() -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo
Returns

#custom_ranking_info=

def custom_ranking_info=(value) -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::CustomRankingInfo
Parameter
Returns

#disable_keyword_match

def disable_keyword_match() -> ::Boolean
Returns

#disable_keyword_match=

def disable_keyword_match=(value) -> ::Boolean
Parameter
Returns

#diversification_level

def diversification_level() -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::DiversificationLevel
Returns
  • (::Google::Cloud::Talent::V4beta1::SearchJobsRequest::DiversificationLevel) — 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.

#diversification_level=

def diversification_level=(value) -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::DiversificationLevel
Parameter
  • value (::Google::Cloud::Talent::V4beta1::SearchJobsRequest::DiversificationLevel) — 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.

Returns
  • (::Google::Cloud::Talent::V4beta1::SearchJobsRequest::DiversificationLevel) — 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.

#enable_broadening

def enable_broadening() -> ::Boolean
Returns
  • (::Boolean) — 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.

#enable_broadening=

def enable_broadening=(value) -> ::Boolean
Parameter
  • value (::Boolean) — 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.

Returns
  • (::Boolean) — 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.

#histogram_queries

def histogram_queries() -> ::Array<::Google::Cloud::Talent::V4beta1::HistogramQuery>
Returns
  • (::Array<::Google::Cloud::Talent::V4beta1::HistogramQuery>) —

    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: 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")])

#histogram_queries=

def histogram_queries=(value) -> ::Array<::Google::Cloud::Talent::V4beta1::HistogramQuery>
Parameter
  • value (::Array<::Google::Cloud::Talent::V4beta1::HistogramQuery>) —

    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: 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")])
Returns
  • (::Array<::Google::Cloud::Talent::V4beta1::HistogramQuery>) —

    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: 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")])

#job_query

def job_query() -> ::Google::Cloud::Talent::V4beta1::JobQuery
Returns

#job_query=

def job_query=(value) -> ::Google::Cloud::Talent::V4beta1::JobQuery
Parameter
Returns

#job_view

def job_view() -> ::Google::Cloud::Talent::V4beta1::JobView
Returns

#job_view=

def job_view=(value) -> ::Google::Cloud::Talent::V4beta1::JobView
Parameter
Returns

#keyword_match_mode

def keyword_match_mode() -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::KeywordMatchMode
Returns

#keyword_match_mode=

def keyword_match_mode=(value) -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::KeywordMatchMode
Parameter
Returns

#offset

def offset() -> ::Integer
Returns
  • (::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. 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).

#offset=

def offset=(value) -> ::Integer
Parameter
  • value (::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. 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).

Returns
  • (::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. 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).

#order_by

def order_by() -> ::String
Returns
  • (::String) —

    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.

#order_by=

def order_by=(value) -> ::String
Parameter
  • value (::String) —

    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.
Returns
  • (::String) —

    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.

#page_size

def page_size() -> ::Integer
Returns
  • (::Integer) — 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.

#page_size=

def page_size=(value) -> ::Integer
Parameter
  • value (::Integer) — 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.
Returns
  • (::Integer) — 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.

#page_token

def page_token() -> ::String
Returns
  • (::String) — 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.

#page_token=

def page_token=(value) -> ::String
Parameter
  • value (::String) — 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.
Returns
  • (::String) — 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.

#parent

def parent() -> ::String
Returns
  • (::String) — Required. The resource name of the tenant to search within.

    The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created. For example, "projects/foo".

#parent=

def parent=(value) -> ::String
Parameter
  • value (::String) — Required. The resource name of the tenant to search within.

    The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created. For example, "projects/foo".

Returns
  • (::String) — Required. The resource name of the tenant to search within.

    The format is "projects/{project_id}/tenants/{tenant_id}". For example, "projects/foo/tenant/bar". If tenant id is unspecified, a default tenant is created. For example, "projects/foo".

#request_metadata

def request_metadata() -> ::Google::Cloud::Talent::V4beta1::RequestMetadata
Returns
  • (::Google::Cloud::Talent::V4beta1::RequestMetadata) — 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.

#request_metadata=

def request_metadata=(value) -> ::Google::Cloud::Talent::V4beta1::RequestMetadata
Parameter
  • value (::Google::Cloud::Talent::V4beta1::RequestMetadata) — 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.
Returns
  • (::Google::Cloud::Talent::V4beta1::RequestMetadata) — 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.

#require_precise_result_size

def require_precise_result_size() -> ::Boolean
Returns
  • (::Boolean) — This field is deprecated.

#require_precise_result_size=

def require_precise_result_size=(value) -> ::Boolean
Parameter
  • value (::Boolean) — This field is deprecated.
Returns
  • (::Boolean) — This field is deprecated.

#search_mode

def search_mode() -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::SearchMode

#search_mode=

def search_mode=(value) -> ::Google::Cloud::Talent::V4beta1::SearchJobsRequest::SearchMode
Parameter