google-apis-jobs_v3p1beta1 0.12.0 → 0.13.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: 0b2728e55ddc8415d64123355d4f7cb2bdbe2dc3318ce567bc3b85857d9ee6a7
4
- data.tar.gz: e132e479af1e8d74c76d562efadf01d17cb0861a12d4b1f84ee5416ae79e5449
3
+ metadata.gz: c368389fd29e6beb36ec0129e49efe38a4e1951da47055fe787931df3bdda1a8
4
+ data.tar.gz: e15d6ed92a72de682c63fd8f5da9d1dc9d96cf148e61fa31beeba62e8be2dead
5
5
  SHA512:
6
- metadata.gz: 864f26db91e27cf272d96a069a773a81404e90a8239e01ee2a3bb6608c3ff890199bccac18b309123b86d540f7ca13444c928f20b57f0b1cfcf7d6c777353507
7
- data.tar.gz: 68bff3ea37aac6a7f48e8db3e9a6ad3c1766792d3f3aaf42a37bfb108c3c34db44d0f849bddb8eae83d63c60a6328067eacda739aa516be62ac479fa093eef55
6
+ metadata.gz: 99ef075d2fd2c9abb5ddf7e56f1f13a75955945a9f0cb6f84f6454307fbfc8adc6a1c3939945cda21f80d8255f3506a605d5c54cd96d3dcff93708b85f25be97
7
+ data.tar.gz: a935ea246be0ca879d8ab6fcd439961b095c0708abaa884ab7ada293f216340b203d319e511012f004bc5342f983c0c1e567006f08c9c2424793da2ef960cf85
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-jobs_v3p1beta1
2
2
 
3
+ ### v0.13.0 (2022-03-09)
4
+
5
+ * Regenerated from discovery document revision 20220303
6
+ * Regenerated using generator version 0.4.1
7
+
3
8
  ### v0.12.0 (2021-12-16)
4
9
 
5
10
  * Unspecified changes
@@ -996,43 +996,44 @@ module Google
996
996
  # with histogram facets and other options. Available aggregation function calls
997
997
  # are: * `count(string_histogram_facet)`: Count the number of matching entity,
998
998
  # for each distinct attribute value. * `count(numeric_histogram_facet, list of
999
- # buckets)`: Count the number of matching entity within each bucket. Data types:
1000
- # * Histogram facet: facet names with format a-zA-Z+. * String: string like "any
1001
- # string with backslash escape for quote(\")." * Number: whole number and
1002
- # floating point number like 10, -1 and -0.01. * List: list of elements with
1003
- # comma(,) separator surrounded by square brackets. For example, [1, 2, 3] and ["
1004
- # one", "two", "three"]. Built-in constants: * MIN (minimum number similar to
1005
- # java Double.MIN_VALUE) * MAX (maximum number similar to java Double.MAX_VALUE)
1006
- # Built-in functions: * bucket(start, end[, label]): bucket built-in function
1007
- # creates a bucket with range of start, end). Note that the end is exclusive.
1008
- # For example, bucket(1, MAX, "positive number") or bucket(1, 10). Job histogram
1009
- # facets: * company_id: histogram by [Job.distributor_company_id. *
1010
- # company_display_name: histogram by Job.company_display_name. * employment_type:
1011
- # histogram by Job.employment_types. For example, "FULL_TIME", "PART_TIME". *
1012
- # company_size: histogram by CompanySize, for example, "SMALL", "MEDIUM", "BIG".
1013
- # * publish_time_in_day: histogram by the Job.publish_time in days. Must specify
1014
- # list of numeric buckets in spec. * publish_time_in_month: histogram by the Job.
1015
- # publish_time in months. Must specify list of numeric buckets in spec. *
1016
- # publish_time_in_year: histogram by the Job.publish_time in years. Must specify
1017
- # list of numeric buckets in spec. * degree_type: histogram by the Job.
1018
- # degree_type. For example, "Bachelors", "Masters". * job_level: histogram by
1019
- # the Job.job_level. For example, "Entry Level". * country: histogram by the
1020
- # country code of jobs. For example, "US", "FR". * admin1: histogram by the
1021
- # admin1 code of jobs, which is a global placeholder referring to the state,
1022
- # province, or the particular term a country uses to define the geographic
1023
- # structure below the country level. For example, "CA", "IL". * city: histogram
1024
- # by a combination of the "city name, admin1 code". For example, "Mountain View,
1025
- # CA", "New York, NY". * admin1_country: histogram by a combination of the "
1026
- # admin1 code, country". For example, "CA, US", "IL, US". * city_coordinate:
1027
- # histogram by the city center's GPS coordinates (latitude and longitude). For
1028
- # example, 37.4038522,-122.0987765. Since the coordinates of a city center can
1029
- # change, customers may need to refresh them periodically. * locale: histogram
1030
- # by the Job.language_code. For example, "en-US", "fr-FR". * language: histogram
1031
- # by the language subtag of the Job.language_code. For example, "en", "fr". *
1032
- # category: histogram by the JobCategory. For example, "COMPUTER_AND_IT", "
1033
- # HEALTHCARE". * base_compensation_unit: histogram by the CompensationUnit of
1034
- # base salary. For example, "WEEKLY", "MONTHLY". * base_compensation: histogram
1035
- # by the base salary. Must specify list of numeric buckets to group results by. *
999
+ # buckets)`: Count the number of matching entity within each bucket. A maximum
1000
+ # of 200 histogram buckets are supported. Data types: * Histogram facet: facet
1001
+ # names with format a-zA-Z+. * String: string like "any string with backslash
1002
+ # escape for quote(\")." * Number: whole number and floating point number like
1003
+ # 10, -1 and -0.01. * List: list of elements with comma(,) separator surrounded
1004
+ # by square brackets. For example, [1, 2, 3] and ["one", "two", "three"]. Built-
1005
+ # in constants: * MIN (minimum number similar to java Double.MIN_VALUE) * MAX (
1006
+ # maximum number similar to java Double.MAX_VALUE) Built-in functions: * bucket(
1007
+ # start, end[, label]): bucket built-in function creates a bucket with range of
1008
+ # start, end). Note that the end is exclusive. For example, bucket(1, MAX, "
1009
+ # positive number") or bucket(1, 10). Job histogram facets: * company_id:
1010
+ # histogram by [Job.distributor_company_id. * company_display_name: histogram by
1011
+ # Job.company_display_name. * employment_type: histogram by Job.employment_types.
1012
+ # For example, "FULL_TIME", "PART_TIME". * company_size: histogram by
1013
+ # CompanySize, for example, "SMALL", "MEDIUM", "BIG". * publish_time_in_day:
1014
+ # histogram by the Job.publish_time in days. Must specify list of numeric
1015
+ # buckets in spec. * publish_time_in_month: histogram by the Job.publish_time in
1016
+ # months. Must specify list of numeric buckets in spec. * publish_time_in_year:
1017
+ # histogram by the Job.publish_time in years. Must specify list of numeric
1018
+ # buckets in spec. * degree_type: histogram by the Job.degree_type. For example,
1019
+ # "Bachelors", "Masters". * job_level: histogram by the Job.job_level. For
1020
+ # example, "Entry Level". * country: histogram by the country code of jobs. For
1021
+ # example, "US", "FR". * admin1: histogram by the admin1 code of jobs, which is
1022
+ # a global placeholder referring to the state, province, or the particular term
1023
+ # a country uses to define the geographic structure below the country level. For
1024
+ # example, "CA", "IL". * city: histogram by a combination of the "city name,
1025
+ # admin1 code". For example, "Mountain View, CA", "New York, NY". *
1026
+ # admin1_country: histogram by a combination of the "admin1 code, country". For
1027
+ # example, "CA, US", "IL, US". * city_coordinate: histogram by the city center's
1028
+ # GPS coordinates (latitude and longitude). For example, 37.4038522,-122.0987765.
1029
+ # Since the coordinates of a city center can change, customers may need to
1030
+ # refresh them periodically. * locale: histogram by the Job.language_code. For
1031
+ # example, "en-US", "fr-FR". * language: histogram by the language subtag of the
1032
+ # Job.language_code. For example, "en", "fr". * category: histogram by the
1033
+ # JobCategory. For example, "COMPUTER_AND_IT", "HEALTHCARE". *
1034
+ # base_compensation_unit: histogram by the CompensationUnit of base salary. For
1035
+ # example, "WEEKLY", "MONTHLY". * base_compensation: histogram by the base
1036
+ # salary. Must specify list of numeric buckets to group results by. *
1036
1037
  # annualized_base_compensation: histogram by the base annualized salary. Must
1037
1038
  # specify list of numeric buckets to group results by. *
1038
1039
  # annualized_total_compensation: histogram by the total annualized salary. Must
@@ -1508,11 +1509,15 @@ module Google
1508
1509
  # @return [Google::Apis::JobsV3p1beta1::CommuteFilter]
1509
1510
  attr_accessor :commute_filter
1510
1511
 
1511
- # Optional. This filter specifies the exact company display name of the jobs to
1512
- # search against. If a value isn't specified, jobs within the search results are
1513
- # associated with any company. If multiple values are specified, jobs within the
1514
- # search results may be associated with any of the specified companies. At most
1515
- # 20 company display name filters are allowed.
1512
+ # Optional. This filter specifies the company Company.display_name of the jobs
1513
+ # to search against. The company name must match the value exactly.
1514
+ # Alternatively, if the value being searched for is wrapped in SUBSTRING_MATCH([
1515
+ # value]), the company name must contain a case insensitive substring match of
1516
+ # the value. Using this function may increase latency. Sample Value:
1517
+ # SUBSTRING_MATCH(google) If a value isn't specified, jobs within the search
1518
+ # results are associated with any company. If multiple values are specified,
1519
+ # jobs within the search results may be associated with any of the specified
1520
+ # companies. At most 20 company display name filters are allowed.
1516
1521
  # Corresponds to the JSON property `companyDisplayNames`
1517
1522
  # @return [Array<String>]
1518
1523
  attr_accessor :company_display_names
@@ -2319,8 +2324,8 @@ module Google
2319
2324
  attr_accessor :recipients
2320
2325
 
2321
2326
  # Required. CLDR region code of the country/region of the address. This is never
2322
- # inferred and it is up to the user to ensure the value is correct. See http://
2323
- # cldr.unicode.org/ and http://www.unicode.org/cldr/charts/30/supplemental/
2327
+ # inferred and it is up to the user to ensure the value is correct. See https://
2328
+ # cldr.unicode.org/ and https://www.unicode.org/cldr/charts/30/supplemental/
2324
2329
  # territory_information.html for details. Example: "CH" for Switzerland.
2325
2330
  # Corresponds to the JSON property `regionCode`
2326
2331
  # @return [String]
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module JobsV3p1beta1
18
18
  # Version of the google-apis-jobs_v3p1beta1 gem
19
- GEM_VERSION = "0.12.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.4.0"
22
+ GENERATOR_VERSION = "0.4.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20210830"
25
+ REVISION = "20220303"
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_v3p1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.13.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-01-10 00:00:00.000000000 Z
11
+ date: 2022-03-14 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/main/generated/google-apis-jobs_v3p1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3p1beta1/v0.12.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-jobs_v3p1beta1/v0.13.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-jobs_v3p1beta1
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.4
78
+ rubygems_version: 3.3.5
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Talent Solution API V3p1beta1