google-apis-jobs_v4 0.16.0 → 0.19.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c94c371e6a6c00968ce021f6aca6984ec8292f6f00c97ec20cf529515c599b3
4
- data.tar.gz: 1f67240287c853cfba849e085cacd827e7b5ef317ac064676c146784a2102e79
3
+ metadata.gz: cbf64a1ce3245a33598bd837541bc38ee72ef0f36add01261eeac74937f342db
4
+ data.tar.gz: 98fa14c9efb87ec544f768f60e0bad1b9e47428cabc4da4ee74107433382d7c6
5
5
  SHA512:
6
- metadata.gz: b23456a94a4ad7ab9ef402be444e4e60e1942f08df3d43a6942c710b408f4171f80b1a65229035dd9b00bc1ad0b2d1d79895d46d2f6a125e8bd6405c30686a30
7
- data.tar.gz: b422a6e3a930350b0945ad7c8fcd51e229c8f37a00498cee31d95598caa55d142cc86a74bac0a07c2826df302755d0c231257e9e905887f8f2511603f0bc22e7
6
+ metadata.gz: e4200094d21559fb3e79d2f7e086869d8b7369f49a0542d847d103009216744341adca5bcde1051973393471e576f43616731a001642044553ec442887a7c21c
7
+ data.tar.gz: ae3391bf890d8e4f2c560fe2affcdfd160f85667b188e7aea15c63ed4858771be5b05dd1e87c2f71a11154535972032ff48841502137e7fc8fc4810231e7e4b7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Release history for google-apis-jobs_v4
2
2
 
3
+ ### v0.19.0 (2022-06-18)
4
+
5
+ * Regenerated using generator version 0.7.0
6
+
7
+ ### v0.18.0 (2022-06-08)
8
+
9
+ * Regenerated from discovery document revision 20220606
10
+ * Regenerated using generator version 0.5.0
11
+
12
+ ### v0.17.0 (2022-05-26)
13
+
14
+ * Regenerated from discovery document revision 20220513
15
+
3
16
  ### v0.16.0 (2022-03-29)
4
17
 
5
18
  * Regenerated from discovery document revision 20220325
@@ -1293,14 +1293,18 @@ module Google
1293
1293
  attr_accessor :companies
1294
1294
 
1295
1295
  # This filter specifies the company Company.display_name of the jobs to search
1296
- # against. The company name must match the value exactly. Alternatively, if the
1297
- # value being searched for is wrapped in `SUBSTRING_MATCH([value])`, the company
1298
- # name must contain a case insensitive substring match of the value. Using this
1299
- # function may increase latency. Sample Value: `SUBSTRING_MATCH(google)` If a
1300
- # value isn't specified, jobs within the search results are associated with any
1301
- # company. If multiple values are specified, jobs within the search results may
1302
- # be associated with any of the specified companies. At most 20 company display
1303
- # name filters are allowed.
1296
+ # against. The company name must match the value exactly. Alternatively, the
1297
+ # value being searched for can be wrapped in different match operators. `
1298
+ # SUBSTRING_MATCH([value])` The company name must contain a case insensitive
1299
+ # substring match of the value. Using this function may increase latency. Sample
1300
+ # Value: `SUBSTRING_MATCH(google)` `MULTI_WORD_TOKEN_MATCH([value])` The value
1301
+ # will be treated as a multi word token and the company name must contain a case
1302
+ # insensitive match of the value. Using this function may increase latency.
1303
+ # Sample Value: `MULTI_WORD_TOKEN_MATCH(google)` If a value isn't specified,
1304
+ # jobs within the search results are associated with any company. If multiple
1305
+ # values are specified, jobs within the search results may be associated with
1306
+ # any of the specified companies. At most 20 company display name filters are
1307
+ # allowed.
1304
1308
  # Corresponds to the JSON property `companyDisplayNames`
1305
1309
  # @return [Array<String>]
1306
1310
  attr_accessor :company_display_names
@@ -1813,7 +1817,7 @@ module Google
1813
1817
  end
1814
1818
  end
1815
1819
 
1816
- # Next ID: 15
1820
+ # Next ID: 16
1817
1821
  class NamespacedDebugInput
1818
1822
  include Google::Apis::Core::Hashable
1819
1823
 
@@ -1924,6 +1928,13 @@ module Google
1924
1928
  # @return [Hash<String,Boolean>]
1925
1929
  attr_accessor :forced_rollouts
1926
1930
 
1931
+ # If set to ALL_OFF, organic selection will be disabled; if set to ALL_ON,
1932
+ # organic selection will be disabled, and only select launch experiments will
1933
+ # receive traffic. See go/mendel-aoao-runtime-design.
1934
+ # Corresponds to the JSON property `testingMode`
1935
+ # @return [String]
1936
+ attr_accessor :testing_mode
1937
+
1927
1938
  def initialize(**args)
1928
1939
  update!(**args)
1929
1940
  end
@@ -1944,6 +1955,7 @@ module Google
1944
1955
  @disable_organic_selection = args[:disable_organic_selection] if args.key?(:disable_organic_selection)
1945
1956
  @forced_flags = args[:forced_flags] if args.key?(:forced_flags)
1946
1957
  @forced_rollouts = args[:forced_rollouts] if args.key?(:forced_rollouts)
1958
+ @testing_mode = args[:testing_mode] if args.key?(:testing_mode)
1947
1959
  end
1948
1960
  end
1949
1961
 
@@ -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.16.0"
19
+ GEM_VERSION = "0.19.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.1"
22
+ GENERATOR_VERSION = "0.7.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220325"
25
+ REVISION = "20220606"
26
26
  end
27
27
  end
28
28
  end
@@ -785,6 +785,7 @@ module Google
785
785
  property :disable_organic_selection, as: 'disableOrganicSelection'
786
786
  hash :forced_flags, as: 'forcedFlags'
787
787
  hash :forced_rollouts, as: 'forcedRollouts'
788
+ property :testing_mode, as: 'testingMode'
788
789
  end
789
790
  end
790
791
 
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.16.0
4
+ version: 0.19.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-04-04 00:00:00.000000000 Z
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.4'
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.4'
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_v4/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v4/v0.16.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v4/v0.19.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-jobs_v4
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.5
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 V4