google-apis-cloudscheduler_v1beta1 0.35.0 → 0.36.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: 85a5b265ba14e7144c85041380ed2c907824b3f12b56d3a95b989e33b9beb4f7
4
- data.tar.gz: 4d33b3fc07ca629eb578166b3997f7b3078e106658e9d97582b746a613484e70
3
+ metadata.gz: 6e3082ead4e09a97d81c2f1cedfb2ea1131ebf91932b660a3b683f4a07d31a25
4
+ data.tar.gz: 85e250718d7c4223bdea7f3934eb241748887b943a54673be98b1aa27541fa30
5
5
  SHA512:
6
- metadata.gz: 153b3c0dc922af30aaa3c16e1d3727feba683e37e054ac80321a01ee91435317f92e73cb82b6a63c9cf2038f37d6d3d20ab57deb44a010fb19c722422dca2d85
7
- data.tar.gz: 7264894fd9d8c3a86440f4c267ba37acf635ba6533c7743332fca4ef1e1ee2334736d590cae19662aae55e6eef16db211b22b32be4c9e182a24fc564b696b809
6
+ metadata.gz: 27cc0c0fd96c95c6112767eee63444aa754315f4cfd577c74f82e660017a92fcce6ae307fa8cb99d9dbed95ff0341c794d87eca3bffa5b58375c0c6b0bbaee1b
7
+ data.tar.gz: 3c32eb25f745541c82d269bf36dc98b81bfa58967f59a2be008a453c28c92db76fdccb0f4b5609e6569f5606617158ef306b0ebb607400f56d2b0b779f2740b7
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-cloudscheduler_v1beta1
2
2
 
3
+ ### v0.36.0 (2025-06-08)
4
+
5
+ * Regenerated from discovery document revision 20250530
6
+ * Regenerated using generator version 0.18.0
7
+
3
8
  ### v0.35.0 (2025-05-04)
4
9
 
5
10
  * Regenerated using generator version 0.17.0
@@ -356,14 +356,22 @@ module Google
356
356
  # @return [Google::Apis::CloudschedulerV1beta1::PubsubTarget]
357
357
  attr_accessor :pubsub_target
358
358
 
359
- # Settings that determine the retry behavior. By default, if a job does not
360
- # complete successfully (meaning that an acknowledgement is not received from
361
- # the handler, then it will be retried with exponential backoff according to the
362
- # settings in RetryConfig.
359
+ # Settings that determine the retry behavior. For more information, see [Retry
360
+ # jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs). By
361
+ # default, if a job does not complete successfully (meaning that an
362
+ # acknowledgement is not received from the handler, then it will be retried with
363
+ # exponential backoff according to the settings in RetryConfig.
363
364
  # Corresponds to the JSON property `retryConfig`
364
365
  # @return [Google::Apis::CloudschedulerV1beta1::RetryConfig]
365
366
  attr_accessor :retry_config
366
367
 
368
+ # Output only. Whether or not this Job satisfies the requirements of physical
369
+ # zone separation
370
+ # Corresponds to the JSON property `satisfiesPzs`
371
+ # @return [Boolean]
372
+ attr_accessor :satisfies_pzs
373
+ alias_method :satisfies_pzs?, :satisfies_pzs
374
+
367
375
  # Required, except when used with UpdateJob. Describes the schedule on which the
368
376
  # job will be executed. The schedule can be either of the following types: * [
369
377
  # Crontab](https://en.wikipedia.org/wiki/Cron#Overview) * English-like [schedule]
@@ -436,6 +444,7 @@ module Google
436
444
  @name = args[:name] if args.key?(:name)
437
445
  @pubsub_target = args[:pubsub_target] if args.key?(:pubsub_target)
438
446
  @retry_config = args[:retry_config] if args.key?(:retry_config)
447
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
439
448
  @schedule = args[:schedule] if args.key?(:schedule)
440
449
  @schedule_time = args[:schedule_time] if args.key?(:schedule_time)
441
450
  @state = args[:state] if args.key?(:state)
@@ -797,10 +806,11 @@ module Google
797
806
  end
798
807
  end
799
808
 
800
- # Settings that determine the retry behavior. By default, if a job does not
801
- # complete successfully (meaning that an acknowledgement is not received from
802
- # the handler, then it will be retried with exponential backoff according to the
803
- # settings in RetryConfig.
809
+ # Settings that determine the retry behavior. For more information, see [Retry
810
+ # jobs](https://cloud.google.com/scheduler/docs/configuring/retry-jobs). By
811
+ # default, if a job does not complete successfully (meaning that an
812
+ # acknowledgement is not received from the handler, then it will be retried with
813
+ # exponential backoff according to the settings in RetryConfig.
804
814
  class RetryConfig
805
815
  include Google::Apis::Core::Hashable
806
816
 
@@ -813,21 +823,18 @@ module Google
813
823
  # The time between retries will double `max_doublings` times. A job's retry
814
824
  # interval starts at min_backoff_duration, then doubles `max_doublings` times,
815
825
  # then increases linearly, and finally retries at intervals of
816
- # max_backoff_duration up to retry_count times. For example, if
817
- # min_backoff_duration is 10s, max_backoff_duration is 300s, and `max_doublings`
818
- # is 3, then the job will first be retried in 10s. The retry interval will
819
- # double three times, and then increase linearly by 2^3 * 10s. Finally, the job
820
- # will retry at intervals of max_backoff_duration until the job has been
821
- # attempted retry_count times. Thus, the requests will retry at 10s, 20s, 40s,
822
- # 80s, 160s, 240s, 300s, 300s, .... The default value of this field is 5.
826
+ # max_backoff_duration up to retry_count times. For examples, see [Retry jobs](
827
+ # https://cloud.google.com/scheduler/docs/configuring/retry-jobs#max-doublings).
828
+ # The default value of this field is 5.
823
829
  # Corresponds to the JSON property `maxDoublings`
824
830
  # @return [Fixnum]
825
831
  attr_accessor :max_doublings
826
832
 
827
- # The time limit for retrying a failed job, measured from time when an execution
828
- # was first attempted. If specified with retry_count, the job will be retried
829
- # until both limits are reached. The default value for max_retry_duration is
830
- # zero, which means retry duration is unlimited.
833
+ # The time limit for retrying a failed job, measured from the time when an
834
+ # execution was first attempted. If specified with retry_count, the job will be
835
+ # retried until both limits are reached. The default value for
836
+ # max_retry_duration is zero, which means retry duration is unlimited. However,
837
+ # if retry_count is also 0, a job attempt won't be retried if it fails.
831
838
  # Corresponds to the JSON property `maxRetryDuration`
832
839
  # @return [String]
833
840
  attr_accessor :max_retry_duration
@@ -840,14 +847,15 @@ module Google
840
847
 
841
848
  # The number of attempts that the system will make to run a job using the
842
849
  # exponential backoff procedure described by max_doublings. The default value of
843
- # retry_count is zero. If retry_count is 0, a job attempt will not be retried if
844
- # it fails. Instead the Cloud Scheduler system will wait for the next scheduled
845
- # execution time. Setting retry_count to 0 does not prevent failed jobs from
846
- # running according to schedule after the failure. If retry_count is set to a
847
- # non-zero number then Cloud Scheduler will retry failed attempts, using
848
- # exponential backoff, retry_count times, or until the next scheduled execution
849
- # time, whichever comes first. Values greater than 5 and negative values are not
850
- # allowed.
850
+ # retry_count is zero. If retry_count is 0 (and if max_retry_duration is also 0),
851
+ # a job attempt won't be retried if it fails. Instead, Cloud Scheduler system
852
+ # will wait for the next scheduled execution time. Setting retry_count to 0
853
+ # doesn't prevent failed jobs from running according to schedule after the
854
+ # failure. If retry_count is set to a non-zero number, Cloud Scheduler will
855
+ # retry the failed job, using exponential backoff, for retry_count times until
856
+ # the job succeeds or the number of retries is exhausted. Note that the next
857
+ # scheduled execution time might be skipped if the retries continue through that
858
+ # time. Values greater than 5 and negative values are not allowed.
851
859
  # Corresponds to the JSON property `retryCount`
852
860
  # @return [Fixnum]
853
861
  attr_accessor :retry_count
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module CloudschedulerV1beta1
18
18
  # Version of the google-apis-cloudscheduler_v1beta1 gem
19
- GEM_VERSION = "0.35.0"
19
+ GEM_VERSION = "0.36.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250411"
25
+ REVISION = "20250530"
26
26
  end
27
27
  end
28
28
  end
@@ -188,6 +188,7 @@ module Google
188
188
 
189
189
  property :retry_config, as: 'retryConfig', class: Google::Apis::CloudschedulerV1beta1::RetryConfig, decorator: Google::Apis::CloudschedulerV1beta1::RetryConfig::Representation
190
190
 
191
+ property :satisfies_pzs, as: 'satisfiesPzs'
191
192
  property :schedule, as: 'schedule'
192
193
  property :schedule_time, as: 'scheduleTime'
193
194
  property :state, as: 'state'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-cloudscheduler_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.35.0
4
+ version: 0.36.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_v1beta1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1beta1/v0.35.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-cloudscheduler_v1beta1/v0.36.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-cloudscheduler_v1beta1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Scheduler API V1beta1
79
79
  test_files: []