google-cloud-service_health-v1 0.a → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (29) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +122 -0
  4. data/README.md +144 -8
  5. data/lib/google/cloud/service_health/v1/bindings_override.rb +102 -0
  6. data/lib/google/cloud/service_health/v1/rest.rb +38 -0
  7. data/lib/google/cloud/service_health/v1/service_health/client.rb +1084 -0
  8. data/lib/google/cloud/service_health/v1/service_health/credentials.rb +47 -0
  9. data/lib/google/cloud/service_health/v1/service_health/paths.rb +124 -0
  10. data/lib/google/cloud/service_health/v1/service_health/rest/client.rb +1021 -0
  11. data/lib/google/cloud/service_health/v1/service_health/rest/service_stub.rb +423 -0
  12. data/lib/google/cloud/service_health/v1/service_health/rest.rb +53 -0
  13. data/lib/google/cloud/service_health/v1/service_health.rb +55 -0
  14. data/lib/google/cloud/service_health/v1/version.rb +7 -2
  15. data/lib/google/cloud/service_health/v1.rb +45 -0
  16. data/lib/google/cloud/servicehealth/v1/event_resources_pb.rb +74 -0
  17. data/lib/google/cloud/servicehealth/v1/event_service_pb.rb +45 -0
  18. data/lib/google/cloud/servicehealth/v1/event_service_services_pb.rb +58 -0
  19. data/lib/google-cloud-service_health-v1.rb +21 -0
  20. data/proto_docs/README.md +4 -0
  21. data/proto_docs/google/api/client.rb +395 -0
  22. data/proto_docs/google/api/field_behavior.rb +85 -0
  23. data/proto_docs/google/api/launch_stage.rb +71 -0
  24. data/proto_docs/google/api/resource.rb +222 -0
  25. data/proto_docs/google/cloud/servicehealth/v1/event_resources.rb +694 -0
  26. data/proto_docs/google/protobuf/any.rb +144 -0
  27. data/proto_docs/google/protobuf/duration.rb +98 -0
  28. data/proto_docs/google/protobuf/timestamp.rb +127 -0
  29. metadata +202 -10
@@ -0,0 +1,423 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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 "google/cloud/servicehealth/v1/event_service_pb"
20
+
21
+ module Google
22
+ module Cloud
23
+ module ServiceHealth
24
+ module V1
25
+ module ServiceHealth
26
+ module Rest
27
+ ##
28
+ # REST service stub for the ServiceHealth service.
29
+ # Service stub contains baseline method implementations
30
+ # including transcoding, making the REST call, and deserialing the response.
31
+ #
32
+ class ServiceStub
33
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
34
+ # These require statements are intentionally placed here to initialize
35
+ # the REST modules only when it's required.
36
+ require "gapic/rest"
37
+
38
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
39
+ endpoint_template: endpoint_template,
40
+ universe_domain: universe_domain,
41
+ credentials: credentials,
42
+ numeric_enums: true,
43
+ raise_faraday_errors: false
44
+ end
45
+
46
+ ##
47
+ # The effective universe domain
48
+ #
49
+ # @return [String]
50
+ #
51
+ def universe_domain
52
+ @client_stub.universe_domain
53
+ end
54
+
55
+ ##
56
+ # The effective endpoint
57
+ #
58
+ # @return [String]
59
+ #
60
+ def endpoint
61
+ @client_stub.endpoint
62
+ end
63
+
64
+ ##
65
+ # Baseline implementation for the list_events REST call
66
+ #
67
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListEventsRequest]
68
+ # A request object representing the call parameters. Required.
69
+ # @param options [::Gapic::CallOptions]
70
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
71
+ #
72
+ # @yield [result, operation] Access the result along with the TransportOperation object
73
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::ListEventsResponse]
74
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
75
+ #
76
+ # @return [::Google::Cloud::ServiceHealth::V1::ListEventsResponse]
77
+ # A result object deserialized from the server's reply
78
+ def list_events request_pb, options = nil
79
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
80
+
81
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_events_request request_pb
82
+ query_string_params = if query_string_params.any?
83
+ query_string_params.to_h { |p| p.split "=", 2 }
84
+ else
85
+ {}
86
+ end
87
+
88
+ response = @client_stub.make_http_request(
89
+ verb,
90
+ uri: uri,
91
+ body: body || "",
92
+ params: query_string_params,
93
+ options: options
94
+ )
95
+ operation = ::Gapic::Rest::TransportOperation.new response
96
+ result = ::Google::Cloud::ServiceHealth::V1::ListEventsResponse.decode_json response.body, ignore_unknown_fields: true
97
+
98
+ yield result, operation if block_given?
99
+ result
100
+ end
101
+
102
+ ##
103
+ # Baseline implementation for the get_event REST call
104
+ #
105
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetEventRequest]
106
+ # A request object representing the call parameters. Required.
107
+ # @param options [::Gapic::CallOptions]
108
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
109
+ #
110
+ # @yield [result, operation] Access the result along with the TransportOperation object
111
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::Event]
112
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
113
+ #
114
+ # @return [::Google::Cloud::ServiceHealth::V1::Event]
115
+ # A result object deserialized from the server's reply
116
+ def get_event request_pb, options = nil
117
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
118
+
119
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_event_request request_pb
120
+ query_string_params = if query_string_params.any?
121
+ query_string_params.to_h { |p| p.split "=", 2 }
122
+ else
123
+ {}
124
+ end
125
+
126
+ response = @client_stub.make_http_request(
127
+ verb,
128
+ uri: uri,
129
+ body: body || "",
130
+ params: query_string_params,
131
+ options: options
132
+ )
133
+ operation = ::Gapic::Rest::TransportOperation.new response
134
+ result = ::Google::Cloud::ServiceHealth::V1::Event.decode_json response.body, ignore_unknown_fields: true
135
+
136
+ yield result, operation if block_given?
137
+ result
138
+ end
139
+
140
+ ##
141
+ # Baseline implementation for the list_organization_events REST call
142
+ #
143
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListOrganizationEventsRequest]
144
+ # A request object representing the call parameters. Required.
145
+ # @param options [::Gapic::CallOptions]
146
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
147
+ #
148
+ # @yield [result, operation] Access the result along with the TransportOperation object
149
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::ListOrganizationEventsResponse]
150
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
151
+ #
152
+ # @return [::Google::Cloud::ServiceHealth::V1::ListOrganizationEventsResponse]
153
+ # A result object deserialized from the server's reply
154
+ def list_organization_events request_pb, options = nil
155
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
156
+
157
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_organization_events_request request_pb
158
+ query_string_params = if query_string_params.any?
159
+ query_string_params.to_h { |p| p.split "=", 2 }
160
+ else
161
+ {}
162
+ end
163
+
164
+ response = @client_stub.make_http_request(
165
+ verb,
166
+ uri: uri,
167
+ body: body || "",
168
+ params: query_string_params,
169
+ options: options
170
+ )
171
+ operation = ::Gapic::Rest::TransportOperation.new response
172
+ result = ::Google::Cloud::ServiceHealth::V1::ListOrganizationEventsResponse.decode_json response.body, ignore_unknown_fields: true
173
+
174
+ yield result, operation if block_given?
175
+ result
176
+ end
177
+
178
+ ##
179
+ # Baseline implementation for the get_organization_event REST call
180
+ #
181
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetOrganizationEventRequest]
182
+ # A request object representing the call parameters. Required.
183
+ # @param options [::Gapic::CallOptions]
184
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
185
+ #
186
+ # @yield [result, operation] Access the result along with the TransportOperation object
187
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::OrganizationEvent]
188
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
189
+ #
190
+ # @return [::Google::Cloud::ServiceHealth::V1::OrganizationEvent]
191
+ # A result object deserialized from the server's reply
192
+ def get_organization_event request_pb, options = nil
193
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
194
+
195
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_organization_event_request request_pb
196
+ query_string_params = if query_string_params.any?
197
+ query_string_params.to_h { |p| p.split "=", 2 }
198
+ else
199
+ {}
200
+ end
201
+
202
+ response = @client_stub.make_http_request(
203
+ verb,
204
+ uri: uri,
205
+ body: body || "",
206
+ params: query_string_params,
207
+ options: options
208
+ )
209
+ operation = ::Gapic::Rest::TransportOperation.new response
210
+ result = ::Google::Cloud::ServiceHealth::V1::OrganizationEvent.decode_json response.body, ignore_unknown_fields: true
211
+
212
+ yield result, operation if block_given?
213
+ result
214
+ end
215
+
216
+ ##
217
+ # Baseline implementation for the list_organization_impacts REST call
218
+ #
219
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListOrganizationImpactsRequest]
220
+ # A request object representing the call parameters. Required.
221
+ # @param options [::Gapic::CallOptions]
222
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
223
+ #
224
+ # @yield [result, operation] Access the result along with the TransportOperation object
225
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::ListOrganizationImpactsResponse]
226
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
227
+ #
228
+ # @return [::Google::Cloud::ServiceHealth::V1::ListOrganizationImpactsResponse]
229
+ # A result object deserialized from the server's reply
230
+ def list_organization_impacts request_pb, options = nil
231
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
232
+
233
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_organization_impacts_request request_pb
234
+ query_string_params = if query_string_params.any?
235
+ query_string_params.to_h { |p| p.split "=", 2 }
236
+ else
237
+ {}
238
+ end
239
+
240
+ response = @client_stub.make_http_request(
241
+ verb,
242
+ uri: uri,
243
+ body: body || "",
244
+ params: query_string_params,
245
+ options: options
246
+ )
247
+ operation = ::Gapic::Rest::TransportOperation.new response
248
+ result = ::Google::Cloud::ServiceHealth::V1::ListOrganizationImpactsResponse.decode_json response.body, ignore_unknown_fields: true
249
+
250
+ yield result, operation if block_given?
251
+ result
252
+ end
253
+
254
+ ##
255
+ # Baseline implementation for the get_organization_impact REST call
256
+ #
257
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetOrganizationImpactRequest]
258
+ # A request object representing the call parameters. Required.
259
+ # @param options [::Gapic::CallOptions]
260
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
261
+ #
262
+ # @yield [result, operation] Access the result along with the TransportOperation object
263
+ # @yieldparam result [::Google::Cloud::ServiceHealth::V1::OrganizationImpact]
264
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
265
+ #
266
+ # @return [::Google::Cloud::ServiceHealth::V1::OrganizationImpact]
267
+ # A result object deserialized from the server's reply
268
+ def get_organization_impact request_pb, options = nil
269
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
270
+
271
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_organization_impact_request request_pb
272
+ query_string_params = if query_string_params.any?
273
+ query_string_params.to_h { |p| p.split "=", 2 }
274
+ else
275
+ {}
276
+ end
277
+
278
+ response = @client_stub.make_http_request(
279
+ verb,
280
+ uri: uri,
281
+ body: body || "",
282
+ params: query_string_params,
283
+ options: options
284
+ )
285
+ operation = ::Gapic::Rest::TransportOperation.new response
286
+ result = ::Google::Cloud::ServiceHealth::V1::OrganizationImpact.decode_json response.body, ignore_unknown_fields: true
287
+
288
+ yield result, operation if block_given?
289
+ result
290
+ end
291
+
292
+ ##
293
+ # @private
294
+ #
295
+ # GRPC transcoding helper method for the list_events REST call
296
+ #
297
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListEventsRequest]
298
+ # A request object representing the call parameters. Required.
299
+ # @return [Array(String, [String, nil], Hash{String => String})]
300
+ # Uri, Body, Query string parameters
301
+ def self.transcode_list_events_request request_pb
302
+ transcoder = Gapic::Rest::GrpcTranscoder.new
303
+ .with_bindings(
304
+ uri_method: :get,
305
+ uri_template: "/v1/{parent}/events",
306
+ matches: [
307
+ ["parent", %r{^projects/[^/]+/locations/[^/]+/?$}, false]
308
+ ]
309
+ )
310
+ transcoder.transcode request_pb
311
+ end
312
+
313
+ ##
314
+ # @private
315
+ #
316
+ # GRPC transcoding helper method for the get_event REST call
317
+ #
318
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetEventRequest]
319
+ # A request object representing the call parameters. Required.
320
+ # @return [Array(String, [String, nil], Hash{String => String})]
321
+ # Uri, Body, Query string parameters
322
+ def self.transcode_get_event_request request_pb
323
+ transcoder = Gapic::Rest::GrpcTranscoder.new
324
+ .with_bindings(
325
+ uri_method: :get,
326
+ uri_template: "/v1/{name}",
327
+ matches: [
328
+ ["name", %r{^projects/[^/]+/locations/[^/]+/events/[^/]+/?$}, false]
329
+ ]
330
+ )
331
+ transcoder.transcode request_pb
332
+ end
333
+
334
+ ##
335
+ # @private
336
+ #
337
+ # GRPC transcoding helper method for the list_organization_events REST call
338
+ #
339
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListOrganizationEventsRequest]
340
+ # A request object representing the call parameters. Required.
341
+ # @return [Array(String, [String, nil], Hash{String => String})]
342
+ # Uri, Body, Query string parameters
343
+ def self.transcode_list_organization_events_request request_pb
344
+ transcoder = Gapic::Rest::GrpcTranscoder.new
345
+ .with_bindings(
346
+ uri_method: :get,
347
+ uri_template: "/v1/{parent}/organizationEvents",
348
+ matches: [
349
+ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false]
350
+ ]
351
+ )
352
+ transcoder.transcode request_pb
353
+ end
354
+
355
+ ##
356
+ # @private
357
+ #
358
+ # GRPC transcoding helper method for the get_organization_event REST call
359
+ #
360
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetOrganizationEventRequest]
361
+ # A request object representing the call parameters. Required.
362
+ # @return [Array(String, [String, nil], Hash{String => String})]
363
+ # Uri, Body, Query string parameters
364
+ def self.transcode_get_organization_event_request request_pb
365
+ transcoder = Gapic::Rest::GrpcTranscoder.new
366
+ .with_bindings(
367
+ uri_method: :get,
368
+ uri_template: "/v1/{name}",
369
+ matches: [
370
+ ["name", %r{^organizations/[^/]+/locations/[^/]+/organizationEvents/[^/]+/?$}, false]
371
+ ]
372
+ )
373
+ transcoder.transcode request_pb
374
+ end
375
+
376
+ ##
377
+ # @private
378
+ #
379
+ # GRPC transcoding helper method for the list_organization_impacts REST call
380
+ #
381
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::ListOrganizationImpactsRequest]
382
+ # A request object representing the call parameters. Required.
383
+ # @return [Array(String, [String, nil], Hash{String => String})]
384
+ # Uri, Body, Query string parameters
385
+ def self.transcode_list_organization_impacts_request request_pb
386
+ transcoder = Gapic::Rest::GrpcTranscoder.new
387
+ .with_bindings(
388
+ uri_method: :get,
389
+ uri_template: "/v1/{parent}/organizationImpacts",
390
+ matches: [
391
+ ["parent", %r{^organizations/[^/]+/locations/[^/]+/?$}, false]
392
+ ]
393
+ )
394
+ transcoder.transcode request_pb
395
+ end
396
+
397
+ ##
398
+ # @private
399
+ #
400
+ # GRPC transcoding helper method for the get_organization_impact REST call
401
+ #
402
+ # @param request_pb [::Google::Cloud::ServiceHealth::V1::GetOrganizationImpactRequest]
403
+ # A request object representing the call parameters. Required.
404
+ # @return [Array(String, [String, nil], Hash{String => String})]
405
+ # Uri, Body, Query string parameters
406
+ def self.transcode_get_organization_impact_request request_pb
407
+ transcoder = Gapic::Rest::GrpcTranscoder.new
408
+ .with_bindings(
409
+ uri_method: :get,
410
+ uri_template: "/v1/{name}",
411
+ matches: [
412
+ ["name", %r{^organizations/[^/]+/locations/[^/]+/organizationImpacts/[^/]+/?$}, false]
413
+ ]
414
+ )
415
+ transcoder.transcode request_pb
416
+ end
417
+ end
418
+ end
419
+ end
420
+ end
421
+ end
422
+ end
423
+ end
@@ -0,0 +1,53 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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/rest"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/service_health/v1/version"
24
+ require "google/cloud/service_health/v1/bindings_override"
25
+
26
+ require "google/cloud/service_health/v1/service_health/credentials"
27
+ require "google/cloud/service_health/v1/service_health/paths"
28
+ require "google/cloud/service_health/v1/service_health/rest/client"
29
+
30
+ module Google
31
+ module Cloud
32
+ module ServiceHealth
33
+ module V1
34
+ ##
35
+ # Request service health events relevant to your Google Cloud project.
36
+ #
37
+ # To load this service and instantiate a REST client:
38
+ #
39
+ # require "google/cloud/service_health/v1/service_health/rest"
40
+ # client = ::Google::Cloud::ServiceHealth::V1::ServiceHealth::Rest::Client.new
41
+ #
42
+ module ServiceHealth
43
+ # Client for the REST transport
44
+ module Rest
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+ end
51
+
52
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
53
+ require "google/cloud/service_health/v1/service_health/rest/helpers" if ::File.file? helper_path
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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/common"
20
+ require "gapic/config"
21
+ require "gapic/config/method"
22
+
23
+ require "google/cloud/service_health/v1/version"
24
+
25
+ require "google/cloud/service_health/v1/service_health/credentials"
26
+ require "google/cloud/service_health/v1/service_health/paths"
27
+ require "google/cloud/service_health/v1/service_health/client"
28
+ require "google/cloud/service_health/v1/service_health/rest"
29
+
30
+ module Google
31
+ module Cloud
32
+ module ServiceHealth
33
+ module V1
34
+ ##
35
+ # Request service health events relevant to your Google Cloud project.
36
+ #
37
+ # @example Load this service and instantiate a gRPC client
38
+ #
39
+ # require "google/cloud/service_health/v1/service_health"
40
+ # client = ::Google::Cloud::ServiceHealth::V1::ServiceHealth::Client.new
41
+ #
42
+ # @example Load this service and instantiate a REST client
43
+ #
44
+ # require "google/cloud/service_health/v1/service_health/rest"
45
+ # client = ::Google::Cloud::ServiceHealth::V1::ServiceHealth::Rest::Client.new
46
+ #
47
+ module ServiceHealth
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
53
+
54
+ helper_path = ::File.join __dir__, "service_health", "helpers.rb"
55
+ require "google/cloud/service_health/v1/service_health/helpers" if ::File.file? helper_path
@@ -1,10 +1,12 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # Copyright 2024 Google LLC
2
4
  #
3
5
  # Licensed under the Apache License, Version 2.0 (the "License");
4
6
  # you may not use this file except in compliance with the License.
5
7
  # You may obtain a copy of the License at
6
8
  #
7
- # http://www.apache.org/licenses/LICENSE-2.0
9
+ # https://www.apache.org/licenses/LICENSE-2.0
8
10
  #
9
11
  # Unless required by applicable law or agreed to in writing, software
10
12
  # distributed under the License is distributed on an "AS IS" BASIS,
@@ -12,11 +14,14 @@
12
14
  # See the License for the specific language governing permissions and
13
15
  # limitations under the License.
14
16
 
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
15
20
  module Google
16
21
  module Cloud
17
22
  module ServiceHealth
18
23
  module V1
19
- VERSION = "0.a"
24
+ VERSION = "0.1.0"
20
25
  end
21
26
  end
22
27
  end
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2024 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 "google/cloud/service_health/v1/service_health"
20
+ require "google/cloud/service_health/v1/version"
21
+
22
+ module Google
23
+ module Cloud
24
+ module ServiceHealth
25
+ ##
26
+ # API client module.
27
+ #
28
+ # @example Load this package, including all its services, and instantiate a gRPC client
29
+ #
30
+ # require "google/cloud/service_health/v1"
31
+ # client = ::Google::Cloud::ServiceHealth::V1::ServiceHealth::Client.new
32
+ #
33
+ # @example Load this package, including all its services, and instantiate a REST client
34
+ #
35
+ # require "google/cloud/service_health/v1"
36
+ # client = ::Google::Cloud::ServiceHealth::V1::ServiceHealth::Rest::Client.new
37
+ #
38
+ module V1
39
+ end
40
+ end
41
+ end
42
+ end
43
+
44
+ helper_path = ::File.join __dir__, "v1", "_helpers.rb"
45
+ require "google/cloud/service_health/v1/_helpers" if ::File.file? helper_path