google-apis-jobs_v3 0.3.0 → 0.8.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 +23 -0
- data/lib/google/apis/jobs_v3.rb +1 -1
- data/lib/google/apis/jobs_v3/classes.rb +18 -11
- data/lib/google/apis/jobs_v3/gem_version.rb +3 -3
- metadata +14 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9bf88595e7ddb5710497f5b16f3824c033940f87227aa571b75ea944baf19530
|
4
|
+
data.tar.gz: 260b4c9bcd6097133c85fb826f815736ade7e1f023c37377b7de3280f1065882
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 161c0b47b09a969eb9dfc6b92c190a343937f63a3dd5583e1ad89d7edd1b6645f9afba0d8a1a9725b40f9dd25eddba106c1f0f41ab32b3f99c49b7aa84fd4d61
|
7
|
+
data.tar.gz: 599272744132f85b13593c74fad19ce37393c4e11b6277abf83f6e343e70c36a6bd5569b3646408d3e0f2dece7d931179605a97bdff2bdef65da78efcd07ec8f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,28 @@
|
|
1
1
|
# Release history for google-apis-jobs_v3
|
2
2
|
|
3
|
+
### v0.8.0 (2021-06-29)
|
4
|
+
|
5
|
+
* Regenerated using generator version 0.4.0
|
6
|
+
|
7
|
+
### v0.7.0 (2021-06-24)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.6.0 (2021-06-18)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210611
|
14
|
+
* Regenerated using generator version 0.3.0
|
15
|
+
|
16
|
+
### v0.5.0 (2021-05-21)
|
17
|
+
|
18
|
+
* Regenerated from discovery document revision 20210506
|
19
|
+
* Unspecified changes
|
20
|
+
|
21
|
+
### v0.4.0 (2021-04-16)
|
22
|
+
|
23
|
+
* Regenerated from discovery document revision 20210413
|
24
|
+
* Regenerated using generator version 0.2.0
|
25
|
+
|
3
26
|
### v0.3.0 (2021-03-04)
|
4
27
|
|
5
28
|
* Unspecified changes
|
data/lib/google/apis/jobs_v3.rb
CHANGED
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# This is NOT the gem version.
|
31
31
|
VERSION = 'V3'
|
32
32
|
|
33
|
-
#
|
33
|
+
# See, edit, configure, and delete your Google Cloud Platform data
|
34
34
|
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
35
35
|
|
36
36
|
# Manage job postings
|
@@ -234,8 +234,8 @@ module Google
|
|
234
234
|
|
235
235
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
236
236
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
237
|
-
# specified otherwise, this must conform to the WGS84 standard. Values
|
238
|
-
# within normalized ranges.
|
237
|
+
# specified otherwise, this object must conform to the WGS84 standard. Values
|
238
|
+
# must be within normalized ranges.
|
239
239
|
# Corresponds to the JSON property `startCoordinates`
|
240
240
|
# @return [Google::Apis::JobsV3::LatLng]
|
241
241
|
attr_accessor :start_coordinates
|
@@ -1028,7 +1028,14 @@ module Google
|
|
1028
1028
|
# and requisition_id are not allowed. If the original requisition_id must be
|
1029
1029
|
# preserved, a custom field should be used for storage. It is also suggested to
|
1030
1030
|
# group the locations that close to each other in the same job for better search
|
1031
|
-
# experience.
|
1031
|
+
# experience. Jobs with multiple addresses must have their addresses with the
|
1032
|
+
# same LocationType to allow location filtering to work properly. (For example,
|
1033
|
+
# a Job with addresses "1600 Amphitheatre Parkway, Mountain View, CA, USA" and "
|
1034
|
+
# London, UK" may not have location filters applied correctly at search time
|
1035
|
+
# since the first is a LocationType.STREET_ADDRESS and the second is a
|
1036
|
+
# LocationType.LOCALITY.) If a job needs to have multiple addresses, it is
|
1037
|
+
# suggested to split it into multiple jobs with same LocationTypes. The maximum
|
1038
|
+
# number of allowed characters is 500.
|
1032
1039
|
# Corresponds to the JSON property `addresses`
|
1033
1040
|
# @return [Array<String>]
|
1034
1041
|
attr_accessor :addresses
|
@@ -1392,8 +1399,8 @@ module Google
|
|
1392
1399
|
# existence of a key. Boolean expressions (AND/OR/NOT) are supported up to 3
|
1393
1400
|
# levels of nesting (for example, "((A AND B AND C) OR NOT D) AND E"), a maximum
|
1394
1401
|
# of 100 comparisons or functions are allowed in the expression. The expression
|
1395
|
-
# must be <
|
1396
|
-
# "a\"" OR EMPTY(driving_license)) AND driving_years > 10`
|
1402
|
+
# must be < 10000 bytes in length. Sample Query: `(LOWER(driving_license)="class
|
1403
|
+
# \"a\"" OR EMPTY(driving_license)) AND driving_years > 10`
|
1397
1404
|
# Corresponds to the JSON property `customAttributeFilter`
|
1398
1405
|
# @return [String]
|
1399
1406
|
attr_accessor :custom_attribute_filter
|
@@ -1488,8 +1495,8 @@ module Google
|
|
1488
1495
|
|
1489
1496
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
1490
1497
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
1491
|
-
# specified otherwise, this must conform to the WGS84 standard. Values
|
1492
|
-
# within normalized ranges.
|
1498
|
+
# specified otherwise, this object must conform to the WGS84 standard. Values
|
1499
|
+
# must be within normalized ranges.
|
1493
1500
|
class LatLng
|
1494
1501
|
include Google::Apis::Core::Hashable
|
1495
1502
|
|
@@ -1586,8 +1593,8 @@ module Google
|
|
1586
1593
|
|
1587
1594
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
1588
1595
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
1589
|
-
# specified otherwise, this must conform to the WGS84 standard. Values
|
1590
|
-
# within normalized ranges.
|
1596
|
+
# specified otherwise, this object must conform to the WGS84 standard. Values
|
1597
|
+
# must be within normalized ranges.
|
1591
1598
|
# Corresponds to the JSON property `latLng`
|
1592
1599
|
# @return [Google::Apis::JobsV3::LatLng]
|
1593
1600
|
attr_accessor :lat_lng
|
@@ -1653,8 +1660,8 @@ module Google
|
|
1653
1660
|
|
1654
1661
|
# An object that represents a latitude/longitude pair. This is expressed as a
|
1655
1662
|
# pair of doubles to represent degrees latitude and degrees longitude. Unless
|
1656
|
-
# specified otherwise, this must conform to the WGS84 standard. Values
|
1657
|
-
# within normalized ranges.
|
1663
|
+
# specified otherwise, this object must conform to the WGS84 standard. Values
|
1664
|
+
# must be within normalized ranges.
|
1658
1665
|
# Corresponds to the JSON property `latLng`
|
1659
1666
|
# @return [Google::Apis::JobsV3::LatLng]
|
1660
1667
|
attr_accessor :lat_lng
|
@@ -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.8.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210611"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
metadata
CHANGED
@@ -1,29 +1,35 @@
|
|
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.8.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-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
|
+
- - "<"
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 2.a
|
20
23
|
type: :runtime
|
21
24
|
prerelease: false
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
23
26
|
requirements:
|
24
|
-
- - "
|
27
|
+
- - ">="
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0.4'
|
30
|
+
- - "<"
|
25
31
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
32
|
+
version: 2.a
|
27
33
|
description: This is the simple REST client for Cloud Talent Solution API V3. Simple
|
28
34
|
REST clients are Ruby client libraries that provide access to Google services via
|
29
35
|
their HTTP REST API endpoints. These libraries are generated and updated automatically
|
@@ -52,7 +58,7 @@ licenses:
|
|
52
58
|
metadata:
|
53
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
54
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-jobs_v3/CHANGELOG.md
|
55
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3/v0.8.0
|
56
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-jobs_v3
|
57
63
|
post_install_message:
|
58
64
|
rdoc_options: []
|
@@ -69,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
69
75
|
- !ruby/object:Gem::Version
|
70
76
|
version: '0'
|
71
77
|
requirements: []
|
72
|
-
rubygems_version: 3.2.
|
78
|
+
rubygems_version: 3.2.17
|
73
79
|
signing_key:
|
74
80
|
specification_version: 4
|
75
81
|
summary: Simple REST client for Cloud Talent Solution API V3
|