google-cloud-scheduler-v1 0.5.0 → 0.7.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -22,10 +22,11 @@ module Google
22
22
  module Scheduler
23
23
  module V1
24
24
  # Configuration for a job.
25
- # The maximum allowed size for a job is 100KB.
25
+ # The maximum allowed size for a job is 1MB.
26
26
  # @!attribute [rw] name
27
27
  # @return [::String]
28
- # Optionally caller-specified in {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#create_job CreateJob}, after
28
+ # Optionally caller-specified in
29
+ # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#create_job CreateJob}, after
29
30
  # which it becomes output only.
30
31
  #
31
32
  # The job name. For example:
@@ -38,13 +39,14 @@ module Google
38
39
  # projects](https://cloud.google.com/resource-manager/docs/creating-managing-projects#identifying_projects)
39
40
  # * `LOCATION_ID` is the canonical ID for the job's location.
40
41
  # The list of available locations can be obtained by calling
41
- # [ListLocations][google.cloud.location.Locations.ListLocations].
42
+ # ListLocations.
42
43
  # For more information, see https://cloud.google.com/about/locations/.
43
44
  # * `JOB_ID` can contain only letters ([A-Za-z]), numbers ([0-9]),
44
45
  # hyphens (-), or underscores (_). The maximum length is 500 characters.
45
46
  # @!attribute [rw] description
46
47
  # @return [::String]
47
- # Optionally caller-specified in {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#create_job CreateJob} or
48
+ # Optionally caller-specified in
49
+ # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#create_job CreateJob} or
48
50
  # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job UpdateJob}.
49
51
  #
50
52
  # A human-readable description for the job. This string must not contain
@@ -60,13 +62,14 @@ module Google
60
62
  # HTTP target.
61
63
  # @!attribute [rw] schedule
62
64
  # @return [::String]
63
- # Required, except when used with {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job UpdateJob}.
65
+ # Required, except when used with
66
+ # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job UpdateJob}.
64
67
  #
65
68
  # Describes the schedule on which the job will be executed.
66
69
  #
67
70
  # The schedule can be either of the following types:
68
71
  #
69
- # * [Crontab](http://en.wikipedia.org/wiki/Cron#Overview)
72
+ # * [Crontab](https://en.wikipedia.org/wiki/Cron#Overview)
70
73
  # * English-like
71
74
  # [schedule](https://cloud.google.com/scheduler/docs/configuring/cron-job-schedules)
72
75
  #
@@ -79,15 +82,16 @@ module Google
79
82
  # A scheduled start time will be delayed if the previous
80
83
  # execution has not ended when its scheduled time occurs.
81
84
  #
82
- # If {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count} > 0 and a job attempt fails,
83
- # the job will be tried a total of {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count}
84
- # times, with exponential backoff, until the next scheduled start
85
- # time.
85
+ # If {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count} > 0 and
86
+ # a job attempt fails, the job will be tried a total of
87
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count} times,
88
+ # with exponential backoff, until the next scheduled start time.
86
89
  # @!attribute [rw] time_zone
87
90
  # @return [::String]
88
91
  # Specifies the time zone to be used in interpreting
89
- # {::Google::Cloud::Scheduler::V1::Job#schedule schedule}. The value of this field must be a time
90
- # zone name from the [tz database](http://en.wikipedia.org/wiki/Tz_database).
92
+ # {::Google::Cloud::Scheduler::V1::Job#schedule schedule}. The value of this field
93
+ # must be a time zone name from the [tz
94
+ # database](http://en.wikipedia.org/wiki/Tz_database).
91
95
  #
92
96
  # Note that some time zones include a provision for
93
97
  # daylight savings time. The rules for daylight saving time are
@@ -122,10 +126,22 @@ module Google
122
126
  # execution logs. Cloud Scheduler will retry the job according
123
127
  # to the {::Google::Cloud::Scheduler::V1::RetryConfig RetryConfig}.
124
128
  #
125
- # The allowed duration for this deadline is:
126
- # * For {::Google::Cloud::Scheduler::V1::Job#http_target HTTP targets}, between 15 seconds and 30 minutes.
127
- # * For {::Google::Cloud::Scheduler::V1::Job#app_engine_http_target App Engine HTTP targets}, between 15
128
- # seconds and 24 hours.
129
+ # The default and the allowed values depend on the type of target:
130
+ #
131
+ # * For {::Google::Cloud::Scheduler::V1::Job#http_target HTTP targets}, the
132
+ # default is 3 minutes. The deadline must be in the interval [15 seconds, 30
133
+ # minutes].
134
+ #
135
+ # * For [App Engine HTTP
136
+ # targets][google.cloud.scheduler.v1.Job.app_engine_http_target], 0 indicates
137
+ # that the request has the default deadline. The default deadline depends on
138
+ # the scaling type of the service: 10 minutes for standard apps with
139
+ # automatic scaling, 24 hours for standard apps with manual and basic
140
+ # scaling, and 60 minutes for flex apps. If the request deadline is set, it
141
+ # must be in the interval [15 seconds, 24 hours 15 seconds].
142
+ #
143
+ # * For [Pub/Sub targets][google.cloud.scheduler.v1.Job.pubsub_target], this
144
+ # field is ignored.
129
145
  class Job
130
146
  include ::Google::Protobuf::MessageExts
131
147
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -147,9 +163,11 @@ module Google
147
163
  # cannot directly set a job to be disabled.
148
164
  DISABLED = 3
149
165
 
150
- # The job state resulting from a failed {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job CloudScheduler.UpdateJob}
166
+ # The job state resulting from a failed
167
+ # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job CloudScheduler.UpdateJob}
151
168
  # operation. To recover a job from this state, retry
152
- # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job CloudScheduler.UpdateJob} until a successful response is received.
169
+ # {::Google::Cloud::Scheduler::V1::CloudScheduler::Client#update_job CloudScheduler.UpdateJob}
170
+ # until a successful response is received.
153
171
  UPDATE_FAILED = 4
154
172
  end
155
173
  end
@@ -158,7 +176,8 @@ module Google
158
176
  #
159
177
  # By default, if a job does not complete successfully (meaning that
160
178
  # an acknowledgement is not received from the handler, then it will be retried
161
- # with exponential backoff according to the settings in {::Google::Cloud::Scheduler::V1::RetryConfig RetryConfig}.
179
+ # with exponential backoff according to the settings in
180
+ # {::Google::Cloud::Scheduler::V1::RetryConfig RetryConfig}.
162
181
  # @!attribute [rw] retry_count
163
182
  # @return [::Integer]
164
183
  # The number of attempts that the system will make to run a job using the
@@ -181,8 +200,8 @@ module Google
181
200
  # @return [::Google::Protobuf::Duration]
182
201
  # The time limit for retrying a failed job, measured from time when an
183
202
  # execution was first attempted. If specified with
184
- # {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count}, the job will be retried until both
185
- # limits are reached.
203
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count}, the job
204
+ # will be retried until both limits are reached.
186
205
  #
187
206
  # The default value for max_retry_duration is zero, which means retry
188
207
  # duration is unlimited.
@@ -203,20 +222,25 @@ module Google
203
222
  # The time between retries will double `max_doublings` times.
204
223
  #
205
224
  # A job's retry interval starts at
206
- # {::Google::Cloud::Scheduler::V1::RetryConfig#min_backoff_duration min_backoff_duration}, then doubles
207
- # `max_doublings` times, then increases linearly, and finally
208
- # retries retries at intervals of
209
- # {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration} up to
225
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#min_backoff_duration min_backoff_duration},
226
+ # then doubles `max_doublings` times, then increases linearly, and finally
227
+ # retries at intervals of
228
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration}
229
+ # up to {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count}
230
+ # times.
231
+ #
232
+ # For example, if
233
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#min_backoff_duration min_backoff_duration}
234
+ # is 10s,
235
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration}
236
+ # is 300s, and `max_doublings` is 3, then the a job will first be retried in
237
+ # 10s. The retry interval will double three times, and then increase linearly
238
+ # by 2^3 * 10s. Finally, the job will retry at intervals of
239
+ # {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration}
240
+ # until the job has been attempted
210
241
  # {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count} times.
211
- #
212
- # For example, if {::Google::Cloud::Scheduler::V1::RetryConfig#min_backoff_duration min_backoff_duration} is
213
- # 10s, {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration} is 300s, and
214
- # `max_doublings` is 3, then the a job will first be retried in 10s. The
215
- # retry interval will double three times, and then increase linearly by
216
- # 2^3 * 10s. Finally, the job will retry at intervals of
217
- # {::Google::Cloud::Scheduler::V1::RetryConfig#max_backoff_duration max_backoff_duration} until the job has
218
- # been attempted {::Google::Cloud::Scheduler::V1::RetryConfig#retry_count retry_count} times. Thus, the
219
- # requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s, 300s, ....
242
+ # Thus, the requests will retry at 10s, 20s, 40s, 80s, 160s, 240s, 300s,
243
+ # 300s, ....
220
244
  #
221
245
  # The default value of this field is 5.
222
246
  class RetryConfig
@@ -22,7 +22,8 @@ module Google
22
22
  module Scheduler
23
23
  module V1
24
24
  # Http target. The job will be pushed to the job handler by means of
25
- # an HTTP request via an {::Google::Cloud::Scheduler::V1::HttpTarget#http_method http_method} such as HTTP
25
+ # an HTTP request via an
26
+ # {::Google::Cloud::Scheduler::V1::HttpTarget#http_method http_method} such as HTTP
26
27
  # POST, HTTP GET, etc. The job is acknowledged by means of an HTTP
27
28
  # response code in the range [200 - 299]. A failure to receive a response
28
29
  # constitutes a failed execution. For a redirected request, the response
@@ -53,6 +54,11 @@ module Google
53
54
  # * `User-Agent`: This will be set to `"Google-Cloud-Scheduler"`.
54
55
  # * `X-Google-*`: Google internal use only.
55
56
  # * `X-AppEngine-*`: Google internal use only.
57
+ # * `X-CloudScheduler`: This header will be set to true.
58
+ # * `X-CloudScheduler-JobName`: This header will contain the job name.
59
+ # * `X-CloudScheduler-ScheduleTime`: For Cloud Scheduler jobs specified in
60
+ # the unix-cron format, this header will contain the job schedule time in
61
+ # RFC3339 UTC "Zulu" format.
56
62
  #
57
63
  # The total size of headers must be less than 80KB.
58
64
  # @!attribute [rw] body
@@ -94,7 +100,8 @@ module Google
94
100
  end
95
101
 
96
102
  # App Engine target. The job will be pushed to a job handler by means
97
- # of an HTTP request via an {::Google::Cloud::Scheduler::V1::AppEngineHttpTarget#http_method http_method} such
103
+ # of an HTTP request via an
104
+ # {::Google::Cloud::Scheduler::V1::AppEngineHttpTarget#http_method http_method} such
98
105
  # as HTTP POST, HTTP GET, etc. The job is acknowledged by means of an
99
106
  # HTTP response code in the range [200 - 299]. Error 503 is
100
107
  # considered an App Engine system error instead of an application
@@ -132,9 +139,14 @@ module Google
132
139
  # `"AppEngine-Google; (+http://code.google.com/appengine)"` to the
133
140
  # modified `User-Agent`.
134
141
  # * `X-CloudScheduler`: This header will be set to true.
142
+ # * `X-CloudScheduler-JobName`: This header will contain the job name.
143
+ # * `X-CloudScheduler-ScheduleTime`: For Cloud Scheduler jobs specified in
144
+ # the unix-cron format, this header will contain the job schedule time in
145
+ # RFC3339 UTC "Zulu" format.
135
146
  #
136
- # If the job has an {::Google::Cloud::Scheduler::V1::AppEngineHttpTarget#body body}, Cloud Scheduler sets
137
- # the following headers:
147
+ # If the job has an
148
+ # {::Google::Cloud::Scheduler::V1::AppEngineHttpTarget#body body}, Cloud Scheduler
149
+ # sets the following headers:
138
150
  #
139
151
  # * `Content-Type`: By default, the `Content-Type` header is set to
140
152
  # `"application/octet-stream"`. The default can be overridden by explictly
@@ -157,7 +169,8 @@ module Google
157
169
  #
158
170
  # HTTP request body. A request body is allowed only if the HTTP method is
159
171
  # POST or PUT. It will result in invalid argument error to set a body on a
160
- # job with an incompatible {::Google::Cloud::Scheduler::V1::HttpMethod HttpMethod}.
172
+ # job with an incompatible
173
+ # {::Google::Cloud::Scheduler::V1::HttpMethod HttpMethod}.
161
174
  class AppEngineHttpTarget
162
175
  include ::Google::Protobuf::MessageExts
163
176
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -178,7 +191,7 @@ module Google
178
191
  # @return [::String]
179
192
  # Required. The name of the Cloud Pub/Sub topic to which messages will
180
193
  # be published when a job is delivered. The topic name must be in the
181
- # same format as required by PubSub's
194
+ # same format as required by Pub/Sub's
182
195
  # [PublishRequest.name](https://cloud.google.com/pubsub/docs/reference/rpc/google.pubsub.v1#publishrequest),
183
196
  # for example `projects/PROJECT_ID/topics/TOPIC_ID`.
184
197
  #
@@ -241,7 +254,7 @@ module Google
241
254
  #
242
255
  # Requests can only be sent to a specific instance if
243
256
  # [manual scaling is used in App Engine
244
- # Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?hl=en_US#scaling_types_and_instance_classes).
257
+ # Standard](https://cloud.google.com/appengine/docs/python/an-overview-of-app-engine?#scaling_types_and_instance_classes).
245
258
  # App Engine Flex does not support instances. For more information, see
246
259
  # [App Engine Standard request
247
260
  # routing](https://cloud.google.com/appengine/docs/standard/python/how-requests-are-routed)
@@ -278,7 +291,8 @@ module Google
278
291
  # {::Google::Cloud::Scheduler::V1::AppEngineRouting#version version} `+ '.' +`
279
292
  # {::Google::Cloud::Scheduler::V1::AppEngineRouting#service service}
280
293
  #
281
- # * `instance =` {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance}
294
+ # * `instance =`
295
+ # {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance}
282
296
  #
283
297
  # * `instance_dot_service =`
284
298
  # {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance} `+ '.' +`
@@ -294,19 +308,23 @@ module Google
294
308
  # {::Google::Cloud::Scheduler::V1::AppEngineRouting#service service}
295
309
  #
296
310
  #
297
- # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#service service} is empty, then the job will be sent
298
- # to the service which is the default service when the job is attempted.
311
+ # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#service service} is empty,
312
+ # then the job will be sent to the service which is the default service when
313
+ # the job is attempted.
299
314
  #
300
- # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#version version} is empty, then the job will be sent
301
- # to the version which is the default version when the job is attempted.
315
+ # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#version version} is empty,
316
+ # then the job will be sent to the version which is the default version when
317
+ # the job is attempted.
302
318
  #
303
- # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance} is empty, then the job will be
304
- # sent to an instance which is available when the job is attempted.
319
+ # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance} is
320
+ # empty, then the job will be sent to an instance which is available when the
321
+ # job is attempted.
305
322
  #
306
323
  # If {::Google::Cloud::Scheduler::V1::AppEngineRouting#service service},
307
324
  # {::Google::Cloud::Scheduler::V1::AppEngineRouting#version version}, or
308
- # {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance} is invalid, then the job will be sent
309
- # to the default version of the default service when the job is attempted.
325
+ # {::Google::Cloud::Scheduler::V1::AppEngineRouting#instance instance} is invalid,
326
+ # then the job will be sent to the default version of the default service
327
+ # when the job is attempted.
310
328
  class AppEngineRouting
311
329
  include ::Google::Protobuf::MessageExts
312
330
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -26,8 +26,6 @@ module Google
26
26
  # service Foo {
27
27
  # rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty);
28
28
  # }
29
- #
30
- # The JSON representation for `Empty` is empty JSON object `{}`.
31
29
  class Empty
32
30
  include ::Google::Protobuf::MessageExts
33
31
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -28,12 +28,14 @@ module Google
28
28
  # [API Design Guide](https://cloud.google.com/apis/design/errors).
29
29
  # @!attribute [rw] code
30
30
  # @return [::Integer]
31
- # The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
31
+ # The status code, which should be an enum value of
32
+ # [google.rpc.Code][google.rpc.Code].
32
33
  # @!attribute [rw] message
33
34
  # @return [::String]
34
35
  # A developer-facing error message, which should be in English. Any
35
36
  # user-facing error message should be localized and sent in the
36
- # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized by the client.
37
+ # {::Google::Rpc::Status#details google.rpc.Status.details} field, or localized
38
+ # by the client.
37
39
  # @!attribute [rw] details
38
40
  # @return [::Array<::Google::Protobuf::Any>]
39
41
  # A list of messages that carry the error details. There is a common set of
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-scheduler-v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.7.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-07-07 00:00:00.000000000 Z
11
+ date: 2023-03-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.10'
19
+ version: 0.18.0
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.10'
29
+ version: 0.18.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -44,20 +44,40 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.0'
47
+ - !ruby/object:Gem::Dependency
48
+ name: google-cloud-location
49
+ requirement: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - ">="
52
+ - !ruby/object:Gem::Version
53
+ version: '0.4'
54
+ - - "<"
55
+ - !ruby/object:Gem::Version
56
+ version: 2.a
57
+ type: :runtime
58
+ prerelease: false
59
+ version_requirements: !ruby/object:Gem::Requirement
60
+ requirements:
61
+ - - ">="
62
+ - !ruby/object:Gem::Version
63
+ version: '0.4'
64
+ - - "<"
65
+ - !ruby/object:Gem::Version
66
+ version: 2.a
47
67
  - !ruby/object:Gem::Dependency
48
68
  name: google-style
49
69
  requirement: !ruby/object:Gem::Requirement
50
70
  requirements:
51
71
  - - "~>"
52
72
  - !ruby/object:Gem::Version
53
- version: 1.26.1
73
+ version: 1.26.3
54
74
  type: :development
55
75
  prerelease: false
56
76
  version_requirements: !ruby/object:Gem::Requirement
57
77
  requirements:
58
78
  - - "~>"
59
79
  - !ruby/object:Gem::Version
60
- version: 1.26.1
80
+ version: 1.26.3
61
81
  - !ruby/object:Gem::Dependency
62
82
  name: minitest
63
83
  requirement: !ruby/object:Gem::Requirement
@@ -175,17 +195,24 @@ files:
175
195
  - README.md
176
196
  - lib/google-cloud-scheduler-v1.rb
177
197
  - lib/google/cloud/scheduler/v1.rb
198
+ - lib/google/cloud/scheduler/v1/bindings_override.rb
178
199
  - lib/google/cloud/scheduler/v1/cloud_scheduler.rb
179
200
  - lib/google/cloud/scheduler/v1/cloud_scheduler/client.rb
180
201
  - lib/google/cloud/scheduler/v1/cloud_scheduler/credentials.rb
181
202
  - lib/google/cloud/scheduler/v1/cloud_scheduler/paths.rb
203
+ - lib/google/cloud/scheduler/v1/cloud_scheduler/rest.rb
204
+ - lib/google/cloud/scheduler/v1/cloud_scheduler/rest/client.rb
205
+ - lib/google/cloud/scheduler/v1/cloud_scheduler/rest/service_stub.rb
182
206
  - lib/google/cloud/scheduler/v1/cloudscheduler_pb.rb
183
207
  - lib/google/cloud/scheduler/v1/cloudscheduler_services_pb.rb
184
208
  - lib/google/cloud/scheduler/v1/job_pb.rb
209
+ - lib/google/cloud/scheduler/v1/rest.rb
185
210
  - lib/google/cloud/scheduler/v1/target_pb.rb
186
211
  - lib/google/cloud/scheduler/v1/version.rb
187
212
  - proto_docs/README.md
213
+ - proto_docs/google/api/client.rb
188
214
  - proto_docs/google/api/field_behavior.rb
215
+ - proto_docs/google/api/launch_stage.rb
189
216
  - proto_docs/google/api/resource.rb
190
217
  - proto_docs/google/cloud/scheduler/v1/cloudscheduler.rb
191
218
  - proto_docs/google/cloud/scheduler/v1/job.rb
@@ -215,8 +242,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
215
242
  - !ruby/object:Gem::Version
216
243
  version: '0'
217
244
  requirements: []
218
- rubygems_version: 3.3.14
245
+ rubygems_version: 3.4.2
219
246
  signing_key:
220
247
  specification_version: 4
221
- summary: API Client library for the Cloud Scheduler V1 API
248
+ summary: Creates and manages jobs run on a regular recurring schedule.
222
249
  test_files: []