google-cloud-scheduler-v1beta1 0.2.3 → 0.2.4
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f1cc96efaf340af054c16db863a525e58f7c7db7da840581f90fa9c3db2b9ce3
|
|
4
|
+
data.tar.gz: 2394c98b856609b84e175c75df345028bf0e317983a1d4a46a52d1d47b1faa75
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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: [
|
|
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: [
|
|
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: [
|
|
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: [
|
|
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: [
|
|
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
|
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.
|
|
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
|
|
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.
|
|
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.
|
|
26
|
+
version: '0.3'
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: google-cloud-errors
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|