google-apps-meet-v2beta 0.2.2 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 40efa59ad8ebcab86df3c83deac7650b5d8caf28ee7b03d95d608691094051fa
4
- data.tar.gz: 352f2df6fd37452e6f00bf7739040f662d4975268581927115f4509315281c46
3
+ metadata.gz: '08500c600e74bbb02229ab65f10b1c441b5aac4426201932554dd2e775bae04f'
4
+ data.tar.gz: cf02e170088828357efd140e501bf7569b2b4c80e9daa658de9029fa43a63fd9
5
5
  SHA512:
6
- metadata.gz: e460191f25fcd4cbdf75387844013ce3a4c7627fe7569af9bc8fcabd6142730779b9c3abbe83dad56bd39397afa77b399449cb3d6b2ad6148502ccb6400cc708
7
- data.tar.gz: 953179ce170cf2fb21f70fd9d4550fc37f7c0f97759ade65078669f0deb0ff0a3ff8b5beae38b638f06650897650ba3ee4e52876670b6c42e4acaba200bae6ca
6
+ metadata.gz: 1134c7d64105835982479aa324744fc628e6a8d94d783c55004d444a7b93cdd737f4a80e5f8069284f2184970391b9e4aef5ce6dabd9c4e4627de45ec363d54b
7
+ data.tar.gz: bfa499aac026a50e8de97551c10ea81b6e3f94b530b87f1f21b76ed89a0a705294945b033fa7b10457a3c6c144f5907ceb5ce5d09d436f1ab9a5816ef472841c
data/README.md CHANGED
@@ -2,7 +2,6 @@
2
2
 
3
3
  Create and manage meetings in Google Meet.
4
4
 
5
- Create and manage meetings in Google Meet.
6
5
 
7
6
  https://github.com/googleapis/google-cloud-ruby
8
7
 
@@ -76,7 +75,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
76
75
 
77
76
  ## Supported Ruby Versions
78
77
 
79
- This library is supported on Ruby 2.6+.
78
+ This library is supported on Ruby 2.7+.
80
79
 
81
80
  Google provides official support for Ruby versions that are actively supported
82
81
  by Ruby Core—that is, Ruby versions that are either in normal maintenance or
@@ -30,6 +30,9 @@ module Google
30
30
  # REST API for services dealing with conference records.
31
31
  #
32
32
  class Client
33
+ # @private
34
+ API_VERSION = ""
35
+
33
36
  # @private
34
37
  DEFAULT_ENDPOINT_TEMPLATE = "meet.$UNIVERSE_DOMAIN$"
35
38
 
@@ -276,10 +279,11 @@ module Google
276
279
  # Customize the options with defaults
277
280
  metadata = @config.rpcs.get_conference_record.metadata.to_h
278
281
 
279
- # Set x-goog-api-client and x-goog-user-project headers
282
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
280
283
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
281
284
  lib_name: @config.lib_name, lib_version: @config.lib_version,
282
285
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
286
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
283
287
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
284
288
 
285
289
  header_params = {}
@@ -381,10 +385,11 @@ module Google
381
385
  # Customize the options with defaults
382
386
  metadata = @config.rpcs.list_conference_records.metadata.to_h
383
387
 
384
- # Set x-goog-api-client and x-goog-user-project headers
388
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
385
389
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
386
390
  lib_name: @config.lib_name, lib_version: @config.lib_version,
387
391
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
392
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
388
393
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
389
394
 
390
395
  options.apply_defaults timeout: @config.rpcs.list_conference_records.timeout,
@@ -460,10 +465,11 @@ module Google
460
465
  # Customize the options with defaults
461
466
  metadata = @config.rpcs.get_participant.metadata.to_h
462
467
 
463
- # Set x-goog-api-client and x-goog-user-project headers
468
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
464
469
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
465
470
  lib_name: @config.lib_name, lib_version: @config.lib_version,
466
471
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
472
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
467
473
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
468
474
 
469
475
  header_params = {}
@@ -571,10 +577,11 @@ module Google
571
577
  # Customize the options with defaults
572
578
  metadata = @config.rpcs.list_participants.metadata.to_h
573
579
 
574
- # Set x-goog-api-client and x-goog-user-project headers
580
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
575
581
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
576
582
  lib_name: @config.lib_name, lib_version: @config.lib_version,
577
583
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
584
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
578
585
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
579
586
 
580
587
  header_params = {}
@@ -658,10 +665,11 @@ module Google
658
665
  # Customize the options with defaults
659
666
  metadata = @config.rpcs.get_participant_session.metadata.to_h
660
667
 
661
- # Set x-goog-api-client and x-goog-user-project headers
668
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
662
669
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
663
670
  lib_name: @config.lib_name, lib_version: @config.lib_version,
664
671
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
672
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
665
673
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
666
674
 
667
675
  header_params = {}
@@ -769,10 +777,11 @@ module Google
769
777
  # Customize the options with defaults
770
778
  metadata = @config.rpcs.list_participant_sessions.metadata.to_h
771
779
 
772
- # Set x-goog-api-client and x-goog-user-project headers
780
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
773
781
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
774
782
  lib_name: @config.lib_name, lib_version: @config.lib_version,
775
783
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
784
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
776
785
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
777
786
 
778
787
  header_params = {}
@@ -856,10 +865,11 @@ module Google
856
865
  # Customize the options with defaults
857
866
  metadata = @config.rpcs.get_recording.metadata.to_h
858
867
 
859
- # Set x-goog-api-client and x-goog-user-project headers
868
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
860
869
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
861
870
  lib_name: @config.lib_name, lib_version: @config.lib_version,
862
871
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
872
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
863
873
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
864
874
 
865
875
  header_params = {}
@@ -954,10 +964,11 @@ module Google
954
964
  # Customize the options with defaults
955
965
  metadata = @config.rpcs.list_recordings.metadata.to_h
956
966
 
957
- # Set x-goog-api-client and x-goog-user-project headers
967
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
958
968
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
959
969
  lib_name: @config.lib_name, lib_version: @config.lib_version,
960
970
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
971
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
961
972
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
962
973
 
963
974
  header_params = {}
@@ -1041,10 +1052,11 @@ module Google
1041
1052
  # Customize the options with defaults
1042
1053
  metadata = @config.rpcs.get_transcript.metadata.to_h
1043
1054
 
1044
- # Set x-goog-api-client and x-goog-user-project headers
1055
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1045
1056
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1046
1057
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1047
1058
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
1059
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1048
1060
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1049
1061
 
1050
1062
  header_params = {}
@@ -1139,10 +1151,11 @@ module Google
1139
1151
  # Customize the options with defaults
1140
1152
  metadata = @config.rpcs.list_transcripts.metadata.to_h
1141
1153
 
1142
- # Set x-goog-api-client and x-goog-user-project headers
1154
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1143
1155
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1144
1156
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1145
1157
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
1158
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1146
1159
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1147
1160
 
1148
1161
  header_params = {}
@@ -1230,10 +1243,11 @@ module Google
1230
1243
  # Customize the options with defaults
1231
1244
  metadata = @config.rpcs.get_transcript_entry.metadata.to_h
1232
1245
 
1233
- # Set x-goog-api-client and x-goog-user-project headers
1246
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1234
1247
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1235
1248
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1236
1249
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
1250
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1237
1251
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1238
1252
 
1239
1253
  header_params = {}
@@ -1334,10 +1348,11 @@ module Google
1334
1348
  # Customize the options with defaults
1335
1349
  metadata = @config.rpcs.list_transcript_entries.metadata.to_h
1336
1350
 
1337
- # Set x-goog-api-client and x-goog-user-project headers
1351
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1338
1352
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1339
1353
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1340
1354
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
1355
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1341
1356
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1342
1357
 
1343
1358
  header_params = {}
@@ -32,6 +32,9 @@ module Google
32
32
  # REST API for services dealing with conference records.
33
33
  #
34
34
  class Client
35
+ # @private
36
+ API_VERSION = ""
37
+
35
38
  # @private
36
39
  DEFAULT_ENDPOINT_TEMPLATE = "meet.$UNIVERSE_DOMAIN$"
37
40
 
@@ -268,12 +271,13 @@ module Google
268
271
  # Customize the options with defaults
269
272
  call_metadata = @config.rpcs.get_conference_record.metadata.to_h
270
273
 
271
- # Set x-goog-api-client and x-goog-user-project headers
274
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
272
275
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
273
276
  lib_name: @config.lib_name, lib_version: @config.lib_version,
274
277
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
275
278
  transports_version_send: [:rest]
276
279
 
280
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
277
281
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
278
282
 
279
283
  options.apply_defaults timeout: @config.rpcs.get_conference_record.timeout,
@@ -366,12 +370,13 @@ module Google
366
370
  # Customize the options with defaults
367
371
  call_metadata = @config.rpcs.list_conference_records.metadata.to_h
368
372
 
369
- # Set x-goog-api-client and x-goog-user-project headers
373
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
370
374
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
371
375
  lib_name: @config.lib_name, lib_version: @config.lib_version,
372
376
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
373
377
  transports_version_send: [:rest]
374
378
 
379
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
375
380
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
376
381
 
377
382
  options.apply_defaults timeout: @config.rpcs.list_conference_records.timeout,
@@ -446,12 +451,13 @@ module Google
446
451
  # Customize the options with defaults
447
452
  call_metadata = @config.rpcs.get_participant.metadata.to_h
448
453
 
449
- # Set x-goog-api-client and x-goog-user-project headers
454
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
450
455
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
451
456
  lib_name: @config.lib_name, lib_version: @config.lib_version,
452
457
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
453
458
  transports_version_send: [:rest]
454
459
 
460
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
455
461
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
456
462
 
457
463
  options.apply_defaults timeout: @config.rpcs.get_participant.timeout,
@@ -550,12 +556,13 @@ module Google
550
556
  # Customize the options with defaults
551
557
  call_metadata = @config.rpcs.list_participants.metadata.to_h
552
558
 
553
- # Set x-goog-api-client and x-goog-user-project headers
559
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
554
560
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
555
561
  lib_name: @config.lib_name, lib_version: @config.lib_version,
556
562
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
557
563
  transports_version_send: [:rest]
558
564
 
565
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
559
566
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
560
567
 
561
568
  options.apply_defaults timeout: @config.rpcs.list_participants.timeout,
@@ -630,12 +637,13 @@ module Google
630
637
  # Customize the options with defaults
631
638
  call_metadata = @config.rpcs.get_participant_session.metadata.to_h
632
639
 
633
- # Set x-goog-api-client and x-goog-user-project headers
640
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
634
641
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
635
642
  lib_name: @config.lib_name, lib_version: @config.lib_version,
636
643
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
637
644
  transports_version_send: [:rest]
638
645
 
646
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
639
647
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
640
648
 
641
649
  options.apply_defaults timeout: @config.rpcs.get_participant_session.timeout,
@@ -734,12 +742,13 @@ module Google
734
742
  # Customize the options with defaults
735
743
  call_metadata = @config.rpcs.list_participant_sessions.metadata.to_h
736
744
 
737
- # Set x-goog-api-client and x-goog-user-project headers
745
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
738
746
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
739
747
  lib_name: @config.lib_name, lib_version: @config.lib_version,
740
748
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
741
749
  transports_version_send: [:rest]
742
750
 
751
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
743
752
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
744
753
 
745
754
  options.apply_defaults timeout: @config.rpcs.list_participant_sessions.timeout,
@@ -814,12 +823,13 @@ module Google
814
823
  # Customize the options with defaults
815
824
  call_metadata = @config.rpcs.get_recording.metadata.to_h
816
825
 
817
- # Set x-goog-api-client and x-goog-user-project headers
826
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
818
827
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
819
828
  lib_name: @config.lib_name, lib_version: @config.lib_version,
820
829
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
821
830
  transports_version_send: [:rest]
822
831
 
832
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
823
833
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
824
834
 
825
835
  options.apply_defaults timeout: @config.rpcs.get_recording.timeout,
@@ -905,12 +915,13 @@ module Google
905
915
  # Customize the options with defaults
906
916
  call_metadata = @config.rpcs.list_recordings.metadata.to_h
907
917
 
908
- # Set x-goog-api-client and x-goog-user-project headers
918
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
909
919
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
910
920
  lib_name: @config.lib_name, lib_version: @config.lib_version,
911
921
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
912
922
  transports_version_send: [:rest]
913
923
 
924
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
914
925
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
915
926
 
916
927
  options.apply_defaults timeout: @config.rpcs.list_recordings.timeout,
@@ -985,12 +996,13 @@ module Google
985
996
  # Customize the options with defaults
986
997
  call_metadata = @config.rpcs.get_transcript.metadata.to_h
987
998
 
988
- # Set x-goog-api-client and x-goog-user-project headers
999
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
989
1000
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
990
1001
  lib_name: @config.lib_name, lib_version: @config.lib_version,
991
1002
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
992
1003
  transports_version_send: [:rest]
993
1004
 
1005
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
994
1006
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
995
1007
 
996
1008
  options.apply_defaults timeout: @config.rpcs.get_transcript.timeout,
@@ -1076,12 +1088,13 @@ module Google
1076
1088
  # Customize the options with defaults
1077
1089
  call_metadata = @config.rpcs.list_transcripts.metadata.to_h
1078
1090
 
1079
- # Set x-goog-api-client and x-goog-user-project headers
1091
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1080
1092
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1081
1093
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1082
1094
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
1083
1095
  transports_version_send: [:rest]
1084
1096
 
1097
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1085
1098
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1086
1099
 
1087
1100
  options.apply_defaults timeout: @config.rpcs.list_transcripts.timeout,
@@ -1160,12 +1173,13 @@ module Google
1160
1173
  # Customize the options with defaults
1161
1174
  call_metadata = @config.rpcs.get_transcript_entry.metadata.to_h
1162
1175
 
1163
- # Set x-goog-api-client and x-goog-user-project headers
1176
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1164
1177
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1165
1178
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1166
1179
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
1167
1180
  transports_version_send: [:rest]
1168
1181
 
1182
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1169
1183
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1170
1184
 
1171
1185
  options.apply_defaults timeout: @config.rpcs.get_transcript_entry.timeout,
@@ -1257,12 +1271,13 @@ module Google
1257
1271
  # Customize the options with defaults
1258
1272
  call_metadata = @config.rpcs.list_transcript_entries.metadata.to_h
1259
1273
 
1260
- # Set x-goog-api-client and x-goog-user-project headers
1274
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
1261
1275
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
1262
1276
  lib_name: @config.lib_name, lib_version: @config.lib_version,
1263
1277
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
1264
1278
  transports_version_send: [:rest]
1265
1279
 
1280
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
1266
1281
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
1267
1282
 
1268
1283
  options.apply_defaults timeout: @config.rpcs.list_transcript_entries.timeout,
@@ -9,7 +9,7 @@ require 'google/api/resource_pb'
9
9
  require 'google/protobuf/timestamp_pb'
10
10
 
11
11
 
12
- descriptor_data = "\n&google/apps/meet/v2beta/resource.proto\x12\x17google.apps.meet.v2beta\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xfe\x01\n\x05Space\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x05\x12\x19\n\x0bmeeting_uri\x18\x02 \x01(\tB\x04\xe2\x41\x01\x03\x12\x1a\n\x0cmeeting_code\x18\x03 \x01(\tB\x04\xe2\x41\x01\x03\x12\x34\n\x06\x63onfig\x18\x05 \x01(\x0b\x32$.google.apps.meet.v2beta.SpaceConfig\x12\x44\n\x11\x61\x63tive_conference\x18\x06 \x01(\x0b\x32).google.apps.meet.v2beta.ActiveConference:.\xea\x41+\n\x19meet.googleapis.com/Space\x12\x0espaces/{space}\"\\\n\x10\x41\x63tiveConference\x12H\n\x11\x63onference_record\x18\x01 \x01(\tB-\xe2\x41\x01\x03\xfa\x41&\n$meet.googleapis.com/ConferenceRecord\"\xcf\x02\n\x0bSpaceConfig\x12\x44\n\x0b\x61\x63\x63\x65ss_type\x18\x01 \x01(\x0e\x32/.google.apps.meet.v2beta.SpaceConfig.AccessType\x12Q\n\x12\x65ntry_point_access\x18\x02 \x01(\x0e\x32\x35.google.apps.meet.v2beta.SpaceConfig.EntryPointAccess\"P\n\nAccessType\x12\x1b\n\x17\x41\x43\x43\x45SS_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\x0b\n\x07TRUSTED\x10\x02\x12\x0e\n\nRESTRICTED\x10\x03\"U\n\x10\x45ntryPointAccess\x12\"\n\x1e\x45NTRY_POINT_ACCESS_UNSPECIFIED\x10\x00\x12\x07\n\x03\x41LL\x10\x01\x12\x14\n\x10\x43REATOR_APP_ONLY\x10\x02\"\xf1\x02\n\x10\x43onferenceRecord\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x08\x12\x34\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x32\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x35\n\x0b\x65xpire_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x31\n\x05space\x18\x05 \x01(\tB\"\xe2\x41\x01\x03\xfa\x41\x1b\n\x19meet.googleapis.com/Space:u\xea\x41r\n$meet.googleapis.com/ConferenceRecord\x12%conferenceRecords/{conference_record}*\x11\x63onferenceRecords2\x10\x63onferenceRecord\"\xe3\x03\n\x0bParticipant\x12>\n\rsignedin_user\x18\x04 \x01(\x0b\x32%.google.apps.meet.v2beta.SignedinUserH\x00\x12@\n\x0e\x61nonymous_user\x18\x05 \x01(\x0b\x32&.google.apps.meet.v2beta.AnonymousUserH\x00\x12\x38\n\nphone_user\x18\x06 \x01(\x0b\x32\".google.apps.meet.v2beta.PhoneUserH\x00\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12=\n\x13\x65\x61rliest_start_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x39\n\x0flatest_end_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03:\x81\x01\xea\x41~\n\x1fmeet.googleapis.com/Participant\x12@conferenceRecords/{conference_record}/participants/{participant}*\x0cparticipants2\x0bparticipantB\x06\n\x04user\"\xd6\x02\n\x12ParticipantSession\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x08\x12\x34\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x32\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03:\xc1\x01\xea\x41\xbd\x01\n&meet.googleapis.com/ParticipantSession\x12jconferenceRecords/{conference_record}/participants/{participant}/participantSessions/{participant_session}*\x13participantSessions2\x12participantSession\">\n\x0cSignedinUser\x12\x12\n\x04user\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12\x1a\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x04\xe2\x41\x01\x03\"+\n\rAnonymousUser\x12\x1a\n\x0c\x64isplay_name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\"\'\n\tPhoneUser\x12\x1a\n\x0c\x64isplay_name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\"\xea\x03\n\tRecording\x12L\n\x11\x64rive_destination\x18\x06 \x01(\x0b\x32).google.apps.meet.v2beta.DriveDestinationB\x04\xe2\x41\x01\x03H\x00\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12=\n\x05state\x18\x03 \x01(\x0e\x32(.google.apps.meet.v2beta.Recording.StateB\x04\xe2\x41\x01\x03\x12\x34\n\nstart_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x32\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\"J\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07STARTED\x10\x01\x12\t\n\x05\x45NDED\x10\x02\x12\x12\n\x0e\x46ILE_GENERATED\x10\x03:w\xea\x41t\n\x1dmeet.googleapis.com/Recording\x12<conferenceRecords/{conference_record}/recordings/{recording}*\nrecordings2\trecordingB\r\n\x0b\x64\x65stination\"@\n\x10\x44riveDestination\x12\x12\n\x04\x66ile\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12\x18\n\nexport_uri\x18\x02 \x01(\tB\x04\xe2\x41\x01\x03\"\xef\x03\n\nTranscript\x12J\n\x10\x64ocs_destination\x18\x06 \x01(\x0b\x32(.google.apps.meet.v2beta.DocsDestinationB\x04\xe2\x41\x01\x03H\x00\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12>\n\x05state\x18\x03 \x01(\x0e\x32).google.apps.meet.v2beta.Transcript.StateB\x04\xe2\x41\x01\x03\x12\x34\n\nstart_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x32\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\"J\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07STARTED\x10\x01\x12\t\n\x05\x45NDED\x10\x02\x12\x12\n\x0e\x46ILE_GENERATED\x10\x03:|\xea\x41y\n\x1emeet.googleapis.com/Transcript\x12>conferenceRecords/{conference_record}/transcripts/{transcript}*\x0btranscripts2\ntranscriptB\r\n\x0b\x64\x65stination\"C\n\x0f\x44ocsDestination\x12\x16\n\x08\x64ocument\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12\x18\n\nexport_uri\x18\x02 \x01(\tB\x04\xe2\x41\x01\x03\"\x9f\x03\n\x0fTranscriptEntry\x12\x12\n\x04name\x18\x01 \x01(\tB\x04\xe2\x41\x01\x03\x12=\n\x0bparticipant\x18\x02 \x01(\tB(\xe2\x41\x01\x03\xfa\x41!\n\x1fmeet.googleapis.com/Participant\x12\x12\n\x04text\x18\x03 \x01(\tB\x04\xe2\x41\x01\x03\x12\x1b\n\rlanguage_code\x18\x04 \x01(\tB\x04\xe2\x41\x01\x03\x12\x34\n\nstart_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03\x12\x32\n\x08\x65nd_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x04\xe2\x41\x01\x03:\x9d\x01\xea\x41\x99\x01\n#meet.googleapis.com/TranscriptEntry\x12NconferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}*\x11transcriptEntries2\x0ftranscriptEntryB\xb6\x01\n\x1b\x63om.google.apps.meet.v2betaB\rResourceProtoP\x01Z5cloud.google.com/go/apps/meet/apiv2beta/meetpb;meetpb\xaa\x02\x17Google.Apps.Meet.V2Beta\xca\x02\x17Google\\Apps\\Meet\\V2beta\xea\x02\x1aGoogle::Apps::Meet::V2betab\x06proto3"
12
+ descriptor_data = "\n&google/apps/meet/v2beta/resource.proto\x12\x17google.apps.meet.v2beta\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a\x1fgoogle/protobuf/timestamp.proto\"\xfb\x01\n\x05Space\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x05\x12\x18\n\x0bmeeting_uri\x18\x02 \x01(\tB\x03\xe0\x41\x03\x12\x19\n\x0cmeeting_code\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x34\n\x06\x63onfig\x18\x05 \x01(\x0b\x32$.google.apps.meet.v2beta.SpaceConfig\x12\x44\n\x11\x61\x63tive_conference\x18\x06 \x01(\x0b\x32).google.apps.meet.v2beta.ActiveConference:.\xea\x41+\n\x19meet.googleapis.com/Space\x12\x0espaces/{space}\"[\n\x10\x41\x63tiveConference\x12G\n\x11\x63onference_record\x18\x01 \x01(\tB,\xe0\x41\x03\xfa\x41&\n$meet.googleapis.com/ConferenceRecord\"\xcf\x02\n\x0bSpaceConfig\x12\x44\n\x0b\x61\x63\x63\x65ss_type\x18\x01 \x01(\x0e\x32/.google.apps.meet.v2beta.SpaceConfig.AccessType\x12Q\n\x12\x65ntry_point_access\x18\x02 \x01(\x0e\x32\x35.google.apps.meet.v2beta.SpaceConfig.EntryPointAccess\"P\n\nAccessType\x12\x1b\n\x17\x41\x43\x43\x45SS_TYPE_UNSPECIFIED\x10\x00\x12\x08\n\x04OPEN\x10\x01\x12\x0b\n\x07TRUSTED\x10\x02\x12\x0e\n\nRESTRICTED\x10\x03\"U\n\x10\x45ntryPointAccess\x12\"\n\x1e\x45NTRY_POINT_ACCESS_UNSPECIFIED\x10\x00\x12\x07\n\x03\x41LL\x10\x01\x12\x14\n\x10\x43REATOR_APP_ONLY\x10\x02\"\xec\x02\n\x10\x43onferenceRecord\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x33\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x34\n\x0b\x65xpire_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x30\n\x05space\x18\x05 \x01(\tB!\xe0\x41\x03\xfa\x41\x1b\n\x19meet.googleapis.com/Space:u\xea\x41r\n$meet.googleapis.com/ConferenceRecord\x12%conferenceRecords/{conference_record}*\x11\x63onferenceRecords2\x10\x63onferenceRecord\"\xe0\x03\n\x0bParticipant\x12>\n\rsignedin_user\x18\x04 \x01(\x0b\x32%.google.apps.meet.v2beta.SignedinUserH\x00\x12@\n\x0e\x61nonymous_user\x18\x05 \x01(\x0b\x32&.google.apps.meet.v2beta.AnonymousUserH\x00\x12\x38\n\nphone_user\x18\x06 \x01(\x0b\x32\".google.apps.meet.v2beta.PhoneUserH\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12<\n\x13\x65\x61rliest_start_time\x18\x07 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x38\n\x0flatest_end_time\x18\x08 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\x81\x01\xea\x41~\n\x1fmeet.googleapis.com/Participant\x12@conferenceRecords/{conference_record}/participants/{participant}*\x0cparticipants2\x0bparticipantB\x06\n\x04user\"\xd3\x02\n\x12ParticipantSession\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\x33\n\nstart_time\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x03 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\xc1\x01\xea\x41\xbd\x01\n&meet.googleapis.com/ParticipantSession\x12jconferenceRecords/{conference_record}/participants/{participant}/participantSessions/{participant_session}*\x13participantSessions2\x12participantSession\"<\n\x0cSignedinUser\x12\x11\n\x04user\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x19\n\x0c\x64isplay_name\x18\x02 \x01(\tB\x03\xe0\x41\x03\"*\n\rAnonymousUser\x12\x19\n\x0c\x64isplay_name\x18\x01 \x01(\tB\x03\xe0\x41\x03\"&\n\tPhoneUser\x12\x19\n\x0c\x64isplay_name\x18\x01 \x01(\tB\x03\xe0\x41\x03\"\xe5\x03\n\tRecording\x12K\n\x11\x64rive_destination\x18\x06 \x01(\x0b\x32).google.apps.meet.v2beta.DriveDestinationB\x03\xe0\x41\x03H\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12<\n\x05state\x18\x03 \x01(\x0e\x32(.google.apps.meet.v2beta.Recording.StateB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"J\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07STARTED\x10\x01\x12\t\n\x05\x45NDED\x10\x02\x12\x12\n\x0e\x46ILE_GENERATED\x10\x03:w\xea\x41t\n\x1dmeet.googleapis.com/Recording\x12<conferenceRecords/{conference_record}/recordings/{recording}*\nrecordings2\trecordingB\r\n\x0b\x64\x65stination\">\n\x10\x44riveDestination\x12\x11\n\x04\x66ile\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nexport_uri\x18\x02 \x01(\tB\x03\xe0\x41\x03\"\xea\x03\n\nTranscript\x12I\n\x10\x64ocs_destination\x18\x06 \x01(\x0b\x32(.google.apps.meet.v2beta.DocsDestinationB\x03\xe0\x41\x03H\x00\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12=\n\x05state\x18\x03 \x01(\x0e\x32).google.apps.meet.v2beta.Transcript.StateB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x04 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\"J\n\x05State\x12\x15\n\x11STATE_UNSPECIFIED\x10\x00\x12\x0b\n\x07STARTED\x10\x01\x12\t\n\x05\x45NDED\x10\x02\x12\x12\n\x0e\x46ILE_GENERATED\x10\x03:|\xea\x41y\n\x1emeet.googleapis.com/Transcript\x12>conferenceRecords/{conference_record}/transcripts/{transcript}*\x0btranscripts2\ntranscriptB\r\n\x0b\x64\x65stination\"A\n\x0f\x44ocsDestination\x12\x15\n\x08\x64ocument\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12\x17\n\nexport_uri\x18\x02 \x01(\tB\x03\xe0\x41\x03\"\x99\x03\n\x0fTranscriptEntry\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x03\x12<\n\x0bparticipant\x18\x02 \x01(\tB\'\xe0\x41\x03\xfa\x41!\n\x1fmeet.googleapis.com/Participant\x12\x11\n\x04text\x18\x03 \x01(\tB\x03\xe0\x41\x03\x12\x1a\n\rlanguage_code\x18\x04 \x01(\tB\x03\xe0\x41\x03\x12\x33\n\nstart_time\x18\x05 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03\x12\x31\n\x08\x65nd_time\x18\x06 \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x03\xe0\x41\x03:\x9d\x01\xea\x41\x99\x01\n#meet.googleapis.com/TranscriptEntry\x12NconferenceRecords/{conference_record}/transcripts/{transcript}/entries/{entry}*\x11transcriptEntries2\x0ftranscriptEntryB\xb6\x01\n\x1b\x63om.google.apps.meet.v2betaB\rResourceProtoP\x01Z5cloud.google.com/go/apps/meet/apiv2beta/meetpb;meetpb\xaa\x02\x17Google.Apps.Meet.V2Beta\xca\x02\x17Google\\Apps\\Meet\\V2beta\xea\x02\x1aGoogle::Apps::Meet::V2betab\x06proto3"
13
13
 
14
14
  pool = Google::Protobuf::DescriptorPool.generated_pool
15
15
 
@@ -13,7 +13,7 @@ require 'google/protobuf/empty_pb'
13
13
  require 'google/protobuf/field_mask_pb'
14
14
 
15
15
 
16
- descriptor_data = "\n%google/apps/meet/v2beta/service.proto\x12\x17google.apps.meet.v2beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a&google/apps/meet/v2beta/resource.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"C\n\x12\x43reateSpaceRequest\x12-\n\x05space\x18\x01 \x01(\x0b\x32\x1e.google.apps.meet.v2beta.Space\"C\n\x0fGetSpaceRequest\x12\x30\n\x04name\x18\x01 \x01(\tB\"\xe2\x41\x01\x02\xfa\x41\x1b\n\x19meet.googleapis.com/Space\"\x80\x01\n\x12UpdateSpaceRequest\x12\x33\n\x05space\x18\x01 \x01(\x0b\x32\x1e.google.apps.meet.v2beta.SpaceB\x04\xe2\x41\x01\x02\x12\x35\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x04\xe2\x41\x01\x01\"N\n\x1a\x45ndActiveConferenceRequest\x12\x30\n\x04name\x18\x01 \x01(\tB\"\xe2\x41\x01\x02\xfa\x41\x1b\n\x19meet.googleapis.com/Space\"Y\n\x1aGetConferenceRecordRequest\x12;\n\x04name\x18\x01 \x01(\tB-\xe2\x41\x01\x02\xfa\x41&\n$meet.googleapis.com/ConferenceRecord\"g\n\x1cListConferenceRecordsRequest\x12\x17\n\tpage_size\x18\x01 \x01(\x05\x42\x04\xe2\x41\x01\x01\x12\x18\n\npage_token\x18\x02 \x01(\tB\x04\xe2\x41\x01\x01\x12\x14\n\x06\x66ilter\x18\x03 \x01(\tB\x04\xe2\x41\x01\x01\"\x7f\n\x1dListConferenceRecordsResponse\x12\x45\n\x12\x63onference_records\x18\x01 \x03(\x0b\x32).google.apps.meet.v2beta.ConferenceRecord\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"O\n\x15GetParticipantRequest\x12\x36\n\x04name\x18\x01 \x01(\tB(\xe2\x41\x01\x02\xfa\x41!\n\x1fmeet.googleapis.com/Participant\"\x90\x01\n\x17ListParticipantsRequest\x12\x38\n\x06parent\x18\x01 \x01(\tB(\xe2\x41\x01\x02\xfa\x41!\x12\x1fmeet.googleapis.com/Participant\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x14\n\x06\x66ilter\x18\x04 \x01(\tB\x04\xe2\x41\x01\x01\"\x83\x01\n\x18ListParticipantsResponse\x12:\n\x0cparticipants\x18\x01 \x03(\x0b\x32$.google.apps.meet.v2beta.Participant\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"]\n\x1cGetParticipantSessionRequest\x12=\n\x04name\x18\x01 \x01(\tB/\xe2\x41\x01\x02\xfa\x41(\n&meet.googleapis.com/ParticipantSession\"\xaa\x01\n\x1eListParticipantSessionsRequest\x12?\n\x06parent\x18\x01 \x01(\tB/\xe2\x41\x01\x02\xfa\x41(\x12&meet.googleapis.com/ParticipantSession\x12\x17\n\tpage_size\x18\x02 \x01(\x05\x42\x04\xe2\x41\x01\x01\x12\x18\n\npage_token\x18\x03 \x01(\tB\x04\xe2\x41\x01\x01\x12\x14\n\x06\x66ilter\x18\x04 \x01(\tB\x04\xe2\x41\x01\x01\"\x85\x01\n\x1fListParticipantSessionsResponse\x12I\n\x14participant_sessions\x18\x01 \x03(\x0b\x32+.google.apps.meet.v2beta.ParticipantSession\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"K\n\x13GetRecordingRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe2\x41\x01\x02\xfa\x41\x1f\n\x1dmeet.googleapis.com/Recording\"v\n\x15ListRecordingsRequest\x12\x36\n\x06parent\x18\x01 \x01(\tB&\xe2\x41\x01\x02\xfa\x41\x1f\x12\x1dmeet.googleapis.com/Recording\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"i\n\x16ListRecordingsResponse\x12\x36\n\nrecordings\x18\x01 \x03(\x0b\x32\".google.apps.meet.v2beta.Recording\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"M\n\x14GetTranscriptRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe2\x41\x01\x02\xfa\x41 \n\x1emeet.googleapis.com/Transcript\"x\n\x16ListTranscriptsRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe2\x41\x01\x02\xfa\x41 \x12\x1emeet.googleapis.com/Transcript\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"l\n\x17ListTranscriptsResponse\x12\x38\n\x0btranscripts\x18\x01 \x03(\x0b\x32#.google.apps.meet.v2beta.Transcript\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"W\n\x19GetTranscriptEntryRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe2\x41\x01\x02\xfa\x41%\n#meet.googleapis.com/TranscriptEntry\"\x83\x01\n\x1cListTranscriptEntriesRequest\x12<\n\x06parent\x18\x01 \x01(\tB,\xe2\x41\x01\x02\xfa\x41%\x12#meet.googleapis.com/TranscriptEntry\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"~\n\x1dListTranscriptEntriesResponse\x12\x44\n\x12transcript_entries\x18\x01 \x03(\x0b\x32(.google.apps.meet.v2beta.TranscriptEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\xec\x04\n\rSpacesService\x12\x81\x01\n\x0b\x43reateSpace\x12+.google.apps.meet.v2beta.CreateSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"%\xda\x41\x05space\x82\xd3\xe4\x93\x02\x17\"\x0e/v2beta/spaces:\x05space\x12|\n\x08GetSpace\x12(.google.apps.meet.v2beta.GetSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"&\xda\x41\x04name\x82\xd3\xe4\x93\x02\x19\x12\x17/v2beta/{name=spaces/*}\x12\x9c\x01\n\x0bUpdateSpace\x12+.google.apps.meet.v2beta.UpdateSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"@\xda\x41\x11space,update_mask\x82\xd3\xe4\x93\x02&2\x1d/v2beta/{space.name=spaces/*}:\x05space\x12\xa1\x01\n\x13\x45ndActiveConference\x12\x33.google.apps.meet.v2beta.EndActiveConferenceRequest\x1a\x16.google.protobuf.Empty\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\"+/v2beta/{name=spaces/*}:endActiveConference:\x01*\x1a\x16\xca\x41\x13meet.googleapis.com2\x81\x12\n\x18\x43onferenceRecordsService\x12\xa8\x01\n\x13GetConferenceRecord\x12\x33.google.apps.meet.v2beta.GetConferenceRecordRequest\x1a).google.apps.meet.v2beta.ConferenceRecord\"1\xda\x41\x04name\x82\xd3\xe4\x93\x02$\x12\"/v2beta/{name=conferenceRecords/*}\x12\xa9\x01\n\x15ListConferenceRecords\x12\x35.google.apps.meet.v2beta.ListConferenceRecordsRequest\x1a\x36.google.apps.meet.v2beta.ListConferenceRecordsResponse\"!\x82\xd3\xe4\x93\x02\x1b\x12\x19/v2beta/conferenceRecords\x12\xa8\x01\n\x0eGetParticipant\x12..google.apps.meet.v2beta.GetParticipantRequest\x1a$.google.apps.meet.v2beta.Participant\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v2beta/{name=conferenceRecords/*/participants/*}\x12\xbb\x01\n\x10ListParticipants\x12\x30.google.apps.meet.v2beta.ListParticipantsRequest\x1a\x31.google.apps.meet.v2beta.ListParticipantsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v2beta/{parent=conferenceRecords/*}/participants\x12\xd3\x01\n\x15GetParticipantSession\x12\x35.google.apps.meet.v2beta.GetParticipantSessionRequest\x1a+.google.apps.meet.v2beta.ParticipantSession\"V\xda\x41\x04name\x82\xd3\xe4\x93\x02I\x12G/v2beta/{name=conferenceRecords/*/participants/*/participantSessions/*}\x12\xe6\x01\n\x17ListParticipantSessions\x12\x37.google.apps.meet.v2beta.ListParticipantSessionsRequest\x1a\x38.google.apps.meet.v2beta.ListParticipantSessionsResponse\"X\xda\x41\x06parent\x82\xd3\xe4\x93\x02I\x12G/v2beta/{parent=conferenceRecords/*/participants/*}/participantSessions\x12\xa0\x01\n\x0cGetRecording\x12,.google.apps.meet.v2beta.GetRecordingRequest\x1a\".google.apps.meet.v2beta.Recording\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v2beta/{name=conferenceRecords/*/recordings/*}\x12\xb3\x01\n\x0eListRecordings\x12..google.apps.meet.v2beta.ListRecordingsRequest\x1a/.google.apps.meet.v2beta.ListRecordingsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v2beta/{parent=conferenceRecords/*}/recordings\x12\xa4\x01\n\rGetTranscript\x12-.google.apps.meet.v2beta.GetTranscriptRequest\x1a#.google.apps.meet.v2beta.Transcript\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v2beta/{name=conferenceRecords/*/transcripts/*}\x12\xb7\x01\n\x0fListTranscripts\x12/.google.apps.meet.v2beta.ListTranscriptsRequest\x1a\x30.google.apps.meet.v2beta.ListTranscriptsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v2beta/{parent=conferenceRecords/*}/transcripts\x12\xbd\x01\n\x12GetTranscriptEntry\x12\x32.google.apps.meet.v2beta.GetTranscriptEntryRequest\x1a(.google.apps.meet.v2beta.TranscriptEntry\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v2beta/{name=conferenceRecords/*/transcripts/*/entries/*}\x12\xd3\x01\n\x15ListTranscriptEntries\x12\x35.google.apps.meet.v2beta.ListTranscriptEntriesRequest\x1a\x36.google.apps.meet.v2beta.ListTranscriptEntriesResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v2beta/{parent=conferenceRecords/*/transcripts/*}/entries\x1a\x16\xca\x41\x13meet.googleapis.comB\xb5\x01\n\x1b\x63om.google.apps.meet.v2betaB\x0cServiceProtoP\x01Z5cloud.google.com/go/apps/meet/apiv2beta/meetpb;meetpb\xaa\x02\x17Google.Apps.Meet.V2Beta\xca\x02\x17Google\\Apps\\Meet\\V2beta\xea\x02\x1aGoogle::Apps::Meet::V2betab\x06proto3"
16
+ descriptor_data = "\n%google/apps/meet/v2beta/service.proto\x12\x17google.apps.meet.v2beta\x1a\x1cgoogle/api/annotations.proto\x1a\x17google/api/client.proto\x1a\x1fgoogle/api/field_behavior.proto\x1a\x19google/api/resource.proto\x1a&google/apps/meet/v2beta/resource.proto\x1a\x1bgoogle/protobuf/empty.proto\x1a google/protobuf/field_mask.proto\"C\n\x12\x43reateSpaceRequest\x12-\n\x05space\x18\x01 \x01(\x0b\x32\x1e.google.apps.meet.v2beta.Space\"B\n\x0fGetSpaceRequest\x12/\n\x04name\x18\x01 \x01(\tB!\xe0\x41\x02\xfa\x41\x1b\n\x19meet.googleapis.com/Space\"~\n\x12UpdateSpaceRequest\x12\x32\n\x05space\x18\x01 \x01(\x0b\x32\x1e.google.apps.meet.v2beta.SpaceB\x03\xe0\x41\x02\x12\x34\n\x0bupdate_mask\x18\x02 \x01(\x0b\x32\x1a.google.protobuf.FieldMaskB\x03\xe0\x41\x01\"M\n\x1a\x45ndActiveConferenceRequest\x12/\n\x04name\x18\x01 \x01(\tB!\xe0\x41\x02\xfa\x41\x1b\n\x19meet.googleapis.com/Space\"X\n\x1aGetConferenceRecordRequest\x12:\n\x04name\x18\x01 \x01(\tB,\xe0\x41\x02\xfa\x41&\n$meet.googleapis.com/ConferenceRecord\"d\n\x1cListConferenceRecordsRequest\x12\x16\n\tpage_size\x18\x01 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x02 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x03 \x01(\tB\x03\xe0\x41\x01\"\x7f\n\x1dListConferenceRecordsResponse\x12\x45\n\x12\x63onference_records\x18\x01 \x03(\x0b\x32).google.apps.meet.v2beta.ConferenceRecord\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"N\n\x15GetParticipantRequest\x12\x35\n\x04name\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\n\x1fmeet.googleapis.com/Participant\"\x8e\x01\n\x17ListParticipantsRequest\x12\x37\n\x06parent\x18\x01 \x01(\tB\'\xe0\x41\x02\xfa\x41!\x12\x1fmeet.googleapis.com/Participant\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x83\x01\n\x18ListParticipantsResponse\x12:\n\x0cparticipants\x18\x01 \x03(\x0b\x32$.google.apps.meet.v2beta.Participant\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\x12\x12\n\ntotal_size\x18\x03 \x01(\x05\"\\\n\x1cGetParticipantSessionRequest\x12<\n\x04name\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\n&meet.googleapis.com/ParticipantSession\"\xa6\x01\n\x1eListParticipantSessionsRequest\x12>\n\x06parent\x18\x01 \x01(\tB.\xe0\x41\x02\xfa\x41(\x12&meet.googleapis.com/ParticipantSession\x12\x16\n\tpage_size\x18\x02 \x01(\x05\x42\x03\xe0\x41\x01\x12\x17\n\npage_token\x18\x03 \x01(\tB\x03\xe0\x41\x01\x12\x13\n\x06\x66ilter\x18\x04 \x01(\tB\x03\xe0\x41\x01\"\x85\x01\n\x1fListParticipantSessionsResponse\x12I\n\x14participant_sessions\x18\x01 \x03(\x0b\x32+.google.apps.meet.v2beta.ParticipantSession\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"J\n\x13GetRecordingRequest\x12\x33\n\x04name\x18\x01 \x01(\tB%\xe0\x41\x02\xfa\x41\x1f\n\x1dmeet.googleapis.com/Recording\"u\n\x15ListRecordingsRequest\x12\x35\n\x06parent\x18\x01 \x01(\tB%\xe0\x41\x02\xfa\x41\x1f\x12\x1dmeet.googleapis.com/Recording\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"i\n\x16ListRecordingsResponse\x12\x36\n\nrecordings\x18\x01 \x03(\x0b\x32\".google.apps.meet.v2beta.Recording\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"L\n\x14GetTranscriptRequest\x12\x34\n\x04name\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \n\x1emeet.googleapis.com/Transcript\"w\n\x16ListTranscriptsRequest\x12\x36\n\x06parent\x18\x01 \x01(\tB&\xe0\x41\x02\xfa\x41 \x12\x1emeet.googleapis.com/Transcript\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"l\n\x17ListTranscriptsResponse\x12\x38\n\x0btranscripts\x18\x01 \x03(\x0b\x32#.google.apps.meet.v2beta.Transcript\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"V\n\x19GetTranscriptEntryRequest\x12\x39\n\x04name\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\n#meet.googleapis.com/TranscriptEntry\"\x82\x01\n\x1cListTranscriptEntriesRequest\x12;\n\x06parent\x18\x01 \x01(\tB+\xe0\x41\x02\xfa\x41%\x12#meet.googleapis.com/TranscriptEntry\x12\x11\n\tpage_size\x18\x02 \x01(\x05\x12\x12\n\npage_token\x18\x03 \x01(\t\"~\n\x1dListTranscriptEntriesResponse\x12\x44\n\x12transcript_entries\x18\x01 \x03(\x0b\x32(.google.apps.meet.v2beta.TranscriptEntry\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t2\xec\x04\n\rSpacesService\x12\x81\x01\n\x0b\x43reateSpace\x12+.google.apps.meet.v2beta.CreateSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"%\xda\x41\x05space\x82\xd3\xe4\x93\x02\x17\"\x0e/v2beta/spaces:\x05space\x12|\n\x08GetSpace\x12(.google.apps.meet.v2beta.GetSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"&\xda\x41\x04name\x82\xd3\xe4\x93\x02\x19\x12\x17/v2beta/{name=spaces/*}\x12\x9c\x01\n\x0bUpdateSpace\x12+.google.apps.meet.v2beta.UpdateSpaceRequest\x1a\x1e.google.apps.meet.v2beta.Space\"@\xda\x41\x11space,update_mask\x82\xd3\xe4\x93\x02&2\x1d/v2beta/{space.name=spaces/*}:\x05space\x12\xa1\x01\n\x13\x45ndActiveConference\x12\x33.google.apps.meet.v2beta.EndActiveConferenceRequest\x1a\x16.google.protobuf.Empty\"=\xda\x41\x04name\x82\xd3\xe4\x93\x02\x30\"+/v2beta/{name=spaces/*}:endActiveConference:\x01*\x1a\x16\xca\x41\x13meet.googleapis.com2\x81\x12\n\x18\x43onferenceRecordsService\x12\xa8\x01\n\x13GetConferenceRecord\x12\x33.google.apps.meet.v2beta.GetConferenceRecordRequest\x1a).google.apps.meet.v2beta.ConferenceRecord\"1\xda\x41\x04name\x82\xd3\xe4\x93\x02$\x12\"/v2beta/{name=conferenceRecords/*}\x12\xa9\x01\n\x15ListConferenceRecords\x12\x35.google.apps.meet.v2beta.ListConferenceRecordsRequest\x1a\x36.google.apps.meet.v2beta.ListConferenceRecordsResponse\"!\x82\xd3\xe4\x93\x02\x1b\x12\x19/v2beta/conferenceRecords\x12\xa8\x01\n\x0eGetParticipant\x12..google.apps.meet.v2beta.GetParticipantRequest\x1a$.google.apps.meet.v2beta.Participant\"@\xda\x41\x04name\x82\xd3\xe4\x93\x02\x33\x12\x31/v2beta/{name=conferenceRecords/*/participants/*}\x12\xbb\x01\n\x10ListParticipants\x12\x30.google.apps.meet.v2beta.ListParticipantsRequest\x1a\x31.google.apps.meet.v2beta.ListParticipantsResponse\"B\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x33\x12\x31/v2beta/{parent=conferenceRecords/*}/participants\x12\xd3\x01\n\x15GetParticipantSession\x12\x35.google.apps.meet.v2beta.GetParticipantSessionRequest\x1a+.google.apps.meet.v2beta.ParticipantSession\"V\xda\x41\x04name\x82\xd3\xe4\x93\x02I\x12G/v2beta/{name=conferenceRecords/*/participants/*/participantSessions/*}\x12\xe6\x01\n\x17ListParticipantSessions\x12\x37.google.apps.meet.v2beta.ListParticipantSessionsRequest\x1a\x38.google.apps.meet.v2beta.ListParticipantSessionsResponse\"X\xda\x41\x06parent\x82\xd3\xe4\x93\x02I\x12G/v2beta/{parent=conferenceRecords/*/participants/*}/participantSessions\x12\xa0\x01\n\x0cGetRecording\x12,.google.apps.meet.v2beta.GetRecordingRequest\x1a\".google.apps.meet.v2beta.Recording\">\xda\x41\x04name\x82\xd3\xe4\x93\x02\x31\x12//v2beta/{name=conferenceRecords/*/recordings/*}\x12\xb3\x01\n\x0eListRecordings\x12..google.apps.meet.v2beta.ListRecordingsRequest\x1a/.google.apps.meet.v2beta.ListRecordingsResponse\"@\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x31\x12//v2beta/{parent=conferenceRecords/*}/recordings\x12\xa4\x01\n\rGetTranscript\x12-.google.apps.meet.v2beta.GetTranscriptRequest\x1a#.google.apps.meet.v2beta.Transcript\"?\xda\x41\x04name\x82\xd3\xe4\x93\x02\x32\x12\x30/v2beta/{name=conferenceRecords/*/transcripts/*}\x12\xb7\x01\n\x0fListTranscripts\x12/.google.apps.meet.v2beta.ListTranscriptsRequest\x1a\x30.google.apps.meet.v2beta.ListTranscriptsResponse\"A\xda\x41\x06parent\x82\xd3\xe4\x93\x02\x32\x12\x30/v2beta/{parent=conferenceRecords/*}/transcripts\x12\xbd\x01\n\x12GetTranscriptEntry\x12\x32.google.apps.meet.v2beta.GetTranscriptEntryRequest\x1a(.google.apps.meet.v2beta.TranscriptEntry\"I\xda\x41\x04name\x82\xd3\xe4\x93\x02<\x12:/v2beta/{name=conferenceRecords/*/transcripts/*/entries/*}\x12\xd3\x01\n\x15ListTranscriptEntries\x12\x35.google.apps.meet.v2beta.ListTranscriptEntriesRequest\x1a\x36.google.apps.meet.v2beta.ListTranscriptEntriesResponse\"K\xda\x41\x06parent\x82\xd3\xe4\x93\x02<\x12:/v2beta/{parent=conferenceRecords/*/transcripts/*}/entries\x1a\x16\xca\x41\x13meet.googleapis.comB\xb5\x01\n\x1b\x63om.google.apps.meet.v2betaB\x0cServiceProtoP\x01Z5cloud.google.com/go/apps/meet/apiv2beta/meetpb;meetpb\xaa\x02\x17Google.Apps.Meet.V2Beta\xca\x02\x17Google\\Apps\\Meet\\V2beta\xea\x02\x1aGoogle::Apps::Meet::V2betab\x06proto3"
17
17
 
18
18
  pool = Google::Protobuf::DescriptorPool.generated_pool
19
19
 
@@ -30,6 +30,9 @@ module Google
30
30
  # REST API for services dealing with spaces.
31
31
  #
32
32
  class Client
33
+ # @private
34
+ API_VERSION = ""
35
+
33
36
  # @private
34
37
  DEFAULT_ENDPOINT_TEMPLATE = "meet.$UNIVERSE_DOMAIN$"
35
38
 
@@ -228,10 +231,11 @@ module Google
228
231
  # Customize the options with defaults
229
232
  metadata = @config.rpcs.create_space.metadata.to_h
230
233
 
231
- # Set x-goog-api-client and x-goog-user-project headers
234
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
232
235
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
233
236
  lib_name: @config.lib_name, lib_version: @config.lib_version,
234
237
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
238
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
235
239
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
236
240
 
237
241
  options.apply_defaults timeout: @config.rpcs.create_space.timeout,
@@ -306,10 +310,11 @@ module Google
306
310
  # Customize the options with defaults
307
311
  metadata = @config.rpcs.get_space.metadata.to_h
308
312
 
309
- # Set x-goog-api-client and x-goog-user-project headers
313
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
310
314
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
311
315
  lib_name: @config.lib_name, lib_version: @config.lib_version,
312
316
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
317
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
313
318
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
314
319
 
315
320
  header_params = {}
@@ -397,10 +402,11 @@ module Google
397
402
  # Customize the options with defaults
398
403
  metadata = @config.rpcs.update_space.metadata.to_h
399
404
 
400
- # Set x-goog-api-client and x-goog-user-project headers
405
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
401
406
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
402
407
  lib_name: @config.lib_name, lib_version: @config.lib_version,
403
408
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
409
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
404
410
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
405
411
 
406
412
  header_params = {}
@@ -483,10 +489,11 @@ module Google
483
489
  # Customize the options with defaults
484
490
  metadata = @config.rpcs.end_active_conference.metadata.to_h
485
491
 
486
- # Set x-goog-api-client and x-goog-user-project headers
492
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
487
493
  metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
488
494
  lib_name: @config.lib_name, lib_version: @config.lib_version,
489
495
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION
496
+ metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
490
497
  metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
491
498
 
492
499
  header_params = {}
@@ -32,6 +32,9 @@ module Google
32
32
  # REST API for services dealing with spaces.
33
33
  #
34
34
  class Client
35
+ # @private
36
+ API_VERSION = ""
37
+
35
38
  # @private
36
39
  DEFAULT_ENDPOINT_TEMPLATE = "meet.$UNIVERSE_DOMAIN$"
37
40
 
@@ -220,12 +223,13 @@ module Google
220
223
  # Customize the options with defaults
221
224
  call_metadata = @config.rpcs.create_space.metadata.to_h
222
225
 
223
- # Set x-goog-api-client and x-goog-user-project headers
226
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
224
227
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
225
228
  lib_name: @config.lib_name, lib_version: @config.lib_version,
226
229
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
227
230
  transports_version_send: [:rest]
228
231
 
232
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
229
233
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
230
234
 
231
235
  options.apply_defaults timeout: @config.rpcs.create_space.timeout,
@@ -299,12 +303,13 @@ module Google
299
303
  # Customize the options with defaults
300
304
  call_metadata = @config.rpcs.get_space.metadata.to_h
301
305
 
302
- # Set x-goog-api-client and x-goog-user-project headers
306
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
303
307
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
304
308
  lib_name: @config.lib_name, lib_version: @config.lib_version,
305
309
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
306
310
  transports_version_send: [:rest]
307
311
 
312
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
308
313
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
309
314
 
310
315
  options.apply_defaults timeout: @config.rpcs.get_space.timeout,
@@ -383,12 +388,13 @@ module Google
383
388
  # Customize the options with defaults
384
389
  call_metadata = @config.rpcs.update_space.metadata.to_h
385
390
 
386
- # Set x-goog-api-client and x-goog-user-project headers
391
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
387
392
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
388
393
  lib_name: @config.lib_name, lib_version: @config.lib_version,
389
394
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
390
395
  transports_version_send: [:rest]
391
396
 
397
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
392
398
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
393
399
 
394
400
  options.apply_defaults timeout: @config.rpcs.update_space.timeout,
@@ -462,12 +468,13 @@ module Google
462
468
  # Customize the options with defaults
463
469
  call_metadata = @config.rpcs.end_active_conference.metadata.to_h
464
470
 
465
- # Set x-goog-api-client and x-goog-user-project headers
471
+ # Set x-goog-api-client, x-goog-user-project and x-goog-api-version headers
466
472
  call_metadata[:"x-goog-api-client"] ||= ::Gapic::Headers.x_goog_api_client \
467
473
  lib_name: @config.lib_name, lib_version: @config.lib_version,
468
474
  gapic_version: ::Google::Apps::Meet::V2beta::VERSION,
469
475
  transports_version_send: [:rest]
470
476
 
477
+ call_metadata[:"x-goog-api-version"] = API_VERSION unless API_VERSION.empty?
471
478
  call_metadata[:"x-goog-user-project"] = @quota_project_id if @quota_project_id
472
479
 
473
480
  options.apply_defaults timeout: @config.rpcs.end_active_conference.timeout,
@@ -21,7 +21,7 @@ module Google
21
21
  module Apps
22
22
  module Meet
23
23
  module V2beta
24
- VERSION = "0.2.2"
24
+ VERSION = "0.3.1"
25
25
  end
26
26
  end
27
27
  end
@@ -118,6 +118,10 @@ module Google
118
118
  # @return [::String]
119
119
  # Optional link to proto reference documentation. Example:
120
120
  # https://cloud.google.com/pubsub/lite/docs/reference/rpc
121
+ # @!attribute [rw] rest_reference_documentation_uri
122
+ # @return [::String]
123
+ # Optional link to REST reference documentation. Example:
124
+ # https://cloud.google.com/pubsub/lite/docs/reference/rest
121
125
  class Publishing
122
126
  include ::Google::Protobuf::MessageExts
123
127
  extend ::Google::Protobuf::MessageExts::ClassMethods
@@ -286,6 +290,13 @@ module Google
286
290
  # @return [::String]
287
291
  # The fully qualified name of the method, for which the options below apply.
288
292
  # This is used to find the method to apply the options.
293
+ #
294
+ # Example:
295
+ #
296
+ # publishing:
297
+ # method_settings:
298
+ # - selector: google.storage.control.v2.StorageControl.CreateFolder
299
+ # # method settings for CreateFolder...
289
300
  # @!attribute [rw] long_running
290
301
  # @return [::Google::Api::MethodSettings::LongRunning]
291
302
  # Describes settings to use for long-running operations when generating
@@ -294,17 +305,14 @@ module Google
294
305
  #
295
306
  # Example of a YAML configuration::
296
307
  #
297
- # publishing:
298
- # method_settings:
308
+ # publishing:
309
+ # method_settings:
299
310
  # - selector: google.cloud.speech.v2.Speech.BatchRecognize
300
311
  # long_running:
301
- # initial_poll_delay:
302
- # seconds: 60 # 1 minute
312
+ # initial_poll_delay: 60s # 1 minute
303
313
  # poll_delay_multiplier: 1.5
304
- # max_poll_delay:
305
- # seconds: 360 # 6 minutes
306
- # total_poll_timeout:
307
- # seconds: 54000 # 90 minutes
314
+ # max_poll_delay: 360s # 6 minutes
315
+ # total_poll_timeout: 54000s # 90 minutes
308
316
  # @!attribute [rw] auto_populated_fields
309
317
  # @return [::Array<::String>]
310
318
  # List of top-level fields of the request message, that should be
@@ -313,8 +321,8 @@ module Google
313
321
  #
314
322
  # Example of a YAML configuration:
315
323
  #
316
- # publishing:
317
- # method_settings:
324
+ # publishing:
325
+ # method_settings:
318
326
  # - selector: google.example.v1.ExampleService.CreateExample
319
327
  # auto_populated_fields:
320
328
  # - request_id
@@ -124,8 +124,13 @@ module Google
124
124
  # @return [::String]
125
125
  # The plural name used in the resource name and permission names, such as
126
126
  # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
- # name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
128
- # concept of the `plural` field in k8s CRD spec
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. One exception
128
+ # to this is for Nested Collections that have stuttering names, as defined
129
+ # in [AIP-122](https://google.aip.dev/122#nested-collections), where the
130
+ # collection ID in the resource name pattern does not necessarily directly
131
+ # match the `plural` value.
132
+ #
133
+ # It is the same concept of the `plural` field in k8s CRD spec
129
134
  # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
130
135
  #
131
136
  # Note: The plural form is required even for singleton resources. See
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apps-meet-v2beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.2
4
+ version: 0.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-02-01 00:00:00.000000000 Z
11
+ date: 2024-08-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: gapic-common
@@ -44,118 +44,6 @@ dependencies:
44
44
  - - "~>"
45
45
  - !ruby/object:Gem::Version
46
46
  version: '1.0'
47
- - !ruby/object:Gem::Dependency
48
- name: google-style
49
- requirement: !ruby/object:Gem::Requirement
50
- requirements:
51
- - - "~>"
52
- - !ruby/object:Gem::Version
53
- version: 1.26.3
54
- type: :development
55
- prerelease: false
56
- version_requirements: !ruby/object:Gem::Requirement
57
- requirements:
58
- - - "~>"
59
- - !ruby/object:Gem::Version
60
- version: 1.26.3
61
- - !ruby/object:Gem::Dependency
62
- name: minitest
63
- requirement: !ruby/object:Gem::Requirement
64
- requirements:
65
- - - "~>"
66
- - !ruby/object:Gem::Version
67
- version: '5.16'
68
- type: :development
69
- prerelease: false
70
- version_requirements: !ruby/object:Gem::Requirement
71
- requirements:
72
- - - "~>"
73
- - !ruby/object:Gem::Version
74
- version: '5.16'
75
- - !ruby/object:Gem::Dependency
76
- name: minitest-focus
77
- requirement: !ruby/object:Gem::Requirement
78
- requirements:
79
- - - "~>"
80
- - !ruby/object:Gem::Version
81
- version: '1.1'
82
- type: :development
83
- prerelease: false
84
- version_requirements: !ruby/object:Gem::Requirement
85
- requirements:
86
- - - "~>"
87
- - !ruby/object:Gem::Version
88
- version: '1.1'
89
- - !ruby/object:Gem::Dependency
90
- name: minitest-rg
91
- requirement: !ruby/object:Gem::Requirement
92
- requirements:
93
- - - "~>"
94
- - !ruby/object:Gem::Version
95
- version: '5.2'
96
- type: :development
97
- prerelease: false
98
- version_requirements: !ruby/object:Gem::Requirement
99
- requirements:
100
- - - "~>"
101
- - !ruby/object:Gem::Version
102
- version: '5.2'
103
- - !ruby/object:Gem::Dependency
104
- name: rake
105
- requirement: !ruby/object:Gem::Requirement
106
- requirements:
107
- - - ">="
108
- - !ruby/object:Gem::Version
109
- version: '13.0'
110
- type: :development
111
- prerelease: false
112
- version_requirements: !ruby/object:Gem::Requirement
113
- requirements:
114
- - - ">="
115
- - !ruby/object:Gem::Version
116
- version: '13.0'
117
- - !ruby/object:Gem::Dependency
118
- name: redcarpet
119
- requirement: !ruby/object:Gem::Requirement
120
- requirements:
121
- - - "~>"
122
- - !ruby/object:Gem::Version
123
- version: '3.0'
124
- type: :development
125
- prerelease: false
126
- version_requirements: !ruby/object:Gem::Requirement
127
- requirements:
128
- - - "~>"
129
- - !ruby/object:Gem::Version
130
- version: '3.0'
131
- - !ruby/object:Gem::Dependency
132
- name: simplecov
133
- requirement: !ruby/object:Gem::Requirement
134
- requirements:
135
- - - "~>"
136
- - !ruby/object:Gem::Version
137
- version: '0.18'
138
- type: :development
139
- prerelease: false
140
- version_requirements: !ruby/object:Gem::Requirement
141
- requirements:
142
- - - "~>"
143
- - !ruby/object:Gem::Version
144
- version: '0.18'
145
- - !ruby/object:Gem::Dependency
146
- name: yard
147
- requirement: !ruby/object:Gem::Requirement
148
- requirements:
149
- - - "~>"
150
- - !ruby/object:Gem::Version
151
- version: '0.9'
152
- type: :development
153
- prerelease: false
154
- version_requirements: !ruby/object:Gem::Requirement
155
- requirements:
156
- - - "~>"
157
- - !ruby/object:Gem::Version
158
- version: '0.9'
159
47
  description: Create and manage meetings in Google Meet. Note that google-apps-meet-v2beta
160
48
  is a version-specific client library. For most uses, we recommend installing the
161
49
  main client library google-apps-meet instead. See the readme for more details.
@@ -212,14 +100,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
212
100
  requirements:
213
101
  - - ">="
214
102
  - !ruby/object:Gem::Version
215
- version: '2.6'
103
+ version: '2.7'
216
104
  required_rubygems_version: !ruby/object:Gem::Requirement
217
105
  requirements:
218
106
  - - ">="
219
107
  - !ruby/object:Gem::Version
220
108
  version: '0'
221
109
  requirements: []
222
- rubygems_version: 3.5.3
110
+ rubygems_version: 3.5.6
223
111
  signing_key:
224
112
  specification_version: 4
225
113
  summary: Create and manage meetings in Google Meet.