google-apis-jobs_v3 0.14.0 → 0.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +13 -0
- data/lib/google/apis/jobs_v3/classes.rb +20 -8
- data/lib/google/apis/jobs_v3/gem_version.rb +3 -3
- data/lib/google/apis/jobs_v3/representations.rb +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf806622fa177d539debf75a9a2887cc1810e8e26e1037800f44af5cc7f5d25d
|
4
|
+
data.tar.gz: 10b6cfd6185aa390592259433d61837f69d7995f5c6778a08511b1c143aa0860
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 59c079e6eb26b41ce835ea43c44693a36259b656bd5181e20dd850e2f2ad68dbba5f192177d0021363ff4cc7fc5f22d6bbc2d3a2688ab16ebd4f9b8b0f101351
|
7
|
+
data.tar.gz: 9138039c79f2275b8c5e972e22119ed05b1fba051911bbf8fd5fcf29b98968237c03253c74980ec7c4726a1af93bbf63a73fe7ffaa099b2a069376607bf41f9d
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,18 @@
|
|
1
1
|
# Release history for google-apis-jobs_v3
|
2
2
|
|
3
|
+
### v0.17.0 (2022-06-17)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.6.0
|
6
|
+
|
7
|
+
### v0.16.0 (2022-06-08)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20220606
|
10
|
+
* Regenerated using generator version 0.5.0
|
11
|
+
|
12
|
+
### v0.15.0 (2022-05-26)
|
13
|
+
|
14
|
+
* Regenerated from discovery document revision 20220513
|
15
|
+
|
3
16
|
### v0.14.0 (2022-03-30)
|
4
17
|
|
5
18
|
* Regenerated from discovery document revision 20220325
|
@@ -1366,13 +1366,17 @@ module Google
|
|
1366
1366
|
|
1367
1367
|
# Optional. This filter specifies the company Company.display_name of the jobs
|
1368
1368
|
# to search against. The company name must match the value exactly.
|
1369
|
-
# Alternatively,
|
1370
|
-
# value])
|
1371
|
-
# the value. Using this function may increase
|
1372
|
-
# SUBSTRING_MATCH(google)`
|
1373
|
-
#
|
1374
|
-
#
|
1375
|
-
#
|
1369
|
+
# Alternatively, the value being searched for can be wrapped in different match
|
1370
|
+
# operators. `SUBSTRING_MATCH([value])` The company name must contain a case
|
1371
|
+
# insensitive substring match of the value. Using this function may increase
|
1372
|
+
# latency. Sample Value: `SUBSTRING_MATCH(google)` `MULTI_WORD_TOKEN_MATCH([
|
1373
|
+
# value])` The value will be treated as a multi word token and the company name
|
1374
|
+
# must contain a case insensitive match of the value. Using this function may
|
1375
|
+
# increase latency. Sample Value: `MULTI_WORD_TOKEN_MATCH(google)` If a value
|
1376
|
+
# isn't specified, jobs within the search results are associated with any
|
1377
|
+
# company. If multiple values are specified, jobs within the search results may
|
1378
|
+
# be associated with any of the specified companies. At most 20 company display
|
1379
|
+
# name filters are allowed.
|
1376
1380
|
# Corresponds to the JSON property `companyDisplayNames`
|
1377
1381
|
# @return [Array<String>]
|
1378
1382
|
attr_accessor :company_display_names
|
@@ -1829,7 +1833,7 @@ module Google
|
|
1829
1833
|
end
|
1830
1834
|
end
|
1831
1835
|
|
1832
|
-
# Next ID:
|
1836
|
+
# Next ID: 16
|
1833
1837
|
class NamespacedDebugInput
|
1834
1838
|
include Google::Apis::Core::Hashable
|
1835
1839
|
|
@@ -1940,6 +1944,13 @@ module Google
|
|
1940
1944
|
# @return [Hash<String,Boolean>]
|
1941
1945
|
attr_accessor :forced_rollouts
|
1942
1946
|
|
1947
|
+
# If set to ALL_OFF, organic selection will be disabled; if set to ALL_ON,
|
1948
|
+
# organic selection will be disabled, and only select launch experiments will
|
1949
|
+
# receive traffic. See go/mendel-aoao-runtime-design.
|
1950
|
+
# Corresponds to the JSON property `testingMode`
|
1951
|
+
# @return [String]
|
1952
|
+
attr_accessor :testing_mode
|
1953
|
+
|
1943
1954
|
def initialize(**args)
|
1944
1955
|
update!(**args)
|
1945
1956
|
end
|
@@ -1960,6 +1971,7 @@ module Google
|
|
1960
1971
|
@disable_organic_selection = args[:disable_organic_selection] if args.key?(:disable_organic_selection)
|
1961
1972
|
@forced_flags = args[:forced_flags] if args.key?(:forced_flags)
|
1962
1973
|
@forced_rollouts = args[:forced_rollouts] if args.key?(:forced_rollouts)
|
1974
|
+
@testing_mode = args[:testing_mode] if args.key?(:testing_mode)
|
1963
1975
|
end
|
1964
1976
|
end
|
1965
1977
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module JobsV3
|
18
18
|
# Version of the google-apis-jobs_v3 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.17.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.6.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20220606"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-jobs_v3
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.17.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: 2022-
|
11
|
+
date: 2022-06-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.6'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.6'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -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/main/generated/google-apis-jobs_v3/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3/v0.17.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-jobs_v3
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.3.
|
78
|
+
rubygems_version: 3.3.14
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for Cloud Talent Solution API V3
|