google-apis-jobs_v4 0.10.0 → 0.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/google/apis/jobs_v4/classes.rb +26 -13
- data/lib/google/apis/jobs_v4/gem_version.rb +2 -2
- data/lib/google/apis/jobs_v4/representations.rb +1 -0
- data/lib/google/apis/jobs_v4.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 99e8eb87c24e3dd2314aa38ee1f7aec81f745a7a2768de03cf46a42b502240b8
|
4
|
+
data.tar.gz: 3e91a68fc080e37035c14084499ce84982eef77275223ed8c86b439d24d3d4e2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 382f89020b4482807ce39a2785540faca6ca3cce90145e198691fa74a82fa1213fc7c96831eba0f1b5604ba14df5c829274f8f9160beb809c697995ab9e9fea9
|
7
|
+
data.tar.gz: df68cad2c78a9d5b2c6d2aba3cd24deddd2f47a87662a9181e4c0fe4e2cfbdd4b74574922d21f64ab5d98318b5a4b2d06f67c29cd005994c0ffc693d9ce17d13
|
data/CHANGELOG.md
CHANGED
@@ -809,7 +809,7 @@ module Google
|
|
809
809
|
# Supported operators are: +, -, *, /, where the left and right side of the
|
810
810
|
# operator is either a numeric Job.custom_attributes key, integer/double value
|
811
811
|
# or an expression that can be evaluated to a number. Parenthesis are supported
|
812
|
-
# to adjust calculation precedence. The expression must be <
|
812
|
+
# to adjust calculation precedence. The expression must be < 200 characters in
|
813
813
|
# length. The expression is considered invalid for a job if the expression
|
814
814
|
# references custom attributes that are not populated on the job or if the
|
815
815
|
# expression results in a divide by zero. If an expression is invalid for a job,
|
@@ -2263,18 +2263,23 @@ module Google
|
|
2263
2263
|
# @return [Google::Apis::JobsV4::CustomRankingInfo]
|
2264
2264
|
attr_accessor :custom_ranking_info
|
2265
2265
|
|
2266
|
-
#
|
2267
|
-
#
|
2268
|
-
#
|
2269
|
-
#
|
2270
|
-
#
|
2271
|
-
#
|
2272
|
-
#
|
2273
|
-
#
|
2274
|
-
#
|
2275
|
-
#
|
2276
|
-
#
|
2277
|
-
#
|
2266
|
+
# This field is deprecated. Please use SearchJobsRequest.keyword_match_mode
|
2267
|
+
# going forward. To migrate, disable_keyword_match set to false maps to
|
2268
|
+
# KeywordMatchMode.KEYWORD_MATCH_ALL, and disable_keyword_match set to true maps
|
2269
|
+
# to KeywordMatchMode.KEYWORD_MATCH_DISABLED. If SearchJobsRequest.
|
2270
|
+
# keyword_match_mode is set, this field is ignored. Controls whether to disable
|
2271
|
+
# exact keyword match on Job.title, Job.description, Job.company_display_name,
|
2272
|
+
# Job.addresses, Job.qualifications. When disable keyword match is turned off, a
|
2273
|
+
# keyword match returns jobs that do not match given category filters when there
|
2274
|
+
# are matching keywords. For example, for the query "program manager," a result
|
2275
|
+
# is returned even if the job posting has the title "software developer," which
|
2276
|
+
# doesn't fall into "program manager" ontology, but does have "program manager"
|
2277
|
+
# appearing in its description. For queries like "cloud" that don't contain
|
2278
|
+
# title or location specific ontology, jobs with "cloud" keyword matches are
|
2279
|
+
# returned regardless of this flag's value. Use Company.
|
2280
|
+
# keyword_searchable_job_custom_attributes if company-specific globally matched
|
2281
|
+
# custom field/attribute string values are needed. Enabling keyword match
|
2282
|
+
# improves recall of subsequent search requests. Defaults to false.
|
2278
2283
|
# Corresponds to the JSON property `disableKeywordMatch`
|
2279
2284
|
# @return [Boolean]
|
2280
2285
|
attr_accessor :disable_keyword_match
|
@@ -2369,6 +2374,13 @@ module Google
|
|
2369
2374
|
# @return [String]
|
2370
2375
|
attr_accessor :job_view
|
2371
2376
|
|
2377
|
+
# Controls what keyword match options to use. If both keyword_match_mode and
|
2378
|
+
# disable_keyword_match are set, keyword_match_mode will take precedence.
|
2379
|
+
# Defaults to KeywordMatchMode.KEYWORD_MATCH_ALL if no value is specified.
|
2380
|
+
# Corresponds to the JSON property `keywordMatchMode`
|
2381
|
+
# @return [String]
|
2382
|
+
attr_accessor :keyword_match_mode
|
2383
|
+
|
2372
2384
|
# A limit on the number of jobs returned in the search results. Increasing this
|
2373
2385
|
# value above the default value of 10 can increase search response time. The
|
2374
2386
|
# value can be between 1 and 100.
|
@@ -2455,6 +2467,7 @@ module Google
|
|
2455
2467
|
@histogram_queries = args[:histogram_queries] if args.key?(:histogram_queries)
|
2456
2468
|
@job_query = args[:job_query] if args.key?(:job_query)
|
2457
2469
|
@job_view = args[:job_view] if args.key?(:job_view)
|
2470
|
+
@keyword_match_mode = args[:keyword_match_mode] if args.key?(:keyword_match_mode)
|
2458
2471
|
@max_page_size = args[:max_page_size] if args.key?(:max_page_size)
|
2459
2472
|
@offset = args[:offset] if args.key?(:offset)
|
2460
2473
|
@order_by = args[:order_by] if args.key?(:order_by)
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module JobsV4
|
18
18
|
# Version of the google-apis-jobs_v4 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.11.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210830"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -857,6 +857,7 @@ module Google
|
|
857
857
|
property :job_query, as: 'jobQuery', class: Google::Apis::JobsV4::JobQuery, decorator: Google::Apis::JobsV4::JobQuery::Representation
|
858
858
|
|
859
859
|
property :job_view, as: 'jobView'
|
860
|
+
property :keyword_match_mode, as: 'keywordMatchMode'
|
860
861
|
property :max_page_size, as: 'maxPageSize'
|
861
862
|
property :offset, as: 'offset'
|
862
863
|
property :order_by, as: 'orderBy'
|
data/lib/google/apis/jobs_v4.rb
CHANGED
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V4'
|
32
32
|
|
33
|
-
# See, edit, configure, and delete your Google Cloud
|
33
|
+
# See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account.
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
|
36
36
|
# Manage job postings
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-jobs_v4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-09-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-jobs_v4/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v4/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v4/v0.11.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-jobs_v4
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|