google-cloud-scheduler-v1beta1 0.6.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/cloud/scheduler/v1beta1/bindings_override.rb +102 -0
- data/lib/google/cloud/scheduler/v1beta1/cloud_scheduler/client.rb +4 -6
- data/lib/google/cloud/scheduler/v1beta1/cloud_scheduler/rest/client.rb +973 -0
- data/lib/google/cloud/scheduler/v1beta1/cloud_scheduler/rest/service_stub.rb +525 -0
- data/lib/google/cloud/scheduler/v1beta1/cloud_scheduler/rest.rb +54 -0
- data/lib/google/cloud/scheduler/v1beta1/cloud_scheduler.rb +7 -1
- data/lib/google/cloud/scheduler/v1beta1/rest.rb +38 -0
- data/lib/google/cloud/scheduler/v1beta1/version.rb +1 -1
- data/lib/google/cloud/scheduler/v1beta1.rb +7 -2
- metadata +15 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 51b3fe6586de7a140411daaf1ee4639e8593175e1c76c1817e7b7553be80e37a
|
4
|
+
data.tar.gz: 38c759fb516a5ce01c2af36b1bd2b0bf0413db07080320b07c59eb1dc73ee02a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 24b09d7c1c2a27564287ffe0047494971271ab143f91a6823e698b06982f38f22a4b46d9fd2b577f7adb9b98c22ff598b991f531ca081c55fa800afac3d34092
|
7
|
+
data.tar.gz: 8825f6c915f0e3ecada7abe627ce78d51c44a336dc42bd67905ca0ec13137e4ac8378a1f68478b7b268370eba896c6659e3a4e6878dfd8e41261ec83a7d07a32
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# Ruby Client for the Cloud Scheduler V1beta1 API
|
2
2
|
|
3
|
-
|
3
|
+
Creates and manages jobs run on a regular recurring schedule.
|
4
4
|
|
5
5
|
Cloud Scheduler is a fully managed enterprise-grade cron job scheduler. It allows you to schedule virtually any job, including batch, big data jobs, cloud infrastructure operations, and more. You can automate everything, including retries in case of failure to reduce manual toil and intervention. Cloud Scheduler even acts as a single pane of glass, allowing you to manage all your automation tasks from one place.
|
6
6
|
|
@@ -0,0 +1,102 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
# Copyright 2023 Google LLC
|
4
|
+
#
|
5
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
6
|
+
# you may not use this file except in compliance with the License.
|
7
|
+
# You may obtain a copy of the License at
|
8
|
+
#
|
9
|
+
# https://www.apache.org/licenses/LICENSE-2.0
|
10
|
+
#
|
11
|
+
# Unless required by applicable law or agreed to in writing, software
|
12
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
13
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
14
|
+
# See the License for the specific language governing permissions and
|
15
|
+
# limitations under the License.
|
16
|
+
|
17
|
+
# Auto-generated by gapic-generator-ruby. DO NOT EDIT!
|
18
|
+
|
19
|
+
require "gapic/config"
|
20
|
+
|
21
|
+
module Google
|
22
|
+
module Cloud
|
23
|
+
module Scheduler
|
24
|
+
##
|
25
|
+
# @example Loading just the REST part of this package, including all its services, and instantiating a REST client
|
26
|
+
#
|
27
|
+
# require "google/cloud/scheduler/v1beta1/rest"
|
28
|
+
# client = ::Google::Cloud::Scheduler::V1beta1::CloudScheduler::Rest::Client.new
|
29
|
+
#
|
30
|
+
module V1beta1
|
31
|
+
##
|
32
|
+
# @private
|
33
|
+
# Initialize the mixin bindings configuration
|
34
|
+
#
|
35
|
+
def self.configure
|
36
|
+
@configure ||= begin
|
37
|
+
namespace = ["Google", "Cloud", "Scheduler"]
|
38
|
+
parent_config = while namespace.any?
|
39
|
+
parent_name = namespace.join "::"
|
40
|
+
parent_const = const_get parent_name
|
41
|
+
break parent_const.configure if parent_const.respond_to? :configure
|
42
|
+
namespace.pop
|
43
|
+
end
|
44
|
+
|
45
|
+
default_config = Configuration.new parent_config
|
46
|
+
default_config.bindings_override["google.cloud.location.Locations.GetLocation"] = [
|
47
|
+
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
|
48
|
+
uri_method: :get,
|
49
|
+
uri_template: "/v1beta1/{name}",
|
50
|
+
matches: [
|
51
|
+
["name", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
|
52
|
+
],
|
53
|
+
body: nil
|
54
|
+
)
|
55
|
+
]
|
56
|
+
default_config.bindings_override["google.cloud.location.Locations.ListLocations"] = [
|
57
|
+
|
58
|
+
Gapic::Rest::GrpcTranscoder::HttpBinding.create_with_validation(
|
59
|
+
uri_method: :get,
|
60
|
+
uri_template: "/v1beta1/{name}/locations",
|
61
|
+
matches: [
|
62
|
+
["name", %r{^projects/[^/]+/?$}, false]
|
63
|
+
],
|
64
|
+
body: nil
|
65
|
+
)
|
66
|
+
]
|
67
|
+
default_config
|
68
|
+
end
|
69
|
+
yield @configure if block_given?
|
70
|
+
@configure
|
71
|
+
end
|
72
|
+
|
73
|
+
##
|
74
|
+
# @private
|
75
|
+
# Configuration class for the google.cloud.scheduler.v1beta1 package.
|
76
|
+
#
|
77
|
+
# This class contains common configuration for all services
|
78
|
+
# of the google.cloud.scheduler.v1beta1 package.
|
79
|
+
#
|
80
|
+
# This configuration is for internal use of the client library classes,
|
81
|
+
# and it is not intended that the end-users will read or change it.
|
82
|
+
#
|
83
|
+
class Configuration
|
84
|
+
extend ::Gapic::Config
|
85
|
+
|
86
|
+
# @private
|
87
|
+
# Overrides for http bindings for the RPC of the mixins for this package.
|
88
|
+
# Services in this package should use these when creating clients for the mixin services.
|
89
|
+
# @return [::Hash{::Symbol=>::Array<::Gapic::Rest::GrpcTranscoder::HttpBinding>}]
|
90
|
+
config_attr :bindings_override, {}, ::Hash, nil
|
91
|
+
|
92
|
+
# @private
|
93
|
+
def initialize parent_config = nil
|
94
|
+
@parent_config = parent_config unless parent_config.nil?
|
95
|
+
|
96
|
+
yield self if block_given?
|
97
|
+
end
|
98
|
+
end
|
99
|
+
end
|
100
|
+
end
|
101
|
+
end
|
102
|
+
end
|
@@ -263,13 +263,11 @@ module Google
|
|
263
263
|
# # Call the list_jobs method.
|
264
264
|
# result = client.list_jobs request
|
265
265
|
#
|
266
|
-
# # The returned object is of type Gapic::PagedEnumerable. You can
|
267
|
-
# #
|
268
|
-
#
|
269
|
-
# # methods are also available for managing paging directly.
|
270
|
-
# result.each do |response|
|
266
|
+
# # The returned object is of type Gapic::PagedEnumerable. You can iterate
|
267
|
+
# # over elements, and API calls will be issued to fetch pages as needed.
|
268
|
+
# result.each do |item|
|
271
269
|
# # Each element is of type ::Google::Cloud::Scheduler::V1beta1::Job.
|
272
|
-
# p
|
270
|
+
# p item
|
273
271
|
# end
|
274
272
|
#
|
275
273
|
def list_jobs request, options = nil
|