google-cloud-scheduler-v1beta1 0.2.3 → 0.2.4

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: 9d7e097d5d51df83f099730ae98db486ec2f4852926b21e38d877c16139dc385
4
- data.tar.gz: 8c80a76e6132b639f4099cf28c9624346e349f68381a8067e4d4a28251c1fa45
3
+ metadata.gz: f1cc96efaf340af054c16db863a525e58f7c7db7da840581f90fa9c3db2b9ce3
4
+ data.tar.gz: 2394c98b856609b84e175c75df345028bf0e317983a1d4a46a52d1d47b1faa75
5
5
  SHA512:
6
- metadata.gz: bd9b7b52616a4e0b5fac215ff7a0fabba588bef5c4d36b0bb5e8d1a82a4292beba93fd2a67dc2c4584ca1181b319e51b3f13fc592dc971bb70ab33773e2c7f01
7
- data.tar.gz: de7b82d15f3f91e0ba8aa8759782c60d602bf878a2ca512090b4e23cf5d5b1d2c96cde24dfe767ef56419f30cb4fe461964fb7c51ebde04ab5d3598bb1779d74
6
+ metadata.gz: 848a01632057967cd9ebb2b198e634a3395c3c98b6e37bf9fc20f4688d3fef1dbe5ef5e3eab00f34a187cf1a639dfb4f7e1c668c3eb572426f4f8a2317a37b05
7
+ data.tar.gz: e40d18efb3b021559af5d9f8ef05cf95524737d23355ae10e90bdd4c1bfca4e292b0b9a29ca4bdb906f43f1207fb68345ba4d1a52604064223c57d794869a8d7
@@ -71,7 +71,7 @@ module Google
71
71
  initial_delay: 0.1,
72
72
  max_delay: 60.0,
73
73
  multiplier: 1.3,
74
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
74
+ retry_codes: [4, 14]
75
75
  }
76
76
 
77
77
  default_config.rpcs.get_job.timeout = 600.0
@@ -79,7 +79,7 @@ module Google
79
79
  initial_delay: 0.1,
80
80
  max_delay: 60.0,
81
81
  multiplier: 1.3,
82
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
82
+ retry_codes: [4, 14]
83
83
  }
84
84
 
85
85
  default_config.rpcs.create_job.timeout = 600.0
@@ -91,7 +91,7 @@ module Google
91
91
  initial_delay: 0.1,
92
92
  max_delay: 60.0,
93
93
  multiplier: 1.3,
94
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
94
+ retry_codes: [4, 14]
95
95
  }
96
96
 
97
97
  default_config.rpcs.pause_job.timeout = 600.0
@@ -99,7 +99,7 @@ module Google
99
99
  initial_delay: 0.1,
100
100
  max_delay: 60.0,
101
101
  multiplier: 1.3,
102
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
102
+ retry_codes: [4, 14]
103
103
  }
104
104
 
105
105
  default_config.rpcs.resume_job.timeout = 600.0
@@ -107,7 +107,7 @@ module Google
107
107
  initial_delay: 0.1,
108
108
  max_delay: 60.0,
109
109
  multiplier: 1.3,
110
- retry_codes: ["DEADLINE_EXCEEDED", "UNAVAILABLE"]
110
+ retry_codes: [4, 14]
111
111
  }
112
112
 
113
113
  default_config.rpcs.run_job.timeout = 600.0
@@ -36,11 +36,11 @@ module Google
36
36
  self.service_name = 'google.cloud.scheduler.v1beta1.CloudScheduler'
37
37
 
38
38
  # Lists jobs.
39
- rpc :ListJobs, ListJobsRequest, ListJobsResponse
39
+ rpc :ListJobs, Google::Cloud::Scheduler::V1beta1::ListJobsRequest, Google::Cloud::Scheduler::V1beta1::ListJobsResponse
40
40
  # Gets a job.
41
- rpc :GetJob, GetJobRequest, Job
41
+ rpc :GetJob, Google::Cloud::Scheduler::V1beta1::GetJobRequest, Google::Cloud::Scheduler::V1beta1::Job
42
42
  # Creates a job.
43
- rpc :CreateJob, CreateJobRequest, Job
43
+ rpc :CreateJob, Google::Cloud::Scheduler::V1beta1::CreateJobRequest, Google::Cloud::Scheduler::V1beta1::Job
44
44
  # Updates a job.
45
45
  #
46
46
  # If successful, the updated [Job][google.cloud.scheduler.v1beta1.Job] is returned. If the job does
@@ -50,9 +50,9 @@ module Google
50
50
  # job to be in an [Job.State.UPDATE_FAILED][google.cloud.scheduler.v1beta1.Job.State.UPDATE_FAILED] state. A job in this state may
51
51
  # not be executed. If this happens, retry the UpdateJob request
52
52
  # until a successful response is received.
53
- rpc :UpdateJob, UpdateJobRequest, Job
53
+ rpc :UpdateJob, Google::Cloud::Scheduler::V1beta1::UpdateJobRequest, Google::Cloud::Scheduler::V1beta1::Job
54
54
  # Deletes a job.
55
- rpc :DeleteJob, DeleteJobRequest, Google::Protobuf::Empty
55
+ rpc :DeleteJob, Google::Cloud::Scheduler::V1beta1::DeleteJobRequest, Google::Protobuf::Empty
56
56
  # Pauses a job.
57
57
  #
58
58
  # If a job is paused then the system will stop executing the job
@@ -60,19 +60,19 @@ module Google
60
60
  # state of the job is stored in [state][google.cloud.scheduler.v1beta1.Job.state]; if paused it
61
61
  # will be set to [Job.State.PAUSED][google.cloud.scheduler.v1beta1.Job.State.PAUSED]. A job must be in [Job.State.ENABLED][google.cloud.scheduler.v1beta1.Job.State.ENABLED]
62
62
  # to be paused.
63
- rpc :PauseJob, PauseJobRequest, Job
63
+ rpc :PauseJob, Google::Cloud::Scheduler::V1beta1::PauseJobRequest, Google::Cloud::Scheduler::V1beta1::Job
64
64
  # Resume a job.
65
65
  #
66
66
  # This method reenables a job after it has been [Job.State.PAUSED][google.cloud.scheduler.v1beta1.Job.State.PAUSED]. The
67
67
  # state of a job is stored in [Job.state][google.cloud.scheduler.v1beta1.Job.state]; after calling this method it
68
68
  # will be set to [Job.State.ENABLED][google.cloud.scheduler.v1beta1.Job.State.ENABLED]. A job must be in
69
69
  # [Job.State.PAUSED][google.cloud.scheduler.v1beta1.Job.State.PAUSED] to be resumed.
70
- rpc :ResumeJob, ResumeJobRequest, Job
70
+ rpc :ResumeJob, Google::Cloud::Scheduler::V1beta1::ResumeJobRequest, Google::Cloud::Scheduler::V1beta1::Job
71
71
  # Forces a job to run now.
72
72
  #
73
73
  # When this method is called, Cloud Scheduler will dispatch the job, even
74
74
  # if the job is already running.
75
- rpc :RunJob, RunJobRequest, Job
75
+ rpc :RunJob, Google::Cloud::Scheduler::V1beta1::RunJobRequest, Google::Cloud::Scheduler::V1beta1::Job
76
76
  end
77
77
 
78
78
  Stub = Service.rpc_stub_class
@@ -21,7 +21,7 @@ module Google
21
21
  module Cloud
22
22
  module Scheduler
23
23
  module V1beta1
24
- VERSION = "0.2.3"
24
+ VERSION = "0.2.4"
25
25
  end
26
26
  end
27
27
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-cloud-scheduler-v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-06-18 00:00:00.000000000 Z
11
+ date: 2020-08-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: '0.2'
19
+ version: '0.3'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: '0.2'
26
+ version: '0.3'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: google-cloud-errors
29
29
  requirement: !ruby/object:Gem::Requirement