Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(talent): add query_language_code to talent.v4beta1.JobQuery (via synth) #9571

Merged
merged 1 commit into from
Oct 30, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions talent/google/cloud/talent_v4beta1/proto/filters.proto
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import "google/api/annotations.proto";
import "google/api/field_behavior.proto";
import "google/cloud/talent/v4beta1/common.proto";
import "google/protobuf/duration.proto";
import "google/protobuf/field_mask.proto";
import "google/protobuf/timestamp.proto";
import "google/protobuf/wrappers.proto";
import "google/type/date.proto";
Expand All @@ -41,6 +42,17 @@ message JobQuery {
// The maximum number of allowed characters is 255.
string query = 1;

// The language code of [query][google.cloud.talent.v4beta1.JobQuery.query].
// For example, "en-US". This field helps to better interpret the query.
//
// If a value isn't specified, the query language code is automatically
// detected, which may not be accurate.
//
// Language code should be in BCP-47 format, such as "en-US" or "sr-Latn".
// For more information, see
// [Tags for Identifying Languages](https://tools.ietf.org/html/bcp47).
string query_language_code = 14;

// This filter specifies the company entities to search against.
//
// If a value isn't specified, jobs are searched for against all
Expand Down
Loading