google-apps-meet-v2beta 0.4.0 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/google/apps/meet/v2beta/conference_records_service/client.rb +32 -25
- data/lib/google/apps/meet/v2beta/conference_records_service/credentials.rb +4 -0
- data/lib/google/apps/meet/v2beta/conference_records_service/rest/client.rb +32 -25
- data/lib/google/apps/meet/v2beta/resource_pb.rb +13 -1
- data/lib/google/apps/meet/v2beta/service_pb.rb +6 -1
- data/lib/google/apps/meet/v2beta/service_services_pb.rb +48 -25
- data/lib/google/apps/meet/v2beta/spaces_service/client.rb +459 -9
- data/lib/google/apps/meet/v2beta/spaces_service/credentials.rb +5 -0
- data/lib/google/apps/meet/v2beta/spaces_service/paths.rb +17 -0
- data/lib/google/apps/meet/v2beta/spaces_service/rest/client.rb +431 -9
- data/lib/google/apps/meet/v2beta/spaces_service/rest/service_stub.rb +245 -0
- data/lib/google/apps/meet/v2beta/version.rb +1 -1
- data/proto_docs/google/apps/meet/v2beta/resource.rb +243 -37
- data/proto_docs/google/apps/meet/v2beta/service.rb +111 -13
- metadata +6 -9
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d4e1fd4497630774c182a916d76b249b113e438dffaa296bfbc23a1742a7612f
|
4
|
+
data.tar.gz: a99423b3da8ad1861d3e831eff7f2587f25eaa7fada359117f0308dbd96e7637
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e96180eb0e0380a33cfecd8e55f391113c1afa6e867df09828d4a5c0648b548b04434cd9524318c0ac825a30ad23f0f4bc3456cbd545b77af55577c219e8f22
|
7
|
+
data.tar.gz: 6ba6e16b2b2f2afbd80bd27b64f2a8a17a2d4441ab44d11436556b01833934614d1dd6235b6175b4ec0319a8102e5781d1ebfd96bb46f61d1e5d37f66b8b05b5
|
data/README.md
CHANGED
@@ -85,7 +85,7 @@ To browse ready to use code samples check [Google Cloud Samples](https://cloud.g
|
|
85
85
|
|
86
86
|
## Supported Ruby Versions
|
87
87
|
|
88
|
-
This library is supported on Ruby
|
88
|
+
This library is supported on Ruby 3.0+.
|
89
89
|
|
90
90
|
Google provides official support for Ruby versions that are actively supported
|
91
91
|
by Ruby Core—that is, Ruby versions that are either in normal maintenance or
|
@@ -244,7 +244,6 @@ module Google
|
|
244
244
|
# Service calls
|
245
245
|
|
246
246
|
##
|
247
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
248
247
|
# Gets a conference record by conference ID.
|
249
248
|
#
|
250
249
|
# @overload get_conference_record(request, options = nil)
|
@@ -330,8 +329,8 @@ module Google
|
|
330
329
|
end
|
331
330
|
|
332
331
|
##
|
333
|
-
#
|
334
|
-
#
|
332
|
+
# Lists the conference records. By default, ordered by start time and in
|
333
|
+
# descending order.
|
335
334
|
#
|
336
335
|
# @overload list_conference_records(request, options = nil)
|
337
336
|
# Pass arguments to `list_conference_records` via a request object, either of type
|
@@ -356,15 +355,22 @@ module Google
|
|
356
355
|
# @param page_token [::String]
|
357
356
|
# Optional. Page token returned from previous List Call.
|
358
357
|
# @param filter [::String]
|
359
|
-
# Optional. User specified filtering condition in EBNF
|
360
|
-
#
|
358
|
+
# Optional. User specified filtering condition in [EBNF
|
359
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
360
|
+
# The following are the filterable fields:
|
361
361
|
#
|
362
362
|
# * `space.meeting_code`
|
363
363
|
# * `space.name`
|
364
364
|
# * `start_time`
|
365
365
|
# * `end_time`
|
366
366
|
#
|
367
|
-
# For example,
|
367
|
+
# For example, consider the following filters:
|
368
|
+
#
|
369
|
+
# * `space.name = "spaces/NAME"`
|
370
|
+
# * `space.meeting_code = "abc-mnop-xyz"`
|
371
|
+
# * `start_time>="2024-01-01T00:00:00.000Z" AND
|
372
|
+
# start_time<="2024-01-02T00:00:00.000Z"`
|
373
|
+
# * `end_time IS NULL`
|
368
374
|
#
|
369
375
|
# @yield [response, operation] Access the result along with the RPC operation
|
370
376
|
# @yieldparam response [::Gapic::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>]
|
@@ -429,7 +435,6 @@ module Google
|
|
429
435
|
end
|
430
436
|
|
431
437
|
##
|
432
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
433
438
|
# Gets a participant by participant ID.
|
434
439
|
#
|
435
440
|
# @overload get_participant(request, options = nil)
|
@@ -515,8 +520,7 @@ module Google
|
|
515
520
|
end
|
516
521
|
|
517
522
|
##
|
518
|
-
#
|
519
|
-
# Lists the participants in a conference record, by default ordered by join
|
523
|
+
# Lists the participants in a conference record. By default, ordered by join
|
520
524
|
# time and in descending order. This API supports `fields` as standard
|
521
525
|
# parameters like every other API. However, when the `fields` request
|
522
526
|
# parameter is omitted, this API defaults to `'participants/*,
|
@@ -548,8 +552,9 @@ module Google
|
|
548
552
|
# @param page_token [::String]
|
549
553
|
# Page token returned from previous List Call.
|
550
554
|
# @param filter [::String]
|
551
|
-
# Optional. User specified filtering condition in EBNF
|
552
|
-
#
|
555
|
+
# Optional. User specified filtering condition in [EBNF
|
556
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
557
|
+
# The following are the filterable fields:
|
553
558
|
#
|
554
559
|
# * `earliest_start_time`
|
555
560
|
# * `latest_end_time`
|
@@ -628,7 +633,6 @@ module Google
|
|
628
633
|
end
|
629
634
|
|
630
635
|
##
|
631
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
632
636
|
# Gets a participant session by participant session ID.
|
633
637
|
#
|
634
638
|
# @overload get_participant_session(request, options = nil)
|
@@ -714,9 +718,8 @@ module Google
|
|
714
718
|
end
|
715
719
|
|
716
720
|
##
|
717
|
-
#
|
718
|
-
#
|
719
|
-
# default ordered by join time and in descending order. This API supports
|
721
|
+
# Lists the participant sessions of a participant in a conference record. By
|
722
|
+
# default, ordered by join time and in descending order. This API supports
|
720
723
|
# `fields` as standard parameters like every other API. However, when the
|
721
724
|
# `fields` request parameter is omitted this API defaults to
|
722
725
|
# `'participantsessions/*, next_page_token'`.
|
@@ -747,8 +750,9 @@ module Google
|
|
747
750
|
# @param page_token [::String]
|
748
751
|
# Optional. Page token returned from previous List Call.
|
749
752
|
# @param filter [::String]
|
750
|
-
# Optional. User specified filtering condition in EBNF
|
751
|
-
#
|
753
|
+
# Optional. User specified filtering condition in [EBNF
|
754
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
755
|
+
# The following are the filterable fields:
|
752
756
|
#
|
753
757
|
# * `start_time`
|
754
758
|
# * `end_time`
|
@@ -827,7 +831,6 @@ module Google
|
|
827
831
|
end
|
828
832
|
|
829
833
|
##
|
830
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
831
834
|
# Gets a recording by recording ID.
|
832
835
|
#
|
833
836
|
# @overload get_recording(request, options = nil)
|
@@ -913,8 +916,8 @@ module Google
|
|
913
916
|
end
|
914
917
|
|
915
918
|
##
|
916
|
-
#
|
917
|
-
#
|
919
|
+
# Lists the recording resources from the conference record. By default,
|
920
|
+
# ordered by start time and in ascending order.
|
918
921
|
#
|
919
922
|
# @overload list_recordings(request, options = nil)
|
920
923
|
# Pass arguments to `list_recordings` via a request object, either of type
|
@@ -1013,7 +1016,6 @@ module Google
|
|
1013
1016
|
end
|
1014
1017
|
|
1015
1018
|
##
|
1016
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
1017
1019
|
# Gets a transcript by transcript ID.
|
1018
1020
|
#
|
1019
1021
|
# @overload get_transcript(request, options = nil)
|
@@ -1099,8 +1101,8 @@ module Google
|
|
1099
1101
|
end
|
1100
1102
|
|
1101
1103
|
##
|
1102
|
-
#
|
1103
|
-
#
|
1104
|
+
# Lists the set of transcripts from the conference record. By default,
|
1105
|
+
# ordered by start time and in ascending order.
|
1104
1106
|
#
|
1105
1107
|
# @overload list_transcripts(request, options = nil)
|
1106
1108
|
# Pass arguments to `list_transcripts` via a request object, either of type
|
@@ -1199,7 +1201,6 @@ module Google
|
|
1199
1201
|
end
|
1200
1202
|
|
1201
1203
|
##
|
1202
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
1203
1204
|
# Gets a `TranscriptEntry` resource by entry ID.
|
1204
1205
|
#
|
1205
1206
|
# Note: The transcript entries returned by the Google Meet API might not
|
@@ -1289,7 +1290,6 @@ module Google
|
|
1289
1290
|
end
|
1290
1291
|
|
1291
1292
|
##
|
1292
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
1293
1293
|
# Lists the structured transcript entries per transcript. By default, ordered
|
1294
1294
|
# by start time and in ascending order.
|
1295
1295
|
#
|
@@ -1438,6 +1438,13 @@ module Google
|
|
1438
1438
|
# * (`GRPC::Core::Channel`) a gRPC channel with included credentials
|
1439
1439
|
# * (`GRPC::Core::ChannelCredentials`) a gRPC credentails object
|
1440
1440
|
# * (`nil`) indicating no credentials
|
1441
|
+
#
|
1442
|
+
# Warning: If you accept a credential configuration (JSON file or Hash) from an
|
1443
|
+
# external source for authentication to Google Cloud, you must validate it before
|
1444
|
+
# providing it to a Google API client library. Providing an unvalidated credential
|
1445
|
+
# configuration to Google APIs can compromise the security of your systems and data.
|
1446
|
+
# For more information, refer to [Validate credential configurations from external
|
1447
|
+
# sources](https://cloud.google.com/docs/authentication/external/externally-sourced-credentials).
|
1441
1448
|
# @return [::Object]
|
1442
1449
|
# @!attribute [rw] scope
|
1443
1450
|
# The OAuth scopes
|
@@ -25,6 +25,10 @@ module Google
|
|
25
25
|
module ConferenceRecordsService
|
26
26
|
# Credentials for the ConferenceRecordsService API.
|
27
27
|
class Credentials < ::Google::Auth::Credentials
|
28
|
+
self.scope = [
|
29
|
+
"https://www.googleapis.com/auth/meetings.space.created",
|
30
|
+
"https://www.googleapis.com/auth/meetings.space.readonly"
|
31
|
+
]
|
28
32
|
self.env_vars = [
|
29
33
|
"GOOGLE_CLOUD_CREDENTIALS",
|
30
34
|
"GOOGLE_CLOUD_KEYFILE",
|
@@ -237,7 +237,6 @@ module Google
|
|
237
237
|
# Service calls
|
238
238
|
|
239
239
|
##
|
240
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
241
240
|
# Gets a conference record by conference ID.
|
242
241
|
#
|
243
242
|
# @overload get_conference_record(request, options = nil)
|
@@ -316,8 +315,8 @@ module Google
|
|
316
315
|
end
|
317
316
|
|
318
317
|
##
|
319
|
-
#
|
320
|
-
#
|
318
|
+
# Lists the conference records. By default, ordered by start time and in
|
319
|
+
# descending order.
|
321
320
|
#
|
322
321
|
# @overload list_conference_records(request, options = nil)
|
323
322
|
# Pass arguments to `list_conference_records` via a request object, either of type
|
@@ -342,15 +341,22 @@ module Google
|
|
342
341
|
# @param page_token [::String]
|
343
342
|
# Optional. Page token returned from previous List Call.
|
344
343
|
# @param filter [::String]
|
345
|
-
# Optional. User specified filtering condition in EBNF
|
346
|
-
#
|
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:
|
347
347
|
#
|
348
348
|
# * `space.meeting_code`
|
349
349
|
# * `space.name`
|
350
350
|
# * `start_time`
|
351
351
|
# * `end_time`
|
352
352
|
#
|
353
|
-
# For example,
|
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`
|
354
360
|
# @yield [result, operation] Access the result along with the TransportOperation object
|
355
361
|
# @yieldparam result [::Gapic::Rest::PagedEnumerable<::Google::Apps::Meet::V2beta::ConferenceRecord>]
|
356
362
|
# @yieldparam operation [::Gapic::Rest::TransportOperation]
|
@@ -416,7 +422,6 @@ module Google
|
|
416
422
|
end
|
417
423
|
|
418
424
|
##
|
419
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
420
425
|
# Gets a participant by participant ID.
|
421
426
|
#
|
422
427
|
# @overload get_participant(request, options = nil)
|
@@ -495,8 +500,7 @@ module Google
|
|
495
500
|
end
|
496
501
|
|
497
502
|
##
|
498
|
-
#
|
499
|
-
# 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
|
500
504
|
# time and in descending order. This API supports `fields` as standard
|
501
505
|
# parameters like every other API. However, when the `fields` request
|
502
506
|
# parameter is omitted, this API defaults to `'participants/*,
|
@@ -528,8 +532,9 @@ module Google
|
|
528
532
|
# @param page_token [::String]
|
529
533
|
# Page token returned from previous List Call.
|
530
534
|
# @param filter [::String]
|
531
|
-
# Optional. User specified filtering condition in EBNF
|
532
|
-
#
|
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:
|
533
538
|
#
|
534
539
|
# * `earliest_start_time`
|
535
540
|
# * `latest_end_time`
|
@@ -601,7 +606,6 @@ module Google
|
|
601
606
|
end
|
602
607
|
|
603
608
|
##
|
604
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
605
609
|
# Gets a participant session by participant session ID.
|
606
610
|
#
|
607
611
|
# @overload get_participant_session(request, options = nil)
|
@@ -680,9 +684,8 @@ module Google
|
|
680
684
|
end
|
681
685
|
|
682
686
|
##
|
683
|
-
#
|
684
|
-
#
|
685
|
-
# 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
|
686
689
|
# `fields` as standard parameters like every other API. However, when the
|
687
690
|
# `fields` request parameter is omitted this API defaults to
|
688
691
|
# `'participantsessions/*, next_page_token'`.
|
@@ -713,8 +716,9 @@ module Google
|
|
713
716
|
# @param page_token [::String]
|
714
717
|
# Optional. Page token returned from previous List Call.
|
715
718
|
# @param filter [::String]
|
716
|
-
# Optional. User specified filtering condition in EBNF
|
717
|
-
#
|
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:
|
718
722
|
#
|
719
723
|
# * `start_time`
|
720
724
|
# * `end_time`
|
@@ -786,7 +790,6 @@ module Google
|
|
786
790
|
end
|
787
791
|
|
788
792
|
##
|
789
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
790
793
|
# Gets a recording by recording ID.
|
791
794
|
#
|
792
795
|
# @overload get_recording(request, options = nil)
|
@@ -865,8 +868,8 @@ module Google
|
|
865
868
|
end
|
866
869
|
|
867
870
|
##
|
868
|
-
#
|
869
|
-
#
|
871
|
+
# Lists the recording resources from the conference record. By default,
|
872
|
+
# ordered by start time and in ascending order.
|
870
873
|
#
|
871
874
|
# @overload list_recordings(request, options = nil)
|
872
875
|
# Pass arguments to `list_recordings` via a request object, either of type
|
@@ -958,7 +961,6 @@ module Google
|
|
958
961
|
end
|
959
962
|
|
960
963
|
##
|
961
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
962
964
|
# Gets a transcript by transcript ID.
|
963
965
|
#
|
964
966
|
# @overload get_transcript(request, options = nil)
|
@@ -1037,8 +1039,8 @@ module Google
|
|
1037
1039
|
end
|
1038
1040
|
|
1039
1041
|
##
|
1040
|
-
#
|
1041
|
-
#
|
1042
|
+
# Lists the set of transcripts from the conference record. By default,
|
1043
|
+
# ordered by start time and in ascending order.
|
1042
1044
|
#
|
1043
1045
|
# @overload list_transcripts(request, options = nil)
|
1044
1046
|
# Pass arguments to `list_transcripts` via a request object, either of type
|
@@ -1130,7 +1132,6 @@ module Google
|
|
1130
1132
|
end
|
1131
1133
|
|
1132
1134
|
##
|
1133
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
1134
1135
|
# Gets a `TranscriptEntry` resource by entry ID.
|
1135
1136
|
#
|
1136
1137
|
# Note: The transcript entries returned by the Google Meet API might not
|
@@ -1213,7 +1214,6 @@ module Google
|
|
1213
1214
|
end
|
1214
1215
|
|
1215
1216
|
##
|
1216
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
1217
1217
|
# Lists the structured transcript entries per transcript. By default, ordered
|
1218
1218
|
# by start time and in ascending order.
|
1219
1219
|
#
|
@@ -1353,6 +1353,13 @@ module Google
|
|
1353
1353
|
# * (`Signet::OAuth2::Client`) A signet oauth2 client object
|
1354
1354
|
# (see the [signet docs](https://rubydoc.info/gems/signet/Signet/OAuth2/Client))
|
1355
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).
|
1356
1363
|
# @return [::Object]
|
1357
1364
|
# @!attribute [rw] scope
|
1358
1365
|
# The OAuth scopes
|
@@ -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\"\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\"\
|
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\"\xfb\x11\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\x12\x43\n\nmoderation\x18\x03 \x01(\x0e\x32/.google.apps.meet.v2beta.SpaceConfig.Moderation\x12\\\n\x17moderation_restrictions\x18\x04 \x01(\x0b\x32;.google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions\x12n\n!attendance_report_generation_type\x18\x06 \x01(\x0e\x32\x43.google.apps.meet.v2beta.SpaceConfig.AttendanceReportGenerationType\x12L\n\x0f\x61rtifact_config\x18\x07 \x01(\x0b\x32\x33.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig\x1a\x80\x05\n\x16ModerationRestrictions\x12\x65\n\x10\x63hat_restriction\x18\x01 \x01(\x0e\x32K.google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.RestrictionType\x12i\n\x14reaction_restriction\x18\x02 \x01(\x0e\x32K.google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.RestrictionType\x12h\n\x13present_restriction\x18\x03 \x01(\x0e\x32K.google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.RestrictionType\x12x\n\x1b\x64\x65\x66\x61ult_join_as_viewer_type\x18\x04 \x01(\x0e\x32S.google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.DefaultJoinAsViewerType\"W\n\x0fRestrictionType\x12 \n\x1cRESTRICTION_TYPE_UNSPECIFIED\x10\x00\x12\x0e\n\nHOSTS_ONLY\x10\x01\x12\x12\n\x0eNO_RESTRICTION\x10\x02\"W\n\x17\x44\x65\x66\x61ultJoinAsViewerType\x12+\n\'DEFAULT_JOIN_AS_VIEWER_TYPE_UNSPECIFIED\x10\x00\x12\x06\n\x02ON\x10\x01\x12\x07\n\x03OFF\x10\x02\x1a\x8b\x06\n\x0e\x41rtifactConfig\x12]\n\x10recording_config\x18\x01 \x01(\x0b\x32\x43.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.RecordingConfig\x12\x65\n\x14transcription_config\x18\x02 \x01(\x0b\x32G.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.TranscriptionConfig\x12`\n\x12smart_notes_config\x18\x03 \x01(\x0b\x32\x44.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.SmartNotesConfig\x1a|\n\x0fRecordingConfig\x12i\n\x19\x61uto_recording_generation\x18\x02 \x01(\x0e\x32\x46.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.AutoGenerationType\x1a\x84\x01\n\x13TranscriptionConfig\x12m\n\x1d\x61uto_transcription_generation\x18\x02 \x01(\x0e\x32\x46.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.AutoGenerationType\x1a\x7f\n\x10SmartNotesConfig\x12k\n\x1b\x61uto_smart_notes_generation\x18\x02 \x01(\x0e\x32\x46.google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.AutoGenerationType\"K\n\x12\x41utoGenerationType\x12$\n AUTO_GENERATION_TYPE_UNSPECIFIED\x10\x00\x12\x06\n\x02ON\x10\x01\x12\x07\n\x03OFF\x10\x02\"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\"9\n\nModeration\x12\x1a\n\x16MODERATION_UNSPECIFIED\x10\x00\x12\x07\n\x03OFF\x10\x01\x12\x06\n\x02ON\x10\x02\"}\n\x1e\x41ttendanceReportGenerationType\x12\x31\n-ATTENDANCE_REPORT_GENERATION_TYPE_UNSPECIFIED\x10\x00\x12\x13\n\x0fGENERATE_REPORT\x10\x01\x12\x13\n\x0f\x44O_NOT_GENERATE\x10\x02\"\xe9\x01\n\x06Member\x12\x11\n\x04name\x18\x01 \x01(\tB\x03\xe0\x41\x08\x12\r\n\x05\x65mail\x18\x02 \x01(\t\x12\x32\n\x04role\x18\x03 \x01(\x0e\x32$.google.apps.meet.v2beta.Member.Role\x12\x0c\n\x04user\x18\x04 \x01(\t\"(\n\x04Role\x12\x14\n\x10ROLE_UNSPECIFIED\x10\x00\x12\n\n\x06\x43OHOST\x10\x01:Q\xea\x41N\n\x1ameet.googleapis.com/Member\x12\x1fspaces/{space}/members/{member}*\x07members2\x06member\"\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
|
|
@@ -43,8 +43,20 @@ module Google
|
|
43
43
|
Space = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.Space").msgclass
|
44
44
|
ActiveConference = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ActiveConference").msgclass
|
45
45
|
SpaceConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig").msgclass
|
46
|
+
SpaceConfig::ModerationRestrictions = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions").msgclass
|
47
|
+
SpaceConfig::ModerationRestrictions::RestrictionType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.RestrictionType").enummodule
|
48
|
+
SpaceConfig::ModerationRestrictions::DefaultJoinAsViewerType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ModerationRestrictions.DefaultJoinAsViewerType").enummodule
|
49
|
+
SpaceConfig::ArtifactConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ArtifactConfig").msgclass
|
50
|
+
SpaceConfig::ArtifactConfig::RecordingConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.RecordingConfig").msgclass
|
51
|
+
SpaceConfig::ArtifactConfig::TranscriptionConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.TranscriptionConfig").msgclass
|
52
|
+
SpaceConfig::ArtifactConfig::SmartNotesConfig = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.SmartNotesConfig").msgclass
|
53
|
+
SpaceConfig::ArtifactConfig::AutoGenerationType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.ArtifactConfig.AutoGenerationType").enummodule
|
46
54
|
SpaceConfig::AccessType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.AccessType").enummodule
|
47
55
|
SpaceConfig::EntryPointAccess = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.EntryPointAccess").enummodule
|
56
|
+
SpaceConfig::Moderation = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.Moderation").enummodule
|
57
|
+
SpaceConfig::AttendanceReportGenerationType = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.SpaceConfig.AttendanceReportGenerationType").enummodule
|
58
|
+
Member = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.Member").msgclass
|
59
|
+
Member::Role = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.Member.Role").enummodule
|
48
60
|
ConferenceRecord = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ConferenceRecord").msgclass
|
49
61
|
Participant = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.Participant").msgclass
|
50
62
|
ParticipantSession = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ParticipantSession").msgclass
|
@@ -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\"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"
|
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\"\x7f\n\x13\x43reateMemberRequest\x12\x32\n\x06parent\x18\x01 \x01(\tB\"\xe0\x41\x02\xfa\x41\x1c\x12\x1ameet.googleapis.com/Member\x12\x34\n\x06member\x18\x02 \x01(\x0b\x32\x1f.google.apps.meet.v2beta.MemberB\x03\xe0\x41\x02\"D\n\x10GetMemberRequest\x12\x30\n\x04name\x18\x01 \x01(\tB\"\xe0\x41\x02\xfa\x41\x1c\n\x1ameet.googleapis.com/Member\"y\n\x12ListMembersRequest\x12\x32\n\x06parent\x18\x01 \x01(\tB\"\xe0\x41\x02\xfa\x41\x1c\x12\x1ameet.googleapis.com/Member\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\"`\n\x13ListMembersResponse\x12\x30\n\x07members\x18\x01 \x03(\x0b\x32\x1f.google.apps.meet.v2beta.Member\x12\x17\n\x0fnext_page_token\x18\x02 \x01(\t\"G\n\x13\x44\x65leteMemberRequest\x12\x30\n\x04name\x18\x01 \x01(\tB\"\xe0\x41\x02\xfa\x41\x1c\n\x1ameet.googleapis.com/Member\"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\xee\n\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*\x12\xa0\x01\n\x0c\x43reateMember\x12,.google.apps.meet.v2beta.CreateMemberRequest\x1a\x1f.google.apps.meet.v2beta.Member\"A\xda\x41\rparent,member\x82\xd3\xe4\x93\x02+\"!/v2beta/{parent=spaces/*}/members:\x06member\x12\x89\x01\n\tGetMember\x12).google.apps.meet.v2beta.GetMemberRequest\x1a\x1f.google.apps.meet.v2beta.Member\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#\x12!/v2beta/{name=spaces/*/members/*}\x12\x9c\x01\n\x0bListMembers\x12+.google.apps.meet.v2beta.ListMembersRequest\x1a,.google.apps.meet.v2beta.ListMembersResponse\"2\xda\x41\x06parent\x82\xd3\xe4\x93\x02#\x12!/v2beta/{parent=spaces/*}/members\x12\x86\x01\n\x0c\x44\x65leteMember\x12,.google.apps.meet.v2beta.DeleteMemberRequest\x1a\x16.google.protobuf.Empty\"0\xda\x41\x04name\x82\xd3\xe4\x93\x02#*!/v2beta/{name=spaces/*/members/*}\x1a\xc0\x01\xca\x41\x13meet.googleapis.com\xd2\x41\xa6\x01https://www.googleapis.com/auth/meetings.space.created,https://www.googleapis.com/auth/meetings.space.readonly,https://www.googleapis.com/auth/meetings.space.settings2\xf3\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\x87\x01\xca\x41\x13meet.googleapis.com\xd2\x41nhttps://www.googleapis.com/auth/meetings.space.created,https://www.googleapis.com/auth/meetings.space.readonlyB\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
|
|
@@ -49,6 +49,11 @@ module Google
|
|
49
49
|
GetSpaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.GetSpaceRequest").msgclass
|
50
50
|
UpdateSpaceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.UpdateSpaceRequest").msgclass
|
51
51
|
EndActiveConferenceRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.EndActiveConferenceRequest").msgclass
|
52
|
+
CreateMemberRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.CreateMemberRequest").msgclass
|
53
|
+
GetMemberRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.GetMemberRequest").msgclass
|
54
|
+
ListMembersRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ListMembersRequest").msgclass
|
55
|
+
ListMembersResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ListMembersResponse").msgclass
|
56
|
+
DeleteMemberRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.DeleteMemberRequest").msgclass
|
52
57
|
GetConferenceRecordRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.GetConferenceRecordRequest").msgclass
|
53
58
|
ListConferenceRecordsRequest = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ListConferenceRecordsRequest").msgclass
|
54
59
|
ListConferenceRecordsResponse = ::Google::Protobuf::DescriptorPool.generated_pool.lookup("google.apps.meet.v2beta.ListConferenceRecordsResponse").msgclass
|