Class: Google::Cloud::Talent::V4beta1::CompleteQueryRequest
- Inherits:
-
Object
- Object
- Google::Cloud::Talent::V4beta1::CompleteQueryRequest
- Defined in:
- lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb
Overview
Auto-complete parameters.
Defined Under Namespace
Modules: CompletionScope, CompletionType
Instance Attribute Summary collapse
-
#company ⇒ String
If provided, restricts completion to specified company.
-
#language_codes ⇒ Array<String>
The list of languages of the query.
-
#page_size ⇒ Integer
Required.
-
#parent ⇒ String
Required.
-
#query ⇒ String
Required.
-
#scope ⇒ Google::Cloud::Talent::V4beta1::CompleteQueryRequest::CompletionScope
The scope of the completion.
-
#type ⇒ Google::Cloud::Talent::V4beta1::CompleteQueryRequest::CompletionType
The completion topic.
Instance Attribute Details
#company ⇒ String
Returns If provided, restricts completion to specified company.
The format is "projects/project_id/tenants/tenant_id/companies/company_id", for example, "projects/foo/tenants/bar/companies/baz".
If tenant id is unspecified, the default tenant is used, for example, "projects/foo".
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#language_codes ⇒ Array<String>
Returns The list of languages of the query. This is the BCP-47 language code, such as "en-US" or "sr-Latn". For more information, see Tags for Identifying Languages.
For CompletionType::JOB_TITLE type, only open jobs with the same language_codes are returned.
For CompletionType::COMPANY_NAME type, only companies having open jobs with the same language_codes are returned.
For CompletionType::COMBINED type, only open jobs with the same language_codes or companies having open jobs with the same language_codes are returned.
The maximum number of allowed characters is 255.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#page_size ⇒ Integer
Returns Required. Completion result count.
The maximum allowed page size is 10.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#parent ⇒ String
Returns Required. Resource name of tenant the completion is performed within.
The format is "projects/project_id/tenants/tenant_id", for example, "projects/foo/tenant/bar".
If tenant id is unspecified, the default tenant is used, for example, "projects/foo".
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#query ⇒ String
Returns Required. The query used to generate suggestions.
The maximum number of allowed characters is 255.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#scope ⇒ Google::Cloud::Talent::V4beta1::CompleteQueryRequest::CompletionScope
Returns The scope of the completion. The defaults is CompletionScope::PUBLIC.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |
#type ⇒ Google::Cloud::Talent::V4beta1::CompleteQueryRequest::CompletionType
Returns The completion topic. The default is CompletionType::COMBINED.
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'lib/google/cloud/talent/v4beta1/doc/google/cloud/talent/v4beta1/completion_service.rb', line 86 class CompleteQueryRequest # Enum to specify the scope of completion. module CompletionScope # Default value. COMPLETION_SCOPE_UNSPECIFIED = 0 # Suggestions are based only on the data provided by the client. TENANT = 1 # Suggestions are based on all jobs data in the system that's visible to # the client PUBLIC = 2 end # Enum to specify auto-completion topics. module CompletionType # Default value. COMPLETION_TYPE_UNSPECIFIED = 0 # Only suggest job titles. JOB_TITLE = 1 # Only suggest company names. COMPANY_NAME = 2 # Suggest both job titles and company names. COMBINED = 3 end end |