google-apis-jobs_v3 0.5.0 → 0.9.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 +17 -0
- data/lib/google/apis/jobs_v3/classes.rb +2 -2
- data/lib/google/apis/jobs_v3/gem_version.rb +3 -3
- data/lib/google/apis/jobs_v3/service.rb +8 -4
- metadata +13 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e459a9c03c0899738362864019b68e04dc399c5f476e8077ecdfa7d39dc49db5
|
4
|
+
data.tar.gz: 0535fe890562f447031a7c0f219d1ddc46b5a62a9f6b8b0b0b6686c1fa6223ff
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d24459cfe6fededb28de38c07373577613eda311866697c76331e1a4a25212730464ac35cbaf3a9d0c4f1c2a485997eb3ae13222e530e13355fb7dcfd807cd8
|
7
|
+
data.tar.gz: 4de3f21e5509f9c5fdda3a25aa901a32c5a8fc243eb9c4e8f35cca98b60ac46336747108edf637824309e1875a9451685a97ff98a732b279bea25fe286d6cdfd
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,22 @@
|
|
1
1
|
# Release history for google-apis-jobs_v3
|
2
2
|
|
3
|
+
### v0.9.0 (2021-07-31)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20210722
|
6
|
+
|
7
|
+
### v0.8.0 (2021-06-29)
|
8
|
+
|
9
|
+
* Regenerated using generator version 0.4.0
|
10
|
+
|
11
|
+
### v0.7.0 (2021-06-24)
|
12
|
+
|
13
|
+
* Unspecified changes
|
14
|
+
|
15
|
+
### v0.6.0 (2021-06-18)
|
16
|
+
|
17
|
+
* Regenerated from discovery document revision 20210611
|
18
|
+
* Regenerated using generator version 0.3.0
|
19
|
+
|
3
20
|
### v0.5.0 (2021-05-21)
|
4
21
|
|
5
22
|
* Regenerated from discovery document revision 20210506
|
@@ -1399,8 +1399,8 @@ module Google
|
|
1399
1399
|
# existence of a key. Boolean expressions (AND/OR/NOT) are supported up to 3
|
1400
1400
|
# levels of nesting (for example, "((A AND B AND C) OR NOT D) AND E"), a maximum
|
1401
1401
|
# of 100 comparisons or functions are allowed in the expression. The expression
|
1402
|
-
# must be <
|
1403
|
-
# "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`
|
1404
1404
|
# Corresponds to the JSON property `customAttributeFilter`
|
1405
1405
|
# @return [String]
|
1406
1406
|
attr_accessor :custom_attribute_filter
|
@@ -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.9.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 = "20210722"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -477,10 +477,14 @@ module Google
|
|
477
477
|
# format is "projects/`project_id`", for example, "projects/api-test-project".
|
478
478
|
# @param [String] filter
|
479
479
|
# Required. The filter string specifies the jobs to be enumerated. Supported
|
480
|
-
# operator: =, AND The fields eligible for filtering are: * `companyName`
|
481
|
-
#
|
482
|
-
#
|
483
|
-
#
|
480
|
+
# operator: =, AND The fields eligible for filtering are: * `companyName` * `
|
481
|
+
# requisitionId` * `status` Available values: OPEN, EXPIRED, ALL. Defaults to
|
482
|
+
# OPEN if no value is specified. At least one of `companyName` and `
|
483
|
+
# requisitionId` must present or an INVALID_ARGUMENT error is thrown. Sample
|
484
|
+
# Query: * companyName = "projects/api-test-project/companies/123" * companyName
|
485
|
+
# = "projects/api-test-project/companies/123" AND requisitionId = "req-1" *
|
486
|
+
# companyName = "projects/api-test-project/companies/123" AND status = "EXPIRED"
|
487
|
+
# * requisitionId = "req-1" * requisitionId = "req-1" AND status = "EXPIRED"
|
484
488
|
# @param [String] job_view
|
485
489
|
# Optional. The desired job attributes returned for jobs in the search response.
|
486
490
|
# Defaults to JobView.JOB_VIEW_FULL if no value is specified.
|
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.9.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-08-02 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.9.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: []
|