google-cloud-support-v2beta 0.6.0 → 0.8.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.
Files changed (21) hide show
  1. checksums.yaml +4 -4
  2. data/lib/google/cloud/support/v2beta/case_service/client.rb +21 -5
  3. data/lib/google/cloud/support/v2beta/case_service/rest/client.rb +21 -5
  4. data/lib/google/cloud/support/v2beta/rest.rb +1 -0
  5. data/lib/google/cloud/support/v2beta/support_event_subscription_pb.rb +27 -0
  6. data/lib/google/cloud/support/v2beta/support_event_subscription_service/client.rb +1103 -0
  7. data/lib/google/cloud/support/v2beta/support_event_subscription_service/credentials.rb +47 -0
  8. data/lib/google/cloud/support/v2beta/support_event_subscription_service/paths.rb +64 -0
  9. data/lib/google/cloud/support/v2beta/support_event_subscription_service/rest/client.rb +1011 -0
  10. data/lib/google/cloud/support/v2beta/support_event_subscription_service/rest/service_stub.rb +512 -0
  11. data/lib/google/cloud/support/v2beta/support_event_subscription_service/rest.rb +52 -0
  12. data/lib/google/cloud/support/v2beta/support_event_subscription_service.rb +55 -0
  13. data/lib/google/cloud/support/v2beta/support_event_subscription_service_pb.rb +36 -0
  14. data/lib/google/cloud/support/v2beta/support_event_subscription_service_services_pb.rb +87 -0
  15. data/lib/google/cloud/support/v2beta/version.rb +1 -1
  16. data/lib/google/cloud/support/v2beta.rb +1 -0
  17. data/proto_docs/google/cloud/support/v2beta/case_service.rb +21 -5
  18. data/proto_docs/google/cloud/support/v2beta/support_event_subscription.rb +93 -0
  19. data/proto_docs/google/cloud/support/v2beta/support_event_subscription_service.rb +147 -0
  20. data/proto_docs/google/protobuf/empty.rb +34 -0
  21. metadata +14 -1
@@ -0,0 +1,512 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2026 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/support/v2beta/support_event_subscription_service_pb"
20
+
21
+ module Google
22
+ module Cloud
23
+ module Support
24
+ module V2beta
25
+ module SupportEventSubscriptionService
26
+ module Rest
27
+ ##
28
+ # REST service stub for the SupportEventSubscriptionService service.
29
+ # Service stub contains baseline method implementations
30
+ # including transcoding, making the REST call, and deserialing the response.
31
+ #
32
+ class ServiceStub
33
+ # @private
34
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
35
+ # These require statements are intentionally placed here to initialize
36
+ # the REST modules only when it's required.
37
+ require "gapic/rest"
38
+
39
+ @client_stub = ::Gapic::Rest::ClientStub.new endpoint: endpoint,
40
+ endpoint_template: endpoint_template,
41
+ universe_domain: universe_domain,
42
+ credentials: credentials,
43
+ numeric_enums: true,
44
+ service_name: self.class,
45
+ raise_faraday_errors: false,
46
+ logger: logger
47
+ end
48
+
49
+ ##
50
+ # The effective universe domain
51
+ #
52
+ # @return [String]
53
+ #
54
+ def universe_domain
55
+ @client_stub.universe_domain
56
+ end
57
+
58
+ ##
59
+ # The effective endpoint
60
+ #
61
+ # @return [String]
62
+ #
63
+ def endpoint
64
+ @client_stub.endpoint
65
+ end
66
+
67
+ ##
68
+ # The logger used for request/response debug logging.
69
+ #
70
+ # @return [Logger]
71
+ #
72
+ def logger stub: false
73
+ stub ? @client_stub.stub_logger : @client_stub.logger
74
+ end
75
+
76
+ ##
77
+ # Baseline implementation for the create_support_event_subscription REST call
78
+ #
79
+ # @param request_pb [::Google::Cloud::Support::V2beta::CreateSupportEventSubscriptionRequest]
80
+ # A request object representing the call parameters. Required.
81
+ # @param options [::Gapic::CallOptions]
82
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
83
+ #
84
+ # @yield [result, operation] Access the result along with the TransportOperation object
85
+ # @yieldparam result [::Google::Cloud::Support::V2beta::SupportEventSubscription]
86
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
87
+ #
88
+ # @return [::Google::Cloud::Support::V2beta::SupportEventSubscription]
89
+ # A result object deserialized from the server's reply
90
+ def create_support_event_subscription request_pb, options = nil
91
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
92
+
93
+ verb, uri, query_string_params, body = ServiceStub.transcode_create_support_event_subscription_request request_pb
94
+ query_string_params = if query_string_params.any?
95
+ query_string_params.to_h { |p| p.split "=", 2 }
96
+ else
97
+ {}
98
+ end
99
+
100
+ response = @client_stub.make_http_request(
101
+ verb,
102
+ uri: uri,
103
+ body: body || "",
104
+ params: query_string_params,
105
+ method_name: "create_support_event_subscription",
106
+ options: options
107
+ )
108
+ operation = ::Gapic::Rest::TransportOperation.new response
109
+ result = ::Google::Cloud::Support::V2beta::SupportEventSubscription.decode_json response.body, ignore_unknown_fields: true
110
+ catch :response do
111
+ yield result, operation if block_given?
112
+ result
113
+ end
114
+ end
115
+
116
+ ##
117
+ # Baseline implementation for the get_support_event_subscription REST call
118
+ #
119
+ # @param request_pb [::Google::Cloud::Support::V2beta::GetSupportEventSubscriptionRequest]
120
+ # A request object representing the call parameters. Required.
121
+ # @param options [::Gapic::CallOptions]
122
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
123
+ #
124
+ # @yield [result, operation] Access the result along with the TransportOperation object
125
+ # @yieldparam result [::Google::Cloud::Support::V2beta::SupportEventSubscription]
126
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
127
+ #
128
+ # @return [::Google::Cloud::Support::V2beta::SupportEventSubscription]
129
+ # A result object deserialized from the server's reply
130
+ def get_support_event_subscription request_pb, options = nil
131
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
132
+
133
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_support_event_subscription_request request_pb
134
+ query_string_params = if query_string_params.any?
135
+ query_string_params.to_h { |p| p.split "=", 2 }
136
+ else
137
+ {}
138
+ end
139
+
140
+ response = @client_stub.make_http_request(
141
+ verb,
142
+ uri: uri,
143
+ body: body || "",
144
+ params: query_string_params,
145
+ method_name: "get_support_event_subscription",
146
+ options: options
147
+ )
148
+ operation = ::Gapic::Rest::TransportOperation.new response
149
+ result = ::Google::Cloud::Support::V2beta::SupportEventSubscription.decode_json response.body, ignore_unknown_fields: true
150
+ catch :response do
151
+ yield result, operation if block_given?
152
+ result
153
+ end
154
+ end
155
+
156
+ ##
157
+ # Baseline implementation for the list_support_event_subscriptions REST call
158
+ #
159
+ # @param request_pb [::Google::Cloud::Support::V2beta::ListSupportEventSubscriptionsRequest]
160
+ # A request object representing the call parameters. Required.
161
+ # @param options [::Gapic::CallOptions]
162
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
163
+ #
164
+ # @yield [result, operation] Access the result along with the TransportOperation object
165
+ # @yieldparam result [::Google::Cloud::Support::V2beta::ListSupportEventSubscriptionsResponse]
166
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
167
+ #
168
+ # @return [::Google::Cloud::Support::V2beta::ListSupportEventSubscriptionsResponse]
169
+ # A result object deserialized from the server's reply
170
+ def list_support_event_subscriptions request_pb, options = nil
171
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
172
+
173
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_support_event_subscriptions_request request_pb
174
+ query_string_params = if query_string_params.any?
175
+ query_string_params.to_h { |p| p.split "=", 2 }
176
+ else
177
+ {}
178
+ end
179
+
180
+ response = @client_stub.make_http_request(
181
+ verb,
182
+ uri: uri,
183
+ body: body || "",
184
+ params: query_string_params,
185
+ method_name: "list_support_event_subscriptions",
186
+ options: options
187
+ )
188
+ operation = ::Gapic::Rest::TransportOperation.new response
189
+ result = ::Google::Cloud::Support::V2beta::ListSupportEventSubscriptionsResponse.decode_json response.body, ignore_unknown_fields: true
190
+ catch :response do
191
+ yield result, operation if block_given?
192
+ result
193
+ end
194
+ end
195
+
196
+ ##
197
+ # Baseline implementation for the update_support_event_subscription REST call
198
+ #
199
+ # @param request_pb [::Google::Cloud::Support::V2beta::UpdateSupportEventSubscriptionRequest]
200
+ # A request object representing the call parameters. Required.
201
+ # @param options [::Gapic::CallOptions]
202
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
203
+ #
204
+ # @yield [result, operation] Access the result along with the TransportOperation object
205
+ # @yieldparam result [::Google::Cloud::Support::V2beta::SupportEventSubscription]
206
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
207
+ #
208
+ # @return [::Google::Cloud::Support::V2beta::SupportEventSubscription]
209
+ # A result object deserialized from the server's reply
210
+ def update_support_event_subscription request_pb, options = nil
211
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
212
+
213
+ verb, uri, query_string_params, body = ServiceStub.transcode_update_support_event_subscription_request request_pb
214
+ query_string_params = if query_string_params.any?
215
+ query_string_params.to_h { |p| p.split "=", 2 }
216
+ else
217
+ {}
218
+ end
219
+
220
+ response = @client_stub.make_http_request(
221
+ verb,
222
+ uri: uri,
223
+ body: body || "",
224
+ params: query_string_params,
225
+ method_name: "update_support_event_subscription",
226
+ options: options
227
+ )
228
+ operation = ::Gapic::Rest::TransportOperation.new response
229
+ result = ::Google::Cloud::Support::V2beta::SupportEventSubscription.decode_json response.body, ignore_unknown_fields: true
230
+ catch :response do
231
+ yield result, operation if block_given?
232
+ result
233
+ end
234
+ end
235
+
236
+ ##
237
+ # Baseline implementation for the delete_support_event_subscription REST call
238
+ #
239
+ # @param request_pb [::Google::Cloud::Support::V2beta::DeleteSupportEventSubscriptionRequest]
240
+ # A request object representing the call parameters. Required.
241
+ # @param options [::Gapic::CallOptions]
242
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
243
+ #
244
+ # @yield [result, operation] Access the result along with the TransportOperation object
245
+ # @yieldparam result [::Google::Cloud::Support::V2beta::SupportEventSubscription]
246
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
247
+ #
248
+ # @return [::Google::Cloud::Support::V2beta::SupportEventSubscription]
249
+ # A result object deserialized from the server's reply
250
+ def delete_support_event_subscription request_pb, options = nil
251
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
252
+
253
+ verb, uri, query_string_params, body = ServiceStub.transcode_delete_support_event_subscription_request request_pb
254
+ query_string_params = if query_string_params.any?
255
+ query_string_params.to_h { |p| p.split "=", 2 }
256
+ else
257
+ {}
258
+ end
259
+
260
+ response = @client_stub.make_http_request(
261
+ verb,
262
+ uri: uri,
263
+ body: body || "",
264
+ params: query_string_params,
265
+ method_name: "delete_support_event_subscription",
266
+ options: options
267
+ )
268
+ operation = ::Gapic::Rest::TransportOperation.new response
269
+ result = ::Google::Cloud::Support::V2beta::SupportEventSubscription.decode_json response.body, ignore_unknown_fields: true
270
+ catch :response do
271
+ yield result, operation if block_given?
272
+ result
273
+ end
274
+ end
275
+
276
+ ##
277
+ # Baseline implementation for the undelete_support_event_subscription REST call
278
+ #
279
+ # @param request_pb [::Google::Cloud::Support::V2beta::UndeleteSupportEventSubscriptionRequest]
280
+ # A request object representing the call parameters. Required.
281
+ # @param options [::Gapic::CallOptions]
282
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
283
+ #
284
+ # @yield [result, operation] Access the result along with the TransportOperation object
285
+ # @yieldparam result [::Google::Cloud::Support::V2beta::SupportEventSubscription]
286
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
287
+ #
288
+ # @return [::Google::Cloud::Support::V2beta::SupportEventSubscription]
289
+ # A result object deserialized from the server's reply
290
+ def undelete_support_event_subscription request_pb, options = nil
291
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
292
+
293
+ verb, uri, query_string_params, body = ServiceStub.transcode_undelete_support_event_subscription_request request_pb
294
+ query_string_params = if query_string_params.any?
295
+ query_string_params.to_h { |p| p.split "=", 2 }
296
+ else
297
+ {}
298
+ end
299
+
300
+ response = @client_stub.make_http_request(
301
+ verb,
302
+ uri: uri,
303
+ body: body || "",
304
+ params: query_string_params,
305
+ method_name: "undelete_support_event_subscription",
306
+ options: options
307
+ )
308
+ operation = ::Gapic::Rest::TransportOperation.new response
309
+ result = ::Google::Cloud::Support::V2beta::SupportEventSubscription.decode_json response.body, ignore_unknown_fields: true
310
+ catch :response do
311
+ yield result, operation if block_given?
312
+ result
313
+ end
314
+ end
315
+
316
+ ##
317
+ # Baseline implementation for the expunge_support_event_subscription REST call
318
+ #
319
+ # @param request_pb [::Google::Cloud::Support::V2beta::ExpungeSupportEventSubscriptionRequest]
320
+ # A request object representing the call parameters. Required.
321
+ # @param options [::Gapic::CallOptions]
322
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
323
+ #
324
+ # @yield [result, operation] Access the result along with the TransportOperation object
325
+ # @yieldparam result [::Google::Protobuf::Empty]
326
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
327
+ #
328
+ # @return [::Google::Protobuf::Empty]
329
+ # A result object deserialized from the server's reply
330
+ def expunge_support_event_subscription request_pb, options = nil
331
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
332
+
333
+ verb, uri, query_string_params, body = ServiceStub.transcode_expunge_support_event_subscription_request request_pb
334
+ query_string_params = if query_string_params.any?
335
+ query_string_params.to_h { |p| p.split "=", 2 }
336
+ else
337
+ {}
338
+ end
339
+
340
+ response = @client_stub.make_http_request(
341
+ verb,
342
+ uri: uri,
343
+ body: body || "",
344
+ params: query_string_params,
345
+ method_name: "expunge_support_event_subscription",
346
+ options: options
347
+ )
348
+ operation = ::Gapic::Rest::TransportOperation.new response
349
+ result = ::Google::Protobuf::Empty.decode_json response.body, ignore_unknown_fields: true
350
+ catch :response do
351
+ yield result, operation if block_given?
352
+ result
353
+ end
354
+ end
355
+
356
+ ##
357
+ # @private
358
+ #
359
+ # GRPC transcoding helper method for the create_support_event_subscription REST call
360
+ #
361
+ # @param request_pb [::Google::Cloud::Support::V2beta::CreateSupportEventSubscriptionRequest]
362
+ # A request object representing the call parameters. Required.
363
+ # @return [Array(String, [String, nil], Hash{String => String})]
364
+ # Uri, Body, Query string parameters
365
+ def self.transcode_create_support_event_subscription_request request_pb
366
+ transcoder = Gapic::Rest::GrpcTranscoder.new
367
+ .with_bindings(
368
+ uri_method: :post,
369
+ uri_template: "/v2beta/{parent}/supportEventSubscriptions",
370
+ body: "support_event_subscription",
371
+ matches: [
372
+ ["parent", %r{^organizations/[^/]+/?$}, false]
373
+ ]
374
+ )
375
+ transcoder.transcode request_pb
376
+ end
377
+
378
+ ##
379
+ # @private
380
+ #
381
+ # GRPC transcoding helper method for the get_support_event_subscription REST call
382
+ #
383
+ # @param request_pb [::Google::Cloud::Support::V2beta::GetSupportEventSubscriptionRequest]
384
+ # A request object representing the call parameters. Required.
385
+ # @return [Array(String, [String, nil], Hash{String => String})]
386
+ # Uri, Body, Query string parameters
387
+ def self.transcode_get_support_event_subscription_request request_pb
388
+ transcoder = Gapic::Rest::GrpcTranscoder.new
389
+ .with_bindings(
390
+ uri_method: :get,
391
+ uri_template: "/v2beta/{name}",
392
+ matches: [
393
+ ["name", %r{^organizations/[^/]+/supportEventSubscriptions/[^/]+/?$}, false]
394
+ ]
395
+ )
396
+ transcoder.transcode request_pb
397
+ end
398
+
399
+ ##
400
+ # @private
401
+ #
402
+ # GRPC transcoding helper method for the list_support_event_subscriptions REST call
403
+ #
404
+ # @param request_pb [::Google::Cloud::Support::V2beta::ListSupportEventSubscriptionsRequest]
405
+ # A request object representing the call parameters. Required.
406
+ # @return [Array(String, [String, nil], Hash{String => String})]
407
+ # Uri, Body, Query string parameters
408
+ def self.transcode_list_support_event_subscriptions_request request_pb
409
+ transcoder = Gapic::Rest::GrpcTranscoder.new
410
+ .with_bindings(
411
+ uri_method: :get,
412
+ uri_template: "/v2beta/{parent}/supportEventSubscriptions",
413
+ matches: [
414
+ ["parent", %r{^organizations/[^/]+/?$}, false]
415
+ ]
416
+ )
417
+ transcoder.transcode request_pb
418
+ end
419
+
420
+ ##
421
+ # @private
422
+ #
423
+ # GRPC transcoding helper method for the update_support_event_subscription REST call
424
+ #
425
+ # @param request_pb [::Google::Cloud::Support::V2beta::UpdateSupportEventSubscriptionRequest]
426
+ # A request object representing the call parameters. Required.
427
+ # @return [Array(String, [String, nil], Hash{String => String})]
428
+ # Uri, Body, Query string parameters
429
+ def self.transcode_update_support_event_subscription_request request_pb
430
+ transcoder = Gapic::Rest::GrpcTranscoder.new
431
+ .with_bindings(
432
+ uri_method: :patch,
433
+ uri_template: "/v2beta/{support_event_subscription.name}",
434
+ body: "support_event_subscription",
435
+ matches: [
436
+ ["support_event_subscription.name", %r{^organizations/[^/]+/supportEventSubscriptions/[^/]+/?$}, false]
437
+ ]
438
+ )
439
+ transcoder.transcode request_pb
440
+ end
441
+
442
+ ##
443
+ # @private
444
+ #
445
+ # GRPC transcoding helper method for the delete_support_event_subscription REST call
446
+ #
447
+ # @param request_pb [::Google::Cloud::Support::V2beta::DeleteSupportEventSubscriptionRequest]
448
+ # A request object representing the call parameters. Required.
449
+ # @return [Array(String, [String, nil], Hash{String => String})]
450
+ # Uri, Body, Query string parameters
451
+ def self.transcode_delete_support_event_subscription_request request_pb
452
+ transcoder = Gapic::Rest::GrpcTranscoder.new
453
+ .with_bindings(
454
+ uri_method: :delete,
455
+ uri_template: "/v2beta/{name}",
456
+ matches: [
457
+ ["name", %r{^organizations/[^/]+/supportEventSubscriptions/[^/]+/?$}, false]
458
+ ]
459
+ )
460
+ transcoder.transcode request_pb
461
+ end
462
+
463
+ ##
464
+ # @private
465
+ #
466
+ # GRPC transcoding helper method for the undelete_support_event_subscription REST call
467
+ #
468
+ # @param request_pb [::Google::Cloud::Support::V2beta::UndeleteSupportEventSubscriptionRequest]
469
+ # A request object representing the call parameters. Required.
470
+ # @return [Array(String, [String, nil], Hash{String => String})]
471
+ # Uri, Body, Query string parameters
472
+ def self.transcode_undelete_support_event_subscription_request request_pb
473
+ transcoder = Gapic::Rest::GrpcTranscoder.new
474
+ .with_bindings(
475
+ uri_method: :post,
476
+ uri_template: "/v2beta/{name}:undelete",
477
+ body: "*",
478
+ matches: [
479
+ ["name", %r{^organizations/[^/]+/supportEventSubscriptions/[^/]+/?$}, false]
480
+ ]
481
+ )
482
+ transcoder.transcode request_pb
483
+ end
484
+
485
+ ##
486
+ # @private
487
+ #
488
+ # GRPC transcoding helper method for the expunge_support_event_subscription REST call
489
+ #
490
+ # @param request_pb [::Google::Cloud::Support::V2beta::ExpungeSupportEventSubscriptionRequest]
491
+ # A request object representing the call parameters. Required.
492
+ # @return [Array(String, [String, nil], Hash{String => String})]
493
+ # Uri, Body, Query string parameters
494
+ def self.transcode_expunge_support_event_subscription_request request_pb
495
+ transcoder = Gapic::Rest::GrpcTranscoder.new
496
+ .with_bindings(
497
+ uri_method: :post,
498
+ uri_template: "/v2beta/{name}:expunge",
499
+ body: "*",
500
+ matches: [
501
+ ["name", %r{^organizations/[^/]+/supportEventSubscriptions/[^/]+/?$}, false]
502
+ ]
503
+ )
504
+ transcoder.transcode request_pb
505
+ end
506
+ end
507
+ end
508
+ end
509
+ end
510
+ end
511
+ end
512
+ end
@@ -0,0 +1,52 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2026 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/support/v2beta/version"
24
+
25
+ require "google/cloud/support/v2beta/support_event_subscription_service/credentials"
26
+ require "google/cloud/support/v2beta/support_event_subscription_service/paths"
27
+ require "google/cloud/support/v2beta/support_event_subscription_service/rest/client"
28
+
29
+ module Google
30
+ module Cloud
31
+ module Support
32
+ module V2beta
33
+ ##
34
+ # Service for managing customer support event subscriptions.
35
+ #
36
+ # To load this service and instantiate a REST client:
37
+ #
38
+ # require "google/cloud/support/v2beta/support_event_subscription_service/rest"
39
+ # client = ::Google::Cloud::Support::V2beta::SupportEventSubscriptionService::Rest::Client.new
40
+ #
41
+ module SupportEventSubscriptionService
42
+ # Client for the REST transport
43
+ module Rest
44
+ end
45
+ end
46
+ end
47
+ end
48
+ end
49
+ end
50
+
51
+ helper_path = ::File.join __dir__, "rest", "helpers.rb"
52
+ require "google/cloud/support/v2beta/support_event_subscription_service/rest/helpers" if ::File.file? helper_path
@@ -0,0 +1,55 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2026 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/support/v2beta/version"
24
+
25
+ require "google/cloud/support/v2beta/support_event_subscription_service/credentials"
26
+ require "google/cloud/support/v2beta/support_event_subscription_service/paths"
27
+ require "google/cloud/support/v2beta/support_event_subscription_service/client"
28
+ require "google/cloud/support/v2beta/support_event_subscription_service/rest"
29
+
30
+ module Google
31
+ module Cloud
32
+ module Support
33
+ module V2beta
34
+ ##
35
+ # Service for managing customer support event subscriptions.
36
+ #
37
+ # @example Load this service and instantiate a gRPC client
38
+ #
39
+ # require "google/cloud/support/v2beta/support_event_subscription_service"
40
+ # client = ::Google::Cloud::Support::V2beta::SupportEventSubscriptionService::Client.new
41
+ #
42
+ # @example Load this service and instantiate a REST client
43
+ #
44
+ # require "google/cloud/support/v2beta/support_event_subscription_service/rest"
45
+ # client = ::Google::Cloud::Support::V2beta::SupportEventSubscriptionService::Rest::Client.new
46
+ #
47
+ module SupportEventSubscriptionService
48
+ end
49
+ end
50
+ end
51
+ end
52
+ end
53
+
54
+ helper_path = ::File.join __dir__, "support_event_subscription_service", "helpers.rb"
55
+ require "google/cloud/support/v2beta/support_event_subscription_service/helpers" if ::File.file? helper_path
@@ -0,0 +1,36 @@
1
+ # frozen_string_literal: true
2
+ # Generated by the protocol buffer compiler. DO NOT EDIT!
3
+ # source: google/cloud/support/v2beta/support_event_subscription_service.proto
4
+
5
+ require 'google/protobuf'
6
+
7
+ require 'google/api/annotations_pb'
8
+ require 'google/api/client_pb'
9
+ require 'google/api/field_behavior_pb'
10
+ require 'google/api/resource_pb'
11
+ require 'google/cloud/support/v2beta/support_event_subscription_pb'
12
+ require 'google/protobuf/empty_pb'
13
+ require 'google/protobuf/field_mask_pb'
14
+
15
+
16
+ descriptor_data = "\nDgoogle/cloud/support/v2beta/support_event_subscription_service.proto\x12\x1bgoogle.cloud.support.v2beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a<google/cloud/support/v2beta/support_event_subscription.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"\xd5\x01\n%CreateSupportEventSubscriptionRequest\x12L\n\x06parent\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\x12\x34\x63loudsupport.googleapis.com/SupportEventSubscription\x12^\n\x1asupport_event_subscription\x18\x02 \x01(\x0b\x32\x35.google.cloud.support.v2beta.SupportEventSubscriptionB\x03\xe0\x41\x02\"p\n\"GetSupportEventSubscriptionRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4cloudsupport.googleapis.com/SupportEventSubscription\"\xd5\x01\n$ListSupportEventSubscriptionsRequest\x12L\n\x06parent\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\x12\x34\x63loudsupport.googleapis.com/SupportEventSubscription\x12\x13\n\x06\x66ilter\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x19\n\x0cshow_deleted\x18\x03 \x01(\x08\x42\x03\xe0\x41\x01\x12\x16\n\tpage_size\x18\x04 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x05 \x01(\tB\x03\xe0\x41\x01\"\x9c\x01\n%ListSupportEventSubscriptionsResponse\x12Z\n\x1bsupport_event_subscriptions\x18\x01 \x03(\x0b\x32\x35.google.cloud.support.v2beta.SupportEventSubscription\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"\xbd\x01\n%UpdateSupportEventSubscriptionRequest\x12^\n\x1asupport_event_subscription\x18\x01 \x01(\x0b\x32\x35.google.cloud.support.v2beta.SupportEventSubscriptionB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"s\n%DeleteSupportEventSubscriptionRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4cloudsupport.googleapis.com/SupportEventSubscription\"u\n\'UndeleteSupportEventSubscriptionRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4cloudsupport.googleapis.com/SupportEventSubscription\"t\n&ExpungeSupportEventSubscriptionRequest\x12J\n\x04name\x18\x01 \x01(\tB<\xe0\x41\x02\xfa\x41\x36\n4cloudsupport.googleapis.com/SupportEventSubscription2\xe3\x0e\n\x1fSupportEventSubscriptionService\x12\xa0\x02\n\x1e\x43reateSupportEventSubscription\x12\x42.google.cloud.support.v2beta.CreateSupportEventSubscriptionRequest\x1a\x35.google.cloud.support.v2beta.SupportEventSubscription\"\x82\x01\xda\x41!parent,support_event_subscription\x82\xd3\xe4\x93\x02X\":/v2beta/{parent=organizations/*}/supportEventSubscriptions:\x1asupport_event_subscription\x12\xe0\x01\n\x1bGetSupportEventSubscription\x12?.google.cloud.support.v2beta.GetSupportEventSubscriptionRequest\x1a\x35.google.cloud.support.v2beta.SupportEventSubscription\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v2beta/{name=organizations/*/supportEventSubscriptions/*}\x12\xf3\x01\n\x1dListSupportEventSubscriptions\x12\x41.google.cloud.support.v2beta.ListSupportEventSubscriptionsRequest\x1a\x42.google.cloud.support.v2beta.ListSupportEventSubscriptionsResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v2beta/{parent=organizations/*}/supportEventSubscriptions\x12\xc0\x02\n\x1eUpdateSupportEventSubscription\x12\x42.google.cloud.support.v2beta.UpdateSupportEventSubscriptionRequest\x1a\x35.google.cloud.support.v2beta.SupportEventSubscription\"\xa2\x01\xda\x41&support_event_subscription,update_mask\x82\xd3\xe4\x93\x02s2U/v2beta/{support_event_subscription.name=organizations/*/supportEventSubscriptions/*}:\x1asupport_event_subscription\x12\xe6\x01\n\x1e\x44\x65leteSupportEventSubscription\x12\x42.google.cloud.support.v2beta.DeleteSupportEventSubscriptionRequest\x1a\x35.google.cloud.support.v2beta.SupportEventSubscription\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<*:/v2beta/{name=organizations/*/supportEventSubscriptions/*}\x12\xef\x01\n UndeleteSupportEventSubscription\x12\x44.google.cloud.support.v2beta.UndeleteSupportEventSubscriptionRequest\x1a\x35.google.cloud.support.v2beta.SupportEventSubscription\"N\x82\xd3\xe4\x93\x02H\"C/v2beta/{name=organizations/*/supportEventSubscriptions/*}:undelete:\x01*\x12\xd4\x01\n\x1f\x45xpungeSupportEventSubscription\x12\x43.google.cloud.support.v2beta.ExpungeSupportEventSubscriptionRequest\x1a\x16.google.protobuf.Empty\"T\xda\x41\x04name\x82\xd3\xe4\x93\x02G\"B/v2beta/{name=organizations/*/supportEventSubscriptions/*}:expunge:\x01*\x1aO\xca\x41\x1b\x63loudsupport.googleapis.com\xd2\x41.https://www.googleapis.com/auth/cloud-platformB\xe1\x01\n\x1f\x63om.google.cloud.support.v2betaB$SupportEventSubscriptionServiceProtoP\x01Z9cloud.google.com/go/support/apiv2beta/supportpb;supportpb\xaa\x02\x1bGoogle.Cloud.Support.V2Beta\xca\x02\x1bGoogle\\Cloud\\Support\\V2beta\xea\x02\x1eGoogle::Cloud::Support::V2betab\x06proto3"
17
+
18
+ pool = ::Google::Protobuf::DescriptorPool.generated_pool
19
+ pool.add_serialized_file(descriptor_data)
20
+
21
+ module Google
22
+ module Cloud
23
+ module Support
24
+ module V2beta
25
+ CreateSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.CreateSupportEventSubscriptionRequest").msgclass
26
+ GetSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.GetSupportEventSubscriptionRequest").msgclass
27
+ ListSupportEventSubscriptionsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.ListSupportEventSubscriptionsRequest").msgclass
28
+ ListSupportEventSubscriptionsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.ListSupportEventSubscriptionsResponse").msgclass
29
+ UpdateSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.UpdateSupportEventSubscriptionRequest").msgclass
30
+ DeleteSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.DeleteSupportEventSubscriptionRequest").msgclass
31
+ UndeleteSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.UndeleteSupportEventSubscriptionRequest").msgclass
32
+ ExpungeSupportEventSubscriptionRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.cloud.support.v2beta.ExpungeSupportEventSubscriptionRequest").msgclass
33
+ end
34
+ end
35
+ end
36
+ end