google-apps-meet-v2beta 0.a → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +149 -0
  4. data/README.md +144 -8
  5. data/lib/google/apps/meet/v2beta/conference_records_service/client.rb +1595 -0
  6. data/lib/google/apps/meet/v2beta/conference_records_service/credentials.rb +44 -0
  7. data/lib/google/apps/meet/v2beta/conference_records_service/paths.rb +136 -0
  8. data/lib/google/apps/meet/v2beta/conference_records_service/rest/client.rb +1490 -0
  9. data/lib/google/apps/meet/v2beta/conference_records_service/rest/service_stub.rb +754 -0
  10. data/lib/google/apps/meet/v2beta/conference_records_service/rest.rb +52 -0
  11. data/lib/google/apps/meet/v2beta/conference_records_service.rb +55 -0
  12. data/lib/google/apps/meet/v2beta/resource_pb.rb +64 -0
  13. data/lib/google/apps/meet/v2beta/rest.rb +38 -0
  14. data/lib/google/apps/meet/v2beta/service_pb.rb +73 -0
  15. data/lib/google/apps/meet/v2beta/service_services_pb.rb +122 -0
  16. data/lib/google/apps/meet/v2beta/spaces_service/client.rb +687 -0
  17. data/lib/google/apps/meet/v2beta/spaces_service/credentials.rb +44 -0
  18. data/lib/google/apps/meet/v2beta/spaces_service/paths.rb +61 -0
  19. data/lib/google/apps/meet/v2beta/spaces_service/rest/client.rb +638 -0
  20. data/lib/google/apps/meet/v2beta/spaces_service/rest/service_stub.rb +285 -0
  21. data/lib/google/apps/meet/v2beta/spaces_service/rest.rb +52 -0
  22. data/lib/google/apps/meet/v2beta/spaces_service.rb +55 -0
  23. data/lib/google/apps/meet/v2beta/version.rb +7 -2
  24. data/lib/google/apps/meet/v2beta.rb +46 -0
  25. data/lib/google-apps-meet-v2beta.rb +21 -0
  26. data/proto_docs/README.md +4 -0
  27. data/proto_docs/google/api/client.rb +394 -0
  28. data/proto_docs/google/api/field_behavior.rb +85 -0
  29. data/proto_docs/google/api/launch_stage.rb +71 -0
  30. data/proto_docs/google/api/resource.rb +222 -0
  31. data/proto_docs/google/apps/meet/v2beta/resource.rb +375 -0
  32. data/proto_docs/google/apps/meet/v2beta/service.rb +350 -0
  33. data/proto_docs/google/protobuf/duration.rb +98 -0
  34. data/proto_docs/google/protobuf/empty.rb +34 -0
  35. data/proto_docs/google/protobuf/field_mask.rb +229 -0
  36. data/proto_docs/google/protobuf/timestamp.rb +127 -0
  37. metadata +190 -13
@@ -0,0 +1,754 @@
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 "google/apps/meet/v2beta/service_pb"
20
+
21
+ module Google
22
+ module Apps
23
+ module Meet
24
+ module V2beta
25
+ module ConferenceRecordsService
26
+ module Rest
27
+ ##
28
+ # REST service stub for the ConferenceRecordsService 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:, 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, credentials: credentials,
39
+ numeric_enums: true,
40
+ raise_faraday_errors: false
41
+ end
42
+
43
+ ##
44
+ # Baseline implementation for the get_conference_record REST call
45
+ #
46
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetConferenceRecordRequest]
47
+ # A request object representing the call parameters. Required.
48
+ # @param options [::Gapic::CallOptions]
49
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
50
+ #
51
+ # @yield [result, operation] Access the result along with the TransportOperation object
52
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ConferenceRecord]
53
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
54
+ #
55
+ # @return [::Google::Apps::Meet::V2beta::ConferenceRecord]
56
+ # A result object deserialized from the server's reply
57
+ def get_conference_record request_pb, options = nil
58
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
59
+
60
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_conference_record_request request_pb
61
+ query_string_params = if query_string_params.any?
62
+ query_string_params.to_h { |p| p.split "=", 2 }
63
+ else
64
+ {}
65
+ end
66
+
67
+ response = @client_stub.make_http_request(
68
+ verb,
69
+ uri: uri,
70
+ body: body || "",
71
+ params: query_string_params,
72
+ options: options
73
+ )
74
+ operation = ::Gapic::Rest::TransportOperation.new response
75
+ result = ::Google::Apps::Meet::V2beta::ConferenceRecord.decode_json response.body, ignore_unknown_fields: true
76
+
77
+ yield result, operation if block_given?
78
+ result
79
+ end
80
+
81
+ ##
82
+ # Baseline implementation for the list_conference_records REST call
83
+ #
84
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListConferenceRecordsRequest]
85
+ # A request object representing the call parameters. Required.
86
+ # @param options [::Gapic::CallOptions]
87
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
88
+ #
89
+ # @yield [result, operation] Access the result along with the TransportOperation object
90
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListConferenceRecordsResponse]
91
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
92
+ #
93
+ # @return [::Google::Apps::Meet::V2beta::ListConferenceRecordsResponse]
94
+ # A result object deserialized from the server's reply
95
+ def list_conference_records request_pb, options = nil
96
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
97
+
98
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_conference_records_request request_pb
99
+ query_string_params = if query_string_params.any?
100
+ query_string_params.to_h { |p| p.split "=", 2 }
101
+ else
102
+ {}
103
+ end
104
+
105
+ response = @client_stub.make_http_request(
106
+ verb,
107
+ uri: uri,
108
+ body: body || "",
109
+ params: query_string_params,
110
+ options: options
111
+ )
112
+ operation = ::Gapic::Rest::TransportOperation.new response
113
+ result = ::Google::Apps::Meet::V2beta::ListConferenceRecordsResponse.decode_json response.body, ignore_unknown_fields: true
114
+
115
+ yield result, operation if block_given?
116
+ result
117
+ end
118
+
119
+ ##
120
+ # Baseline implementation for the get_participant REST call
121
+ #
122
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetParticipantRequest]
123
+ # A request object representing the call parameters. Required.
124
+ # @param options [::Gapic::CallOptions]
125
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
126
+ #
127
+ # @yield [result, operation] Access the result along with the TransportOperation object
128
+ # @yieldparam result [::Google::Apps::Meet::V2beta::Participant]
129
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
130
+ #
131
+ # @return [::Google::Apps::Meet::V2beta::Participant]
132
+ # A result object deserialized from the server's reply
133
+ def get_participant request_pb, options = nil
134
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
135
+
136
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_participant_request request_pb
137
+ query_string_params = if query_string_params.any?
138
+ query_string_params.to_h { |p| p.split "=", 2 }
139
+ else
140
+ {}
141
+ end
142
+
143
+ response = @client_stub.make_http_request(
144
+ verb,
145
+ uri: uri,
146
+ body: body || "",
147
+ params: query_string_params,
148
+ options: options
149
+ )
150
+ operation = ::Gapic::Rest::TransportOperation.new response
151
+ result = ::Google::Apps::Meet::V2beta::Participant.decode_json response.body, ignore_unknown_fields: true
152
+
153
+ yield result, operation if block_given?
154
+ result
155
+ end
156
+
157
+ ##
158
+ # Baseline implementation for the list_participants REST call
159
+ #
160
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListParticipantsRequest]
161
+ # A request object representing the call parameters. Required.
162
+ # @param options [::Gapic::CallOptions]
163
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
164
+ #
165
+ # @yield [result, operation] Access the result along with the TransportOperation object
166
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListParticipantsResponse]
167
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
168
+ #
169
+ # @return [::Google::Apps::Meet::V2beta::ListParticipantsResponse]
170
+ # A result object deserialized from the server's reply
171
+ def list_participants request_pb, options = nil
172
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
173
+
174
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_participants_request request_pb
175
+ query_string_params = if query_string_params.any?
176
+ query_string_params.to_h { |p| p.split "=", 2 }
177
+ else
178
+ {}
179
+ end
180
+
181
+ response = @client_stub.make_http_request(
182
+ verb,
183
+ uri: uri,
184
+ body: body || "",
185
+ params: query_string_params,
186
+ options: options
187
+ )
188
+ operation = ::Gapic::Rest::TransportOperation.new response
189
+ result = ::Google::Apps::Meet::V2beta::ListParticipantsResponse.decode_json response.body, ignore_unknown_fields: true
190
+
191
+ yield result, operation if block_given?
192
+ result
193
+ end
194
+
195
+ ##
196
+ # Baseline implementation for the get_participant_session REST call
197
+ #
198
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetParticipantSessionRequest]
199
+ # A request object representing the call parameters. Required.
200
+ # @param options [::Gapic::CallOptions]
201
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
202
+ #
203
+ # @yield [result, operation] Access the result along with the TransportOperation object
204
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ParticipantSession]
205
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
206
+ #
207
+ # @return [::Google::Apps::Meet::V2beta::ParticipantSession]
208
+ # A result object deserialized from the server's reply
209
+ def get_participant_session request_pb, options = nil
210
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
211
+
212
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_participant_session_request request_pb
213
+ query_string_params = if query_string_params.any?
214
+ query_string_params.to_h { |p| p.split "=", 2 }
215
+ else
216
+ {}
217
+ end
218
+
219
+ response = @client_stub.make_http_request(
220
+ verb,
221
+ uri: uri,
222
+ body: body || "",
223
+ params: query_string_params,
224
+ options: options
225
+ )
226
+ operation = ::Gapic::Rest::TransportOperation.new response
227
+ result = ::Google::Apps::Meet::V2beta::ParticipantSession.decode_json response.body, ignore_unknown_fields: true
228
+
229
+ yield result, operation if block_given?
230
+ result
231
+ end
232
+
233
+ ##
234
+ # Baseline implementation for the list_participant_sessions REST call
235
+ #
236
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListParticipantSessionsRequest]
237
+ # A request object representing the call parameters. Required.
238
+ # @param options [::Gapic::CallOptions]
239
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
240
+ #
241
+ # @yield [result, operation] Access the result along with the TransportOperation object
242
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListParticipantSessionsResponse]
243
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
244
+ #
245
+ # @return [::Google::Apps::Meet::V2beta::ListParticipantSessionsResponse]
246
+ # A result object deserialized from the server's reply
247
+ def list_participant_sessions request_pb, options = nil
248
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
249
+
250
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_participant_sessions_request request_pb
251
+ query_string_params = if query_string_params.any?
252
+ query_string_params.to_h { |p| p.split "=", 2 }
253
+ else
254
+ {}
255
+ end
256
+
257
+ response = @client_stub.make_http_request(
258
+ verb,
259
+ uri: uri,
260
+ body: body || "",
261
+ params: query_string_params,
262
+ options: options
263
+ )
264
+ operation = ::Gapic::Rest::TransportOperation.new response
265
+ result = ::Google::Apps::Meet::V2beta::ListParticipantSessionsResponse.decode_json response.body, ignore_unknown_fields: true
266
+
267
+ yield result, operation if block_given?
268
+ result
269
+ end
270
+
271
+ ##
272
+ # Baseline implementation for the get_recording REST call
273
+ #
274
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetRecordingRequest]
275
+ # A request object representing the call parameters. Required.
276
+ # @param options [::Gapic::CallOptions]
277
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
278
+ #
279
+ # @yield [result, operation] Access the result along with the TransportOperation object
280
+ # @yieldparam result [::Google::Apps::Meet::V2beta::Recording]
281
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
282
+ #
283
+ # @return [::Google::Apps::Meet::V2beta::Recording]
284
+ # A result object deserialized from the server's reply
285
+ def get_recording request_pb, options = nil
286
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
287
+
288
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_recording_request request_pb
289
+ query_string_params = if query_string_params.any?
290
+ query_string_params.to_h { |p| p.split "=", 2 }
291
+ else
292
+ {}
293
+ end
294
+
295
+ response = @client_stub.make_http_request(
296
+ verb,
297
+ uri: uri,
298
+ body: body || "",
299
+ params: query_string_params,
300
+ options: options
301
+ )
302
+ operation = ::Gapic::Rest::TransportOperation.new response
303
+ result = ::Google::Apps::Meet::V2beta::Recording.decode_json response.body, ignore_unknown_fields: true
304
+
305
+ yield result, operation if block_given?
306
+ result
307
+ end
308
+
309
+ ##
310
+ # Baseline implementation for the list_recordings REST call
311
+ #
312
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListRecordingsRequest]
313
+ # A request object representing the call parameters. Required.
314
+ # @param options [::Gapic::CallOptions]
315
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
316
+ #
317
+ # @yield [result, operation] Access the result along with the TransportOperation object
318
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListRecordingsResponse]
319
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
320
+ #
321
+ # @return [::Google::Apps::Meet::V2beta::ListRecordingsResponse]
322
+ # A result object deserialized from the server's reply
323
+ def list_recordings request_pb, options = nil
324
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
325
+
326
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_recordings_request request_pb
327
+ query_string_params = if query_string_params.any?
328
+ query_string_params.to_h { |p| p.split "=", 2 }
329
+ else
330
+ {}
331
+ end
332
+
333
+ response = @client_stub.make_http_request(
334
+ verb,
335
+ uri: uri,
336
+ body: body || "",
337
+ params: query_string_params,
338
+ options: options
339
+ )
340
+ operation = ::Gapic::Rest::TransportOperation.new response
341
+ result = ::Google::Apps::Meet::V2beta::ListRecordingsResponse.decode_json response.body, ignore_unknown_fields: true
342
+
343
+ yield result, operation if block_given?
344
+ result
345
+ end
346
+
347
+ ##
348
+ # Baseline implementation for the get_transcript REST call
349
+ #
350
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetTranscriptRequest]
351
+ # A request object representing the call parameters. Required.
352
+ # @param options [::Gapic::CallOptions]
353
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
354
+ #
355
+ # @yield [result, operation] Access the result along with the TransportOperation object
356
+ # @yieldparam result [::Google::Apps::Meet::V2beta::Transcript]
357
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
358
+ #
359
+ # @return [::Google::Apps::Meet::V2beta::Transcript]
360
+ # A result object deserialized from the server's reply
361
+ def get_transcript request_pb, options = nil
362
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
363
+
364
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_transcript_request request_pb
365
+ query_string_params = if query_string_params.any?
366
+ query_string_params.to_h { |p| p.split "=", 2 }
367
+ else
368
+ {}
369
+ end
370
+
371
+ response = @client_stub.make_http_request(
372
+ verb,
373
+ uri: uri,
374
+ body: body || "",
375
+ params: query_string_params,
376
+ options: options
377
+ )
378
+ operation = ::Gapic::Rest::TransportOperation.new response
379
+ result = ::Google::Apps::Meet::V2beta::Transcript.decode_json response.body, ignore_unknown_fields: true
380
+
381
+ yield result, operation if block_given?
382
+ result
383
+ end
384
+
385
+ ##
386
+ # Baseline implementation for the list_transcripts REST call
387
+ #
388
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListTranscriptsRequest]
389
+ # A request object representing the call parameters. Required.
390
+ # @param options [::Gapic::CallOptions]
391
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
392
+ #
393
+ # @yield [result, operation] Access the result along with the TransportOperation object
394
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListTranscriptsResponse]
395
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
396
+ #
397
+ # @return [::Google::Apps::Meet::V2beta::ListTranscriptsResponse]
398
+ # A result object deserialized from the server's reply
399
+ def list_transcripts request_pb, options = nil
400
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
401
+
402
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_transcripts_request request_pb
403
+ query_string_params = if query_string_params.any?
404
+ query_string_params.to_h { |p| p.split "=", 2 }
405
+ else
406
+ {}
407
+ end
408
+
409
+ response = @client_stub.make_http_request(
410
+ verb,
411
+ uri: uri,
412
+ body: body || "",
413
+ params: query_string_params,
414
+ options: options
415
+ )
416
+ operation = ::Gapic::Rest::TransportOperation.new response
417
+ result = ::Google::Apps::Meet::V2beta::ListTranscriptsResponse.decode_json response.body, ignore_unknown_fields: true
418
+
419
+ yield result, operation if block_given?
420
+ result
421
+ end
422
+
423
+ ##
424
+ # Baseline implementation for the get_transcript_entry REST call
425
+ #
426
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetTranscriptEntryRequest]
427
+ # A request object representing the call parameters. Required.
428
+ # @param options [::Gapic::CallOptions]
429
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
430
+ #
431
+ # @yield [result, operation] Access the result along with the TransportOperation object
432
+ # @yieldparam result [::Google::Apps::Meet::V2beta::TranscriptEntry]
433
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
434
+ #
435
+ # @return [::Google::Apps::Meet::V2beta::TranscriptEntry]
436
+ # A result object deserialized from the server's reply
437
+ def get_transcript_entry request_pb, options = nil
438
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
439
+
440
+ verb, uri, query_string_params, body = ServiceStub.transcode_get_transcript_entry_request request_pb
441
+ query_string_params = if query_string_params.any?
442
+ query_string_params.to_h { |p| p.split "=", 2 }
443
+ else
444
+ {}
445
+ end
446
+
447
+ response = @client_stub.make_http_request(
448
+ verb,
449
+ uri: uri,
450
+ body: body || "",
451
+ params: query_string_params,
452
+ options: options
453
+ )
454
+ operation = ::Gapic::Rest::TransportOperation.new response
455
+ result = ::Google::Apps::Meet::V2beta::TranscriptEntry.decode_json response.body, ignore_unknown_fields: true
456
+
457
+ yield result, operation if block_given?
458
+ result
459
+ end
460
+
461
+ ##
462
+ # Baseline implementation for the list_transcript_entries REST call
463
+ #
464
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListTranscriptEntriesRequest]
465
+ # A request object representing the call parameters. Required.
466
+ # @param options [::Gapic::CallOptions]
467
+ # Overrides the default settings for this call, e.g, timeout, retries etc. Optional.
468
+ #
469
+ # @yield [result, operation] Access the result along with the TransportOperation object
470
+ # @yieldparam result [::Google::Apps::Meet::V2beta::ListTranscriptEntriesResponse]
471
+ # @yieldparam operation [::Gapic::Rest::TransportOperation]
472
+ #
473
+ # @return [::Google::Apps::Meet::V2beta::ListTranscriptEntriesResponse]
474
+ # A result object deserialized from the server's reply
475
+ def list_transcript_entries request_pb, options = nil
476
+ raise ::ArgumentError, "request must be provided" if request_pb.nil?
477
+
478
+ verb, uri, query_string_params, body = ServiceStub.transcode_list_transcript_entries_request request_pb
479
+ query_string_params = if query_string_params.any?
480
+ query_string_params.to_h { |p| p.split "=", 2 }
481
+ else
482
+ {}
483
+ end
484
+
485
+ response = @client_stub.make_http_request(
486
+ verb,
487
+ uri: uri,
488
+ body: body || "",
489
+ params: query_string_params,
490
+ options: options
491
+ )
492
+ operation = ::Gapic::Rest::TransportOperation.new response
493
+ result = ::Google::Apps::Meet::V2beta::ListTranscriptEntriesResponse.decode_json response.body, ignore_unknown_fields: true
494
+
495
+ yield result, operation if block_given?
496
+ result
497
+ end
498
+
499
+ ##
500
+ # @private
501
+ #
502
+ # GRPC transcoding helper method for the get_conference_record REST call
503
+ #
504
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetConferenceRecordRequest]
505
+ # A request object representing the call parameters. Required.
506
+ # @return [Array(String, [String, nil], Hash{String => String})]
507
+ # Uri, Body, Query string parameters
508
+ def self.transcode_get_conference_record_request request_pb
509
+ transcoder = Gapic::Rest::GrpcTranscoder.new
510
+ .with_bindings(
511
+ uri_method: :get,
512
+ uri_template: "/v2beta/{name}",
513
+ matches: [
514
+ ["name", %r{^conferenceRecords/[^/]+/?$}, false]
515
+ ]
516
+ )
517
+ transcoder.transcode request_pb
518
+ end
519
+
520
+ ##
521
+ # @private
522
+ #
523
+ # GRPC transcoding helper method for the list_conference_records REST call
524
+ #
525
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListConferenceRecordsRequest]
526
+ # A request object representing the call parameters. Required.
527
+ # @return [Array(String, [String, nil], Hash{String => String})]
528
+ # Uri, Body, Query string parameters
529
+ def self.transcode_list_conference_records_request request_pb
530
+ transcoder = Gapic::Rest::GrpcTranscoder.new
531
+ .with_bindings(
532
+ uri_method: :get,
533
+ uri_template: "/v2beta/conferenceRecords",
534
+ matches: []
535
+ )
536
+ transcoder.transcode request_pb
537
+ end
538
+
539
+ ##
540
+ # @private
541
+ #
542
+ # GRPC transcoding helper method for the get_participant REST call
543
+ #
544
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetParticipantRequest]
545
+ # A request object representing the call parameters. Required.
546
+ # @return [Array(String, [String, nil], Hash{String => String})]
547
+ # Uri, Body, Query string parameters
548
+ def self.transcode_get_participant_request request_pb
549
+ transcoder = Gapic::Rest::GrpcTranscoder.new
550
+ .with_bindings(
551
+ uri_method: :get,
552
+ uri_template: "/v2beta/{name}",
553
+ matches: [
554
+ ["name", %r{^conferenceRecords/[^/]+/participants/[^/]+/?$}, false]
555
+ ]
556
+ )
557
+ transcoder.transcode request_pb
558
+ end
559
+
560
+ ##
561
+ # @private
562
+ #
563
+ # GRPC transcoding helper method for the list_participants REST call
564
+ #
565
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListParticipantsRequest]
566
+ # A request object representing the call parameters. Required.
567
+ # @return [Array(String, [String, nil], Hash{String => String})]
568
+ # Uri, Body, Query string parameters
569
+ def self.transcode_list_participants_request request_pb
570
+ transcoder = Gapic::Rest::GrpcTranscoder.new
571
+ .with_bindings(
572
+ uri_method: :get,
573
+ uri_template: "/v2beta/{parent}/participants",
574
+ matches: [
575
+ ["parent", %r{^conferenceRecords/[^/]+/?$}, false]
576
+ ]
577
+ )
578
+ transcoder.transcode request_pb
579
+ end
580
+
581
+ ##
582
+ # @private
583
+ #
584
+ # GRPC transcoding helper method for the get_participant_session REST call
585
+ #
586
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetParticipantSessionRequest]
587
+ # A request object representing the call parameters. Required.
588
+ # @return [Array(String, [String, nil], Hash{String => String})]
589
+ # Uri, Body, Query string parameters
590
+ def self.transcode_get_participant_session_request request_pb
591
+ transcoder = Gapic::Rest::GrpcTranscoder.new
592
+ .with_bindings(
593
+ uri_method: :get,
594
+ uri_template: "/v2beta/{name}",
595
+ matches: [
596
+ ["name", %r{^conferenceRecords/[^/]+/participants/[^/]+/participantSessions/[^/]+/?$}, false]
597
+ ]
598
+ )
599
+ transcoder.transcode request_pb
600
+ end
601
+
602
+ ##
603
+ # @private
604
+ #
605
+ # GRPC transcoding helper method for the list_participant_sessions REST call
606
+ #
607
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListParticipantSessionsRequest]
608
+ # A request object representing the call parameters. Required.
609
+ # @return [Array(String, [String, nil], Hash{String => String})]
610
+ # Uri, Body, Query string parameters
611
+ def self.transcode_list_participant_sessions_request request_pb
612
+ transcoder = Gapic::Rest::GrpcTranscoder.new
613
+ .with_bindings(
614
+ uri_method: :get,
615
+ uri_template: "/v2beta/{parent}/participantSessions",
616
+ matches: [
617
+ ["parent", %r{^conferenceRecords/[^/]+/participants/[^/]+/?$}, false]
618
+ ]
619
+ )
620
+ transcoder.transcode request_pb
621
+ end
622
+
623
+ ##
624
+ # @private
625
+ #
626
+ # GRPC transcoding helper method for the get_recording REST call
627
+ #
628
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetRecordingRequest]
629
+ # A request object representing the call parameters. Required.
630
+ # @return [Array(String, [String, nil], Hash{String => String})]
631
+ # Uri, Body, Query string parameters
632
+ def self.transcode_get_recording_request request_pb
633
+ transcoder = Gapic::Rest::GrpcTranscoder.new
634
+ .with_bindings(
635
+ uri_method: :get,
636
+ uri_template: "/v2beta/{name}",
637
+ matches: [
638
+ ["name", %r{^conferenceRecords/[^/]+/recordings/[^/]+/?$}, false]
639
+ ]
640
+ )
641
+ transcoder.transcode request_pb
642
+ end
643
+
644
+ ##
645
+ # @private
646
+ #
647
+ # GRPC transcoding helper method for the list_recordings REST call
648
+ #
649
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListRecordingsRequest]
650
+ # A request object representing the call parameters. Required.
651
+ # @return [Array(String, [String, nil], Hash{String => String})]
652
+ # Uri, Body, Query string parameters
653
+ def self.transcode_list_recordings_request request_pb
654
+ transcoder = Gapic::Rest::GrpcTranscoder.new
655
+ .with_bindings(
656
+ uri_method: :get,
657
+ uri_template: "/v2beta/{parent}/recordings",
658
+ matches: [
659
+ ["parent", %r{^conferenceRecords/[^/]+/?$}, false]
660
+ ]
661
+ )
662
+ transcoder.transcode request_pb
663
+ end
664
+
665
+ ##
666
+ # @private
667
+ #
668
+ # GRPC transcoding helper method for the get_transcript REST call
669
+ #
670
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetTranscriptRequest]
671
+ # A request object representing the call parameters. Required.
672
+ # @return [Array(String, [String, nil], Hash{String => String})]
673
+ # Uri, Body, Query string parameters
674
+ def self.transcode_get_transcript_request request_pb
675
+ transcoder = Gapic::Rest::GrpcTranscoder.new
676
+ .with_bindings(
677
+ uri_method: :get,
678
+ uri_template: "/v2beta/{name}",
679
+ matches: [
680
+ ["name", %r{^conferenceRecords/[^/]+/transcripts/[^/]+/?$}, false]
681
+ ]
682
+ )
683
+ transcoder.transcode request_pb
684
+ end
685
+
686
+ ##
687
+ # @private
688
+ #
689
+ # GRPC transcoding helper method for the list_transcripts REST call
690
+ #
691
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListTranscriptsRequest]
692
+ # A request object representing the call parameters. Required.
693
+ # @return [Array(String, [String, nil], Hash{String => String})]
694
+ # Uri, Body, Query string parameters
695
+ def self.transcode_list_transcripts_request request_pb
696
+ transcoder = Gapic::Rest::GrpcTranscoder.new
697
+ .with_bindings(
698
+ uri_method: :get,
699
+ uri_template: "/v2beta/{parent}/transcripts",
700
+ matches: [
701
+ ["parent", %r{^conferenceRecords/[^/]+/?$}, false]
702
+ ]
703
+ )
704
+ transcoder.transcode request_pb
705
+ end
706
+
707
+ ##
708
+ # @private
709
+ #
710
+ # GRPC transcoding helper method for the get_transcript_entry REST call
711
+ #
712
+ # @param request_pb [::Google::Apps::Meet::V2beta::GetTranscriptEntryRequest]
713
+ # A request object representing the call parameters. Required.
714
+ # @return [Array(String, [String, nil], Hash{String => String})]
715
+ # Uri, Body, Query string parameters
716
+ def self.transcode_get_transcript_entry_request request_pb
717
+ transcoder = Gapic::Rest::GrpcTranscoder.new
718
+ .with_bindings(
719
+ uri_method: :get,
720
+ uri_template: "/v2beta/{name}",
721
+ matches: [
722
+ ["name", %r{^conferenceRecords/[^/]+/transcripts/[^/]+/entries/[^/]+/?$}, false]
723
+ ]
724
+ )
725
+ transcoder.transcode request_pb
726
+ end
727
+
728
+ ##
729
+ # @private
730
+ #
731
+ # GRPC transcoding helper method for the list_transcript_entries REST call
732
+ #
733
+ # @param request_pb [::Google::Apps::Meet::V2beta::ListTranscriptEntriesRequest]
734
+ # A request object representing the call parameters. Required.
735
+ # @return [Array(String, [String, nil], Hash{String => String})]
736
+ # Uri, Body, Query string parameters
737
+ def self.transcode_list_transcript_entries_request request_pb
738
+ transcoder = Gapic::Rest::GrpcTranscoder.new
739
+ .with_bindings(
740
+ uri_method: :get,
741
+ uri_template: "/v2beta/{parent}/entries",
742
+ matches: [
743
+ ["parent", %r{^conferenceRecords/[^/]+/transcripts/[^/]+/?$}, false]
744
+ ]
745
+ )
746
+ transcoder.transcode request_pb
747
+ end
748
+ end
749
+ end
750
+ end
751
+ end
752
+ end
753
+ end
754
+ end