google-apps-meet-v2beta 0.3.2 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -210,14 +210,33 @@ module Google
210
210
  endpoint: @config.endpoint,
211
211
  endpoint_template: DEFAULT_ENDPOINT_TEMPLATE,
212
212
  universe_domain: @config.universe_domain,
213
- credentials: credentials
213
+ credentials: credentials,
214
+ logger: @config.logger
214
215
  )
216
+
217
+ @conference_records_service_stub.logger(stub: true)&.info do |entry|
218
+ entry.set_system_name
219
+ entry.set_service
220
+ entry.message = "Created client for #{entry.service}"
221
+ entry.set_credentials_fields credentials
222
+ entry.set "customEndpoint", @config.endpoint if @config.endpoint
223
+ entry.set "defaultTimeout", @config.timeout if @config.timeout
224
+ entry.set "quotaProject", @quota_project_id if @quota_project_id
225
+ end
226
+ end
227
+
228
+ ##
229
+ # The logger used for request/response debug logging.
230
+ #
231
+ # @return [Logger]
232
+ #
233
+ def logger
234
+ @conference_records_service_stub.logger
215
235
  end
216
236
 
217
237
  # Service calls
218
238
 
219
239
  ##
220
- # [Developer Preview](https://developers.google.com/workspace/preview).
221
240
  # Gets a conference record by conference ID.
222
241
  #
223
242
  # @overload get_conference_record(request, options = nil)
@@ -290,15 +309,14 @@ module Google
290
309
 
291
310
  @conference_records_service_stub.get_conference_record request, options do |result, operation|
292
311
  yield result, operation if block_given?
293
- return result
294
312
  end
295
313
  rescue ::Gapic::Rest::Error => e
296
314
  raise ::Google::Cloud::Error.from_error(e)
297
315
  end
298
316
 
299
317
  ##
300
- # [Developer Preview](https://developers.google.com/workspace/preview).
301
- # Lists the conference records by start time and in descending order.
318
+ # Lists the conference records. By default, ordered by start time and in
319
+ # descending order.
302
320
  #
303
321
  # @overload list_conference_records(request, options = nil)
304
322
  # Pass arguments to `list_conference_records` via a request object, either of type
@@ -323,15 +341,22 @@ module Google
323
341
  # @param page_token [::String]
324
342
  # Optional. Page token returned from previous List Call.
325
343
  # @param filter [::String]
326
- # Optional. User specified filtering condition in EBNF format. The following
327
- # are the filterable fields:
344
+ # Optional. User specified filtering condition in [EBNF
345
+ # format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
346
+ # The following are the filterable fields:
328
347
  #
329
348
  # * `space.meeting_code`
330
349
  # * `space.name`
331
350
  # * `start_time`
332
351
  # * `end_time`
333
352
  #
334
- # For example, `space.meeting_code = "abc-mnop-xyz"`.
353
+ # For example, consider the following filters:
354
+ #
355
+ # * `space.name = "spaces/NAME"`
356
+ # * `space.meeting_code = "abc-mnop-xyz"`
357
+ # * `start_time>="2024-01-01T00:00:00.000Z" AND
358
+ # start_time<="2024-01-02T00:00:00.000Z"`
359
+ # * `end_time IS NULL`
335
360
  # @yield [result, operation] Access the result along with the TransportOperation object
336
361
  # @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>]
337
362
  # @yieldparam operation [::Gapic::Rest::TransportOperation]
@@ -390,14 +415,13 @@ module Google
390
415
  @conference_records_service_stub.list_conference_records request, options do |result, operation|
391
416
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_conference_records, "conference_records", request, result, options
392
417
  yield result, operation if block_given?
393
- return result
418
+ throw :response, result
394
419
  end
395
420
  rescue ::Gapic::Rest::Error => e
396
421
  raise ::Google::Cloud::Error.from_error(e)
397
422
  end
398
423
 
399
424
  ##
400
- # [Developer Preview](https://developers.google.com/workspace/preview).
401
425
  # Gets a participant by participant ID.
402
426
  #
403
427
  # @overload get_participant(request, options = nil)
@@ -470,15 +494,13 @@ module Google
470
494
 
471
495
  @conference_records_service_stub.get_participant request, options do |result, operation|
472
496
  yield result, operation if block_given?
473
- return result
474
497
  end
475
498
  rescue ::Gapic::Rest::Error => e
476
499
  raise ::Google::Cloud::Error.from_error(e)
477
500
  end
478
501
 
479
502
  ##
480
- # [Developer Preview](https://developers.google.com/workspace/preview).
481
- # Lists the participants in a conference record, by default ordered by join
503
+ # Lists the participants in a conference record. By default, ordered by join
482
504
  # time and in descending order. This API supports `fields` as standard
483
505
  # parameters like every other API. However, when the `fields` request
484
506
  # parameter is omitted, this API defaults to `'participants/*,
@@ -510,8 +532,9 @@ module Google
510
532
  # @param page_token [::String]
511
533
  # Page token returned from previous List Call.
512
534
  # @param filter [::String]
513
- # Optional. User specified filtering condition in EBNF format. The following
514
- # are the filterable fields:
535
+ # Optional. User specified filtering condition in [EBNF
536
+ # format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
537
+ # The following are the filterable fields:
515
538
  #
516
539
  # * `earliest_start_time`
517
540
  # * `latest_end_time`
@@ -576,14 +599,13 @@ module Google
576
599
  @conference_records_service_stub.list_participants request, options do |result, operation|
577
600
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_participants, "participants", request, result, options
578
601
  yield result, operation if block_given?
579
- return result
602
+ throw :response, result
580
603
  end
581
604
  rescue ::Gapic::Rest::Error => e
582
605
  raise ::Google::Cloud::Error.from_error(e)
583
606
  end
584
607
 
585
608
  ##
586
- # [Developer Preview](https://developers.google.com/workspace/preview).
587
609
  # Gets a participant session by participant session ID.
588
610
  #
589
611
  # @overload get_participant_session(request, options = nil)
@@ -656,16 +678,14 @@ module Google
656
678
 
657
679
  @conference_records_service_stub.get_participant_session request, options do |result, operation|
658
680
  yield result, operation if block_given?
659
- return result
660
681
  end
661
682
  rescue ::Gapic::Rest::Error => e
662
683
  raise ::Google::Cloud::Error.from_error(e)
663
684
  end
664
685
 
665
686
  ##
666
- # [Developer Preview](https://developers.google.com/workspace/preview).
667
- # Lists the participant sessions of a participant in a conference record, by
668
- # default ordered by join time and in descending order. This API supports
687
+ # Lists the participant sessions of a participant in a conference record. By
688
+ # default, ordered by join time and in descending order. This API supports
669
689
  # `fields` as standard parameters like every other API. However, when the
670
690
  # `fields` request parameter is omitted this API defaults to
671
691
  # `'participantsessions/*, next_page_token'`.
@@ -696,8 +716,9 @@ module Google
696
716
  # @param page_token [::String]
697
717
  # Optional. Page token returned from previous List Call.
698
718
  # @param filter [::String]
699
- # Optional. User specified filtering condition in EBNF format. The following
700
- # are the filterable fields:
719
+ # Optional. User specified filtering condition in [EBNF
720
+ # format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
721
+ # The following are the filterable fields:
701
722
  #
702
723
  # * `start_time`
703
724
  # * `end_time`
@@ -762,14 +783,13 @@ module Google
762
783
  @conference_records_service_stub.list_participant_sessions request, options do |result, operation|
763
784
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_participant_sessions, "participant_sessions", request, result, options
764
785
  yield result, operation if block_given?
765
- return result
786
+ throw :response, result
766
787
  end
767
788
  rescue ::Gapic::Rest::Error => e
768
789
  raise ::Google::Cloud::Error.from_error(e)
769
790
  end
770
791
 
771
792
  ##
772
- # [Developer Preview](https://developers.google.com/workspace/preview).
773
793
  # Gets a recording by recording ID.
774
794
  #
775
795
  # @overload get_recording(request, options = nil)
@@ -842,15 +862,14 @@ module Google
842
862
 
843
863
  @conference_records_service_stub.get_recording request, options do |result, operation|
844
864
  yield result, operation if block_given?
845
- return result
846
865
  end
847
866
  rescue ::Gapic::Rest::Error => e
848
867
  raise ::Google::Cloud::Error.from_error(e)
849
868
  end
850
869
 
851
870
  ##
852
- # [Developer Preview](https://developers.google.com/workspace/preview).
853
- # Lists the recording resources from the conference record.
871
+ # Lists the recording resources from the conference record. By default,
872
+ # ordered by start time and in ascending order.
854
873
  #
855
874
  # @overload list_recordings(request, options = nil)
856
875
  # Pass arguments to `list_recordings` via a request object, either of type
@@ -935,14 +954,13 @@ module Google
935
954
  @conference_records_service_stub.list_recordings request, options do |result, operation|
936
955
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_recordings, "recordings", request, result, options
937
956
  yield result, operation if block_given?
938
- return result
957
+ throw :response, result
939
958
  end
940
959
  rescue ::Gapic::Rest::Error => e
941
960
  raise ::Google::Cloud::Error.from_error(e)
942
961
  end
943
962
 
944
963
  ##
945
- # [Developer Preview](https://developers.google.com/workspace/preview).
946
964
  # Gets a transcript by transcript ID.
947
965
  #
948
966
  # @overload get_transcript(request, options = nil)
@@ -1015,15 +1033,14 @@ module Google
1015
1033
 
1016
1034
  @conference_records_service_stub.get_transcript request, options do |result, operation|
1017
1035
  yield result, operation if block_given?
1018
- return result
1019
1036
  end
1020
1037
  rescue ::Gapic::Rest::Error => e
1021
1038
  raise ::Google::Cloud::Error.from_error(e)
1022
1039
  end
1023
1040
 
1024
1041
  ##
1025
- # [Developer Preview](https://developers.google.com/workspace/preview).
1026
- # Lists the set of transcripts from the conference record.
1042
+ # Lists the set of transcripts from the conference record. By default,
1043
+ # ordered by start time and in ascending order.
1027
1044
  #
1028
1045
  # @overload list_transcripts(request, options = nil)
1029
1046
  # Pass arguments to `list_transcripts` via a request object, either of type
@@ -1108,14 +1125,13 @@ module Google
1108
1125
  @conference_records_service_stub.list_transcripts request, options do |result, operation|
1109
1126
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_transcripts, "transcripts", request, result, options
1110
1127
  yield result, operation if block_given?
1111
- return result
1128
+ throw :response, result
1112
1129
  end
1113
1130
  rescue ::Gapic::Rest::Error => e
1114
1131
  raise ::Google::Cloud::Error.from_error(e)
1115
1132
  end
1116
1133
 
1117
1134
  ##
1118
- # [Developer Preview](https://developers.google.com/workspace/preview).
1119
1135
  # Gets a `TranscriptEntry` resource by entry ID.
1120
1136
  #
1121
1137
  # Note: The transcript entries returned by the Google Meet API might not
@@ -1192,14 +1208,12 @@ module Google
1192
1208
 
1193
1209
  @conference_records_service_stub.get_transcript_entry request, options do |result, operation|
1194
1210
  yield result, operation if block_given?
1195
- return result
1196
1211
  end
1197
1212
  rescue ::Gapic::Rest::Error => e
1198
1213
  raise ::Google::Cloud::Error.from_error(e)
1199
1214
  end
1200
1215
 
1201
1216
  ##
1202
- # [Developer Preview](https://developers.google.com/workspace/preview).
1203
1217
  # Lists the structured transcript entries per transcript. By default, ordered
1204
1218
  # by start time and in ascending order.
1205
1219
  #
@@ -1291,7 +1305,7 @@ module Google
1291
1305
  @conference_records_service_stub.list_transcript_entries request, options do |result, operation|
1292
1306
  result = ::Gapic::Rest::PagedEnumerable.new @conference_records_service_stub, :list_transcript_entries, "transcript_entries", request, result, options
1293
1307
  yield result, operation if block_given?
1294
- return result
1308
+ throw :response, result
1295
1309
  end
1296
1310
  rescue ::Gapic::Rest::Error => e
1297
1311
  raise ::Google::Cloud::Error.from_error(e)
@@ -1339,6 +1353,13 @@ module Google
1339
1353
  # * (`Signet::OAuth2::Client`) A signet oauth2 client object
1340
1354
  # (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
1341
1355
  # * (`nil`) indicating no credentials
1356
+ #
1357
+ # Warning: If you accept a credential configuration (JSON file or Hash) from an
1358
+ # external source for authentication to Google Cloud, you must validate it before
1359
+ # providing it to a Google API client library. Providing an unvalidated credential
1360
+ # configuration to Google APIs can compromise the security of your systems and data.
1361
+ # For more information, refer to [Validate credential configurations from external
1362
+ # sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
1342
1363
  # @return [::Object]
1343
1364
  # @!attribute [rw] scope
1344
1365
  # The OAuth scopes
@@ -1371,6 +1392,11 @@ module Google
1371
1392
  # default endpoint URL. The default value of nil uses the environment
1372
1393
  # universe (usually the default "googleapis.com" universe).
1373
1394
  # @return [::String,nil]
1395
+ # @!attribute [rw] logger
1396
+ # A custom logger to use for request/response debug logging, or the value
1397
+ # `:default` (the default) to construct a default logger, or `nil` to
1398
+ # explicitly disable logging.
1399
+ # @return [::Logger,:default,nil]
1374
1400
  #
1375
1401
  class Configuration
1376
1402
  extend ::Gapic::Config
@@ -1392,6 +1418,7 @@ module Google
1392
1418
  config_attr :retry_policy, nil, ::Hash, ::Proc, nil
1393
1419
  config_attr :quota_project, nil, ::String, nil
1394
1420
  config_attr :universe_domain, nil, ::String, nil
1421
+ config_attr :logger, :default, ::Logger, nil, :default
1395
1422
 
1396
1423
  # @private
1397
1424
  def initialize parent_config = nil
@@ -30,7 +30,8 @@ module Google
30
30
  # including transcoding, making the REST call, and deserialing the response.
31
31
  #
32
32
  class ServiceStub
33
- def initialize endpoint:, endpoint_template:, universe_domain:, credentials:
33
+ # @private
34
+ def initialize endpoint:, endpoint_template:, universe_domain:, credentials:, logger:
34
35
  # These require statements are intentionally placed here to initialize
35
36
  # the REST modules only when it's required.
36
37
  require "gapic/rest"
@@ -40,7 +41,9 @@ module Google
40
41
  universe_domain: universe_domain,
41
42
  credentials: credentials,
42
43
  numeric_enums: true,
43
- raise_faraday_errors: false
44
+ service_name: self.class,
45
+ raise_faraday_errors: false,
46
+ logger: logger
44
47
  end
45
48
 
46
49
  ##
@@ -61,6 +64,15 @@ module Google
61
64
  @client_stub.endpoint
62
65
  end
63
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
+
64
76
  ##
65
77
  # Baseline implementation for the get_conference_record REST call
66
78
  #
@@ -87,16 +99,18 @@ module Google
87
99
 
88
100
  response = @client_stub.make_http_request(
89
101
  verb,
90
- uri: uri,
91
- body: body || "",
92
- params: query_string_params,
102
+ uri: uri,
103
+ body: body || "",
104
+ params: query_string_params,
105
+ method_name: "get_conference_record",
93
106
  options: options
94
107
  )
95
108
  operation = ::Gapic::Rest::TransportOperation.new response
96
109
  result = ::Google::Apps::Meet::V2beta::ConferenceRecord.decode_json response.body, ignore_unknown_fields: true
97
-
98
- yield result, operation if block_given?
99
- result
110
+ catch :response do
111
+ yield result, operation if block_given?
112
+ result
113
+ end
100
114
  end
101
115
 
102
116
  ##
@@ -125,16 +139,18 @@ module Google
125
139
 
126
140
  response = @client_stub.make_http_request(
127
141
  verb,
128
- uri: uri,
129
- body: body || "",
130
- params: query_string_params,
142
+ uri: uri,
143
+ body: body || "",
144
+ params: query_string_params,
145
+ method_name: "list_conference_records",
131
146
  options: options
132
147
  )
133
148
  operation = ::Gapic::Rest::TransportOperation.new response
134
149
  result = ::Google::Apps::Meet::V2beta::ListConferenceRecordsResponse.decode_json response.body, ignore_unknown_fields: true
135
-
136
- yield result, operation if block_given?
137
- result
150
+ catch :response do
151
+ yield result, operation if block_given?
152
+ result
153
+ end
138
154
  end
139
155
 
140
156
  ##
@@ -163,16 +179,18 @@ module Google
163
179
 
164
180
  response = @client_stub.make_http_request(
165
181
  verb,
166
- uri: uri,
167
- body: body || "",
168
- params: query_string_params,
182
+ uri: uri,
183
+ body: body || "",
184
+ params: query_string_params,
185
+ method_name: "get_participant",
169
186
  options: options
170
187
  )
171
188
  operation = ::Gapic::Rest::TransportOperation.new response
172
189
  result = ::Google::Apps::Meet::V2beta::Participant.decode_json response.body, ignore_unknown_fields: true
173
-
174
- yield result, operation if block_given?
175
- result
190
+ catch :response do
191
+ yield result, operation if block_given?
192
+ result
193
+ end
176
194
  end
177
195
 
178
196
  ##
@@ -201,16 +219,18 @@ module Google
201
219
 
202
220
  response = @client_stub.make_http_request(
203
221
  verb,
204
- uri: uri,
205
- body: body || "",
206
- params: query_string_params,
222
+ uri: uri,
223
+ body: body || "",
224
+ params: query_string_params,
225
+ method_name: "list_participants",
207
226
  options: options
208
227
  )
209
228
  operation = ::Gapic::Rest::TransportOperation.new response
210
229
  result = ::Google::Apps::Meet::V2beta::ListParticipantsResponse.decode_json response.body, ignore_unknown_fields: true
211
-
212
- yield result, operation if block_given?
213
- result
230
+ catch :response do
231
+ yield result, operation if block_given?
232
+ result
233
+ end
214
234
  end
215
235
 
216
236
  ##
@@ -239,16 +259,18 @@ module Google
239
259
 
240
260
  response = @client_stub.make_http_request(
241
261
  verb,
242
- uri: uri,
243
- body: body || "",
244
- params: query_string_params,
262
+ uri: uri,
263
+ body: body || "",
264
+ params: query_string_params,
265
+ method_name: "get_participant_session",
245
266
  options: options
246
267
  )
247
268
  operation = ::Gapic::Rest::TransportOperation.new response
248
269
  result = ::Google::Apps::Meet::V2beta::ParticipantSession.decode_json response.body, ignore_unknown_fields: true
249
-
250
- yield result, operation if block_given?
251
- result
270
+ catch :response do
271
+ yield result, operation if block_given?
272
+ result
273
+ end
252
274
  end
253
275
 
254
276
  ##
@@ -277,16 +299,18 @@ module Google
277
299
 
278
300
  response = @client_stub.make_http_request(
279
301
  verb,
280
- uri: uri,
281
- body: body || "",
282
- params: query_string_params,
302
+ uri: uri,
303
+ body: body || "",
304
+ params: query_string_params,
305
+ method_name: "list_participant_sessions",
283
306
  options: options
284
307
  )
285
308
  operation = ::Gapic::Rest::TransportOperation.new response
286
309
  result = ::Google::Apps::Meet::V2beta::ListParticipantSessionsResponse.decode_json response.body, ignore_unknown_fields: true
287
-
288
- yield result, operation if block_given?
289
- result
310
+ catch :response do
311
+ yield result, operation if block_given?
312
+ result
313
+ end
290
314
  end
291
315
 
292
316
  ##
@@ -315,16 +339,18 @@ module Google
315
339
 
316
340
  response = @client_stub.make_http_request(
317
341
  verb,
318
- uri: uri,
319
- body: body || "",
320
- params: query_string_params,
342
+ uri: uri,
343
+ body: body || "",
344
+ params: query_string_params,
345
+ method_name: "get_recording",
321
346
  options: options
322
347
  )
323
348
  operation = ::Gapic::Rest::TransportOperation.new response
324
349
  result = ::Google::Apps::Meet::V2beta::Recording.decode_json response.body, ignore_unknown_fields: true
325
-
326
- yield result, operation if block_given?
327
- result
350
+ catch :response do
351
+ yield result, operation if block_given?
352
+ result
353
+ end
328
354
  end
329
355
 
330
356
  ##
@@ -353,16 +379,18 @@ module Google
353
379
 
354
380
  response = @client_stub.make_http_request(
355
381
  verb,
356
- uri: uri,
357
- body: body || "",
358
- params: query_string_params,
382
+ uri: uri,
383
+ body: body || "",
384
+ params: query_string_params,
385
+ method_name: "list_recordings",
359
386
  options: options
360
387
  )
361
388
  operation = ::Gapic::Rest::TransportOperation.new response
362
389
  result = ::Google::Apps::Meet::V2beta::ListRecordingsResponse.decode_json response.body, ignore_unknown_fields: true
363
-
364
- yield result, operation if block_given?
365
- result
390
+ catch :response do
391
+ yield result, operation if block_given?
392
+ result
393
+ end
366
394
  end
367
395
 
368
396
  ##
@@ -391,16 +419,18 @@ module Google
391
419
 
392
420
  response = @client_stub.make_http_request(
393
421
  verb,
394
- uri: uri,
395
- body: body || "",
396
- params: query_string_params,
422
+ uri: uri,
423
+ body: body || "",
424
+ params: query_string_params,
425
+ method_name: "get_transcript",
397
426
  options: options
398
427
  )
399
428
  operation = ::Gapic::Rest::TransportOperation.new response
400
429
  result = ::Google::Apps::Meet::V2beta::Transcript.decode_json response.body, ignore_unknown_fields: true
401
-
402
- yield result, operation if block_given?
403
- result
430
+ catch :response do
431
+ yield result, operation if block_given?
432
+ result
433
+ end
404
434
  end
405
435
 
406
436
  ##
@@ -429,16 +459,18 @@ module Google
429
459
 
430
460
  response = @client_stub.make_http_request(
431
461
  verb,
432
- uri: uri,
433
- body: body || "",
434
- params: query_string_params,
462
+ uri: uri,
463
+ body: body || "",
464
+ params: query_string_params,
465
+ method_name: "list_transcripts",
435
466
  options: options
436
467
  )
437
468
  operation = ::Gapic::Rest::TransportOperation.new response
438
469
  result = ::Google::Apps::Meet::V2beta::ListTranscriptsResponse.decode_json response.body, ignore_unknown_fields: true
439
-
440
- yield result, operation if block_given?
441
- result
470
+ catch :response do
471
+ yield result, operation if block_given?
472
+ result
473
+ end
442
474
  end
443
475
 
444
476
  ##
@@ -467,16 +499,18 @@ module Google
467
499
 
468
500
  response = @client_stub.make_http_request(
469
501
  verb,
470
- uri: uri,
471
- body: body || "",
472
- params: query_string_params,
502
+ uri: uri,
503
+ body: body || "",
504
+ params: query_string_params,
505
+ method_name: "get_transcript_entry",
473
506
  options: options
474
507
  )
475
508
  operation = ::Gapic::Rest::TransportOperation.new response
476
509
  result = ::Google::Apps::Meet::V2beta::TranscriptEntry.decode_json response.body, ignore_unknown_fields: true
477
-
478
- yield result, operation if block_given?
479
- result
510
+ catch :response do
511
+ yield result, operation if block_given?
512
+ result
513
+ end
480
514
  end
481
515
 
482
516
  ##
@@ -505,16 +539,18 @@ module Google
505
539
 
506
540
  response = @client_stub.make_http_request(
507
541
  verb,
508
- uri: uri,
509
- body: body || "",
510
- params: query_string_params,
542
+ uri: uri,
543
+ body: body || "",
544
+ params: query_string_params,
545
+ method_name: "list_transcript_entries",
511
546
  options: options
512
547
  )
513
548
  operation = ::Gapic::Rest::TransportOperation.new response
514
549
  result = ::Google::Apps::Meet::V2beta::ListTranscriptEntriesResponse.decode_json response.body, ignore_unknown_fields: true
515
-
516
- yield result, operation if block_given?
517
- result
550
+ catch :response do
551
+ yield result, operation if block_given?
552
+ result
553
+ end
518
554
  end
519
555
 
520
556
  ##