google-apis-cloudscheduler_v1 0.44.0 → 0.45.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 18e0850c9d1437f5af8d707d506d41f716590a52749fd2afe3b330ada9067c83
4
- data.tar.gz: 646c89c0f16c9e688334e73322c2af9e4f70d7d7fce069bd8d8aebca3345d68c
3
+ metadata.gz: e39e1c5c2c746d8f857271c899fa988a81108c44c5c44836f1a75098fb8fc10c
4
+ data.tar.gz: b2c21086882fc3ec7cff8314141da38ea7df7f14c450e1847185f354d331b563
5
5
  SHA512:
6
- metadata.gz: c08e6625b64104836c7e596cc85c41112337f1e394d750ede017d80b1ad69d5930f0878d8172eb86f4db197f8a1e561dbc333905dabd3510788672d54fbfb5ed
7
- data.tar.gz: 524fc7f88032f03f401d048f4ea44cd1ec1d8547541de4a21c6e0e3ff27543eea4a03c7e88dfaf25d9dd88f751600cc4a7f22bc05e9dcf812cea052124d73eb9
6
+ metadata.gz: 7b564bb106cf1c0edf9fbec931705b10a22584014ca5115dbed21f0eff8b8e76b8cddae41c0b7afd0058104ecb1be58e1bfcb08e240e4b58ad17851d6b82bfd5
7
+ data.tar.gz: 4410f698bf06b471f02a33508fdf8451228ebce19e887cf7090313847e9e65158ab888d732caea9cb299500e45eea7a6c587105820fd2f35739ceb4b0d878eda
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudscheduler_v1
2
2
 
3
+ ### v0.45.0 (2026-06-14)
4
+
5
+ * Regenerated from discovery document revision 20260522
6
+ * Regenerated using generator version 0.19.0
7
+
3
8
  ### v0.44.0 (2026-02-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20260202
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/scheduler/) may provide gui
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 3.1+.
86
+ This library is supported on Ruby 3.2+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -61,16 +61,18 @@ module Google
61
61
  # will be set to true. * `X-CloudScheduler-JobName`: This header will contain
62
62
  # the job name. * `X-CloudScheduler-ScheduleTime`: For Cloud Scheduler jobs
63
63
  # specified in the unix-cron format, this header will contain the job schedule
64
- # as an offset of UTC parsed according to RFC3339. If the job has a body and the
65
- # following headers are not set by the user, Cloud Scheduler sets default values:
66
- # * `Content-Type`: This will be set to `"application/octet-stream"`. You can
67
- # override this default by explicitly setting `Content-Type` to a particular
68
- # media type when creating the job. For example, you can set `Content-Type` to `"
69
- # application/json"`. The headers below are output only. They cannot be set or
70
- # overridden: * `Content-Length`: This is computed by Cloud Scheduler. * `X-
71
- # Google-*`: For Google internal use only. * `X-AppEngine-*`: For Google
72
- # internal use only. In addition, some App Engine headers, which contain job-
73
- # specific information, are also be sent to the job handler.
64
+ # as an offset of UTC parsed according to RFC3339. Remains constant across
65
+ # retries and can be used for [job request deduplication](https://docs.cloud.
66
+ # google.com/scheduler/docs/overview#job-deduplication). If the job has a body
67
+ # and the following headers are not set by the user, Cloud Scheduler sets
68
+ # default values: * `Content-Type`: This will be set to `"application/octet-
69
+ # stream"`. You can override this default by explicitly setting `Content-Type`
70
+ # to a particular media type when creating the job. For example, you can set `
71
+ # Content-Type` to `"application/json"`. The headers below are output only. They
72
+ # cannot be set or overridden: * `Content-Length`: This is computed by Cloud
73
+ # Scheduler. * `X-Google-*`: For Google internal use only. * `X-AppEngine-*`:
74
+ # For Google internal use only. In addition, some App Engine headers, which
75
+ # contain job-specific information, are also be sent to the job handler.
74
76
  # Corresponds to the JSON property `headers`
75
77
  # @return [Hash<String,String>]
76
78
  attr_accessor :headers
@@ -260,17 +262,22 @@ module Google
260
262
  # list of headers that are ignored or replaced is below: * Host: This will be
261
263
  # computed by Cloud Scheduler and derived from uri. * `Content-Length`: This
262
264
  # will be computed by Cloud Scheduler. * `User-Agent`: This will be set to `"
263
- # Google-Cloud-Scheduler"`. * `X-Google-*`: Google internal use only. * `X-
264
- # AppEngine-*`: Google internal use only. * `X-CloudScheduler`: This header will
265
- # be set to true. * `X-CloudScheduler-JobName`: This header will contain the job
266
- # name. * `X-CloudScheduler-ScheduleTime`: For Cloud Scheduler jobs specified in
267
- # the unix-cron format, this header will contain the job schedule as an offset
268
- # of UTC parsed according to RFC3339. If the job has a body and the following
269
- # headers are not set by the user, Cloud Scheduler sets default values: * `
270
- # Content-Type`: This will be set to `"application/octet-stream"`. You can
271
- # override this default by explicitly setting `Content-Type` to a particular
272
- # media type when creating the job. For example, you can set `Content-Type` to `"
273
- # application/json"`. The total size of headers must be less than 80KB.
265
+ # Google-Cloud-Scheduler"`. * `X-Google-*`: Used internally by Google. If
266
+ # present in an external user request, it is replaced by the internal header. * `
267
+ # X-AppEngine-*`: Used internally by Google. If present in an external user
268
+ # request, it is replaced by the internal header. * `X-CloudScheduler`: This
269
+ # header will be set to true. * `X-CloudScheduler-JobName`: This header will
270
+ # contain the job name. * `X-CloudScheduler-ScheduleTime`: For Cloud Scheduler
271
+ # jobs specified in the unix-cron format, this header will contain the job
272
+ # schedule as an offset of UTC parsed according to RFC3339. Remains constant
273
+ # across retries and can be used for [job request deduplication](https://docs.
274
+ # cloud.google.com/scheduler/docs/overview#job-deduplication). If the job has a
275
+ # body and the following headers are not set by the user, Cloud Scheduler sets
276
+ # default values: * `Content-Type`: This will be set to `"application/octet-
277
+ # stream"`. You can override this default by explicitly setting `Content-Type`
278
+ # to a particular media type when creating the job. For example, you can set `
279
+ # Content-Type` to `"application/json"`. The total size of headers must be less
280
+ # than 80KB.
274
281
  # Corresponds to the JSON property `headers`
275
282
  # @return [Hash<String,String>]
276
283
  attr_accessor :headers
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudschedulerV1
18
18
  # Version of the google-apis-cloudscheduler_v1 gem
19
- GEM_VERSION = "0.44.0"
19
+ GEM_VERSION = "0.45.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.18.0"
22
+ GENERATOR_VERSION = "0.19.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20260202"
25
+ REVISION = "20260522"
26
26
  end
27
27
  end
28
28
  end
@@ -113,15 +113,20 @@ module Google
113
113
  end
114
114
 
115
115
  # Lists information about the supported locations for this service. This method
116
- # can be called in two ways: * **List all public locations:** Use the path `GET /
117
- # v1/locations`. * **List project-visible locations:** Use the path `GET /v1/
118
- # projects/`project_id`/locations`. This may include public locations as well as
119
- # private or other locations specifically visible to the project.
116
+ # lists locations based on the resource scope provided in the
117
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
118
+ # the method lists the public locations available to all projects. * **Project-
119
+ # specific locations**: If `name` follows the format `projects/`project``, the
120
+ # method lists locations visible to that specific project. This includes public,
121
+ # private, or other project-specific locations enabled for the project. For gRPC
122
+ # and client library implementations, the resource name is passed as the `name`
123
+ # field. For direct service calls, the resource name is incorporated into the
124
+ # request path based on the specific service implementation and version.
120
125
  # @param [String] name
121
126
  # The resource that owns the locations collection, if applicable.
122
127
  # @param [Array<String>, String] extra_location_types
123
- # Optional. Do not use this field. It is unsupported and is ignored unless
124
- # explicitly documented otherwise. This is primarily for internal usage.
128
+ # Optional. Do not use this field unless explicitly documented otherwise. This
129
+ # is primarily for internal usage.
125
130
  # @param [String] filter
126
131
  # A filter to narrow down results to a preferred subset. The filtering language
127
132
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudscheduler_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.0
4
+ version: 0.45.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.44.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1/v0.45.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,7 +66,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '3.1'
69
+ version: '3.2'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="