google-apis-meet_v2 0.6.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/meet_v2/classes.rb +162 -2
- data/lib/google/apis/meet_v2/gem_version.rb +2 -2
- data/lib/google/apis/meet_v2/representations.rb +79 -0
- data/lib/google/apis/meet_v2/service.rb +13 -13
- data/lib/google/apis/meet_v2.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: '009e6c39444b03939a92df723dc5d1968744b563d48c962f114a1e0543e96150'
|
|
4
|
+
data.tar.gz: 906ed72705cc65cc2b7545468ebf0e1b5975717d22376e9b61e48d816dcc8606
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cd157879dae94ed8f989145a3a6d5ffac67086f54d87371a9a94523c4765cb2a21d4b653bf078e26357b7e5849c5100baf5bfe4fb77be8ab77046b8bc090051d
|
|
7
|
+
data.tar.gz: b4c466fcd2d9b84a05d19c0318441c3dd5e54597c98784dc240266e3ab710d854ad6b1d7b3641f6c3293b809a3483be7e5c19c5c004f9b6813bb01e8b74e20ca
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Release history for google-apis-meet_v2
|
|
2
2
|
|
|
3
|
+
### v0.9.0 (2025-04-27)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20250421
|
|
6
|
+
|
|
7
|
+
### v0.8.0 (2025-04-20)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250415
|
|
10
|
+
|
|
11
|
+
### v0.7.0 (2025-04-13)
|
|
12
|
+
|
|
13
|
+
* Regenerated from discovery document revision 20250406
|
|
14
|
+
|
|
3
15
|
### v0.6.0 (2025-03-30)
|
|
4
16
|
|
|
5
17
|
* Regenerated from discovery document revision 20250320
|
data/OVERVIEW.md
CHANGED
|
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
|
79
79
|
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
|
81
81
|
|
|
82
|
-
The [product documentation](https://developers.google.com/meet/api) may provide guidance regarding the preferred client library to use.
|
|
82
|
+
The [product documentation](https://developers.google.com/workspace/meet/api) may provide guidance regarding the preferred client library to use.
|
|
83
83
|
|
|
84
84
|
## Supported Ruby versions
|
|
85
85
|
|
|
@@ -62,6 +62,40 @@ module Google
|
|
|
62
62
|
end
|
|
63
63
|
end
|
|
64
64
|
|
|
65
|
+
# Configuration related to meeting artifacts potentially generated by this
|
|
66
|
+
# meeting space.
|
|
67
|
+
class ArtifactConfig
|
|
68
|
+
include Google::Apis::Core::Hashable
|
|
69
|
+
|
|
70
|
+
# Configuration related to recording in a meeting space.
|
|
71
|
+
# Corresponds to the JSON property `recordingConfig`
|
|
72
|
+
# @return [Google::Apis::MeetV2::RecordingConfig]
|
|
73
|
+
attr_accessor :recording_config
|
|
74
|
+
|
|
75
|
+
# Configuration related to smart notes in a meeting space. For more information
|
|
76
|
+
# about smart notes, see ["Take notes for me" in Google Meet](https://support.
|
|
77
|
+
# google.com/meet/answer/14754931).
|
|
78
|
+
# Corresponds to the JSON property `smartNotesConfig`
|
|
79
|
+
# @return [Google::Apis::MeetV2::SmartNotesConfig]
|
|
80
|
+
attr_accessor :smart_notes_config
|
|
81
|
+
|
|
82
|
+
# Configuration related to transcription in a meeting space.
|
|
83
|
+
# Corresponds to the JSON property `transcriptionConfig`
|
|
84
|
+
# @return [Google::Apis::MeetV2::TranscriptionConfig]
|
|
85
|
+
attr_accessor :transcription_config
|
|
86
|
+
|
|
87
|
+
def initialize(**args)
|
|
88
|
+
update!(**args)
|
|
89
|
+
end
|
|
90
|
+
|
|
91
|
+
# Update properties of this object
|
|
92
|
+
def update!(**args)
|
|
93
|
+
@recording_config = args[:recording_config] if args.key?(:recording_config)
|
|
94
|
+
@smart_notes_config = args[:smart_notes_config] if args.key?(:smart_notes_config)
|
|
95
|
+
@transcription_config = args[:transcription_config] if args.key?(:transcription_config)
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
|
|
65
99
|
# Single instance of a meeting held in a space.
|
|
66
100
|
class ConferenceRecord
|
|
67
101
|
include Google::Apis::Core::Hashable
|
|
@@ -360,6 +394,43 @@ module Google
|
|
|
360
394
|
end
|
|
361
395
|
end
|
|
362
396
|
|
|
397
|
+
# Defines restrictions for features when the meeting is moderated.
|
|
398
|
+
class ModerationRestrictions
|
|
399
|
+
include Google::Apis::Core::Hashable
|
|
400
|
+
|
|
401
|
+
# Defines who has permission to send chat messages in the meeting space.
|
|
402
|
+
# Corresponds to the JSON property `chatRestriction`
|
|
403
|
+
# @return [String]
|
|
404
|
+
attr_accessor :chat_restriction
|
|
405
|
+
|
|
406
|
+
# Defines whether to restrict the default role assigned to users as viewer.
|
|
407
|
+
# Corresponds to the JSON property `defaultJoinAsViewerType`
|
|
408
|
+
# @return [String]
|
|
409
|
+
attr_accessor :default_join_as_viewer_type
|
|
410
|
+
|
|
411
|
+
# Defines who has permission to share their screen in the meeting space.
|
|
412
|
+
# Corresponds to the JSON property `presentRestriction`
|
|
413
|
+
# @return [String]
|
|
414
|
+
attr_accessor :present_restriction
|
|
415
|
+
|
|
416
|
+
# Defines who has permission to send reactions in the meeting space.
|
|
417
|
+
# Corresponds to the JSON property `reactionRestriction`
|
|
418
|
+
# @return [String]
|
|
419
|
+
attr_accessor :reaction_restriction
|
|
420
|
+
|
|
421
|
+
def initialize(**args)
|
|
422
|
+
update!(**args)
|
|
423
|
+
end
|
|
424
|
+
|
|
425
|
+
# Update properties of this object
|
|
426
|
+
def update!(**args)
|
|
427
|
+
@chat_restriction = args[:chat_restriction] if args.key?(:chat_restriction)
|
|
428
|
+
@default_join_as_viewer_type = args[:default_join_as_viewer_type] if args.key?(:default_join_as_viewer_type)
|
|
429
|
+
@present_restriction = args[:present_restriction] if args.key?(:present_restriction)
|
|
430
|
+
@reaction_restriction = args[:reaction_restriction] if args.key?(:reaction_restriction)
|
|
431
|
+
end
|
|
432
|
+
end
|
|
433
|
+
|
|
363
434
|
# User who attended or is attending a conference.
|
|
364
435
|
class Participant
|
|
365
436
|
include Google::Apis::Core::Hashable
|
|
@@ -515,6 +586,26 @@ module Google
|
|
|
515
586
|
end
|
|
516
587
|
end
|
|
517
588
|
|
|
589
|
+
# Configuration related to recording in a meeting space.
|
|
590
|
+
class RecordingConfig
|
|
591
|
+
include Google::Apis::Core::Hashable
|
|
592
|
+
|
|
593
|
+
# Defines whether a meeting space is automatically recorded when someone with
|
|
594
|
+
# the privilege to record joins the meeting.
|
|
595
|
+
# Corresponds to the JSON property `autoRecordingGeneration`
|
|
596
|
+
# @return [String]
|
|
597
|
+
attr_accessor :auto_recording_generation
|
|
598
|
+
|
|
599
|
+
def initialize(**args)
|
|
600
|
+
update!(**args)
|
|
601
|
+
end
|
|
602
|
+
|
|
603
|
+
# Update properties of this object
|
|
604
|
+
def update!(**args)
|
|
605
|
+
@auto_recording_generation = args[:auto_recording_generation] if args.key?(:auto_recording_generation)
|
|
606
|
+
end
|
|
607
|
+
end
|
|
608
|
+
|
|
518
609
|
# A signed-in user can be: a) An individual joining from a personal computer,
|
|
519
610
|
# mobile device, or through companion mode. b) A robot account used by
|
|
520
611
|
# conference room devices.
|
|
@@ -545,6 +636,29 @@ module Google
|
|
|
545
636
|
end
|
|
546
637
|
end
|
|
547
638
|
|
|
639
|
+
# Configuration related to smart notes in a meeting space. For more information
|
|
640
|
+
# about smart notes, see ["Take notes for me" in Google Meet](https://support.
|
|
641
|
+
# google.com/meet/answer/14754931).
|
|
642
|
+
class SmartNotesConfig
|
|
643
|
+
include Google::Apis::Core::Hashable
|
|
644
|
+
|
|
645
|
+
# Defines whether to automatically generate a summary and recap of the meeting
|
|
646
|
+
# for all invitees in the organization when someone with the privilege to enable
|
|
647
|
+
# smart notes joins the meeting.
|
|
648
|
+
# Corresponds to the JSON property `autoSmartNotesGeneration`
|
|
649
|
+
# @return [String]
|
|
650
|
+
attr_accessor :auto_smart_notes_generation
|
|
651
|
+
|
|
652
|
+
def initialize(**args)
|
|
653
|
+
update!(**args)
|
|
654
|
+
end
|
|
655
|
+
|
|
656
|
+
# Update properties of this object
|
|
657
|
+
def update!(**args)
|
|
658
|
+
@auto_smart_notes_generation = args[:auto_smart_notes_generation] if args.key?(:auto_smart_notes_generation)
|
|
659
|
+
end
|
|
660
|
+
end
|
|
661
|
+
|
|
548
662
|
# Virtual place where conferences are held. Only one active conference can be
|
|
549
663
|
# held in one space at any given time.
|
|
550
664
|
class Space
|
|
@@ -577,8 +691,8 @@ module Google
|
|
|
577
691
|
# Immutable. Resource name of the space. Format: `spaces/`space``. ``space`` is
|
|
578
692
|
# the resource identifier for the space. It's a unique, server-generated ID and
|
|
579
693
|
# is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
|
|
580
|
-
# Meet identifies a meeting space](https://developers.google.com/meet/
|
|
581
|
-
# meeting-spaces#identify-meeting-space).
|
|
694
|
+
# Meet identifies a meeting space](https://developers.google.com/workspace/meet/
|
|
695
|
+
# api/guides/meeting-spaces#identify-meeting-space).
|
|
582
696
|
# Corresponds to the JSON property `name`
|
|
583
697
|
# @return [String]
|
|
584
698
|
attr_accessor :name
|
|
@@ -608,12 +722,34 @@ module Google
|
|
|
608
722
|
# @return [String]
|
|
609
723
|
attr_accessor :access_type
|
|
610
724
|
|
|
725
|
+
# Configuration related to meeting artifacts potentially generated by this
|
|
726
|
+
# meeting space.
|
|
727
|
+
# Corresponds to the JSON property `artifactConfig`
|
|
728
|
+
# @return [Google::Apis::MeetV2::ArtifactConfig]
|
|
729
|
+
attr_accessor :artifact_config
|
|
730
|
+
|
|
731
|
+
# Whether attendance report is enabled for the meeting space.
|
|
732
|
+
# Corresponds to the JSON property `attendanceReportGenerationType`
|
|
733
|
+
# @return [String]
|
|
734
|
+
attr_accessor :attendance_report_generation_type
|
|
735
|
+
|
|
611
736
|
# Defines the entry points that can be used to join meetings hosted in this
|
|
612
737
|
# meeting space. Default: EntryPointAccess.ALL
|
|
613
738
|
# Corresponds to the JSON property `entryPointAccess`
|
|
614
739
|
# @return [String]
|
|
615
740
|
attr_accessor :entry_point_access
|
|
616
741
|
|
|
742
|
+
# The pre-configured moderation mode for the Meeting. Default: Controlled by the
|
|
743
|
+
# user's policies.
|
|
744
|
+
# Corresponds to the JSON property `moderation`
|
|
745
|
+
# @return [String]
|
|
746
|
+
attr_accessor :moderation
|
|
747
|
+
|
|
748
|
+
# Defines restrictions for features when the meeting is moderated.
|
|
749
|
+
# Corresponds to the JSON property `moderationRestrictions`
|
|
750
|
+
# @return [Google::Apis::MeetV2::ModerationRestrictions]
|
|
751
|
+
attr_accessor :moderation_restrictions
|
|
752
|
+
|
|
617
753
|
def initialize(**args)
|
|
618
754
|
update!(**args)
|
|
619
755
|
end
|
|
@@ -621,7 +757,11 @@ module Google
|
|
|
621
757
|
# Update properties of this object
|
|
622
758
|
def update!(**args)
|
|
623
759
|
@access_type = args[:access_type] if args.key?(:access_type)
|
|
760
|
+
@artifact_config = args[:artifact_config] if args.key?(:artifact_config)
|
|
761
|
+
@attendance_report_generation_type = args[:attendance_report_generation_type] if args.key?(:attendance_report_generation_type)
|
|
624
762
|
@entry_point_access = args[:entry_point_access] if args.key?(:entry_point_access)
|
|
763
|
+
@moderation = args[:moderation] if args.key?(:moderation)
|
|
764
|
+
@moderation_restrictions = args[:moderation_restrictions] if args.key?(:moderation_restrictions)
|
|
625
765
|
end
|
|
626
766
|
end
|
|
627
767
|
|
|
@@ -722,6 +862,26 @@ module Google
|
|
|
722
862
|
@text = args[:text] if args.key?(:text)
|
|
723
863
|
end
|
|
724
864
|
end
|
|
865
|
+
|
|
866
|
+
# Configuration related to transcription in a meeting space.
|
|
867
|
+
class TranscriptionConfig
|
|
868
|
+
include Google::Apis::Core::Hashable
|
|
869
|
+
|
|
870
|
+
# Defines whether the content of a meeting is automatically transcribed when
|
|
871
|
+
# someone with the privilege to transcribe joins the meeting.
|
|
872
|
+
# Corresponds to the JSON property `autoTranscriptionGeneration`
|
|
873
|
+
# @return [String]
|
|
874
|
+
attr_accessor :auto_transcription_generation
|
|
875
|
+
|
|
876
|
+
def initialize(**args)
|
|
877
|
+
update!(**args)
|
|
878
|
+
end
|
|
879
|
+
|
|
880
|
+
# Update properties of this object
|
|
881
|
+
def update!(**args)
|
|
882
|
+
@auto_transcription_generation = args[:auto_transcription_generation] if args.key?(:auto_transcription_generation)
|
|
883
|
+
end
|
|
884
|
+
end
|
|
725
885
|
end
|
|
726
886
|
end
|
|
727
887
|
end
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module MeetV2
|
|
18
18
|
# Version of the google-apis-meet_v2 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.9.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.16.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20250421"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -34,6 +34,12 @@ module Google
|
|
|
34
34
|
include Google::Apis::Core::JsonObjectSupport
|
|
35
35
|
end
|
|
36
36
|
|
|
37
|
+
class ArtifactConfig
|
|
38
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
|
+
|
|
40
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
41
|
+
end
|
|
42
|
+
|
|
37
43
|
class ConferenceRecord
|
|
38
44
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
39
45
|
|
|
@@ -100,6 +106,12 @@ module Google
|
|
|
100
106
|
include Google::Apis::Core::JsonObjectSupport
|
|
101
107
|
end
|
|
102
108
|
|
|
109
|
+
class ModerationRestrictions
|
|
110
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
111
|
+
|
|
112
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
113
|
+
end
|
|
114
|
+
|
|
103
115
|
class Participant
|
|
104
116
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
105
117
|
|
|
@@ -124,12 +136,24 @@ module Google
|
|
|
124
136
|
include Google::Apis::Core::JsonObjectSupport
|
|
125
137
|
end
|
|
126
138
|
|
|
139
|
+
class RecordingConfig
|
|
140
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
141
|
+
|
|
142
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
143
|
+
end
|
|
144
|
+
|
|
127
145
|
class SignedinUser
|
|
128
146
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
129
147
|
|
|
130
148
|
include Google::Apis::Core::JsonObjectSupport
|
|
131
149
|
end
|
|
132
150
|
|
|
151
|
+
class SmartNotesConfig
|
|
152
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
153
|
+
|
|
154
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
155
|
+
end
|
|
156
|
+
|
|
133
157
|
class Space
|
|
134
158
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
135
159
|
|
|
@@ -154,6 +178,12 @@ module Google
|
|
|
154
178
|
include Google::Apis::Core::JsonObjectSupport
|
|
155
179
|
end
|
|
156
180
|
|
|
181
|
+
class TranscriptionConfig
|
|
182
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
183
|
+
|
|
184
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
185
|
+
end
|
|
186
|
+
|
|
157
187
|
class ActiveConference
|
|
158
188
|
# @private
|
|
159
189
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -168,6 +198,18 @@ module Google
|
|
|
168
198
|
end
|
|
169
199
|
end
|
|
170
200
|
|
|
201
|
+
class ArtifactConfig
|
|
202
|
+
# @private
|
|
203
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
204
|
+
property :recording_config, as: 'recordingConfig', class: Google::Apis::MeetV2::RecordingConfig, decorator: Google::Apis::MeetV2::RecordingConfig::Representation
|
|
205
|
+
|
|
206
|
+
property :smart_notes_config, as: 'smartNotesConfig', class: Google::Apis::MeetV2::SmartNotesConfig, decorator: Google::Apis::MeetV2::SmartNotesConfig::Representation
|
|
207
|
+
|
|
208
|
+
property :transcription_config, as: 'transcriptionConfig', class: Google::Apis::MeetV2::TranscriptionConfig, decorator: Google::Apis::MeetV2::TranscriptionConfig::Representation
|
|
209
|
+
|
|
210
|
+
end
|
|
211
|
+
end
|
|
212
|
+
|
|
171
213
|
class ConferenceRecord
|
|
172
214
|
# @private
|
|
173
215
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -262,6 +304,16 @@ module Google
|
|
|
262
304
|
end
|
|
263
305
|
end
|
|
264
306
|
|
|
307
|
+
class ModerationRestrictions
|
|
308
|
+
# @private
|
|
309
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
310
|
+
property :chat_restriction, as: 'chatRestriction'
|
|
311
|
+
property :default_join_as_viewer_type, as: 'defaultJoinAsViewerType'
|
|
312
|
+
property :present_restriction, as: 'presentRestriction'
|
|
313
|
+
property :reaction_restriction, as: 'reactionRestriction'
|
|
314
|
+
end
|
|
315
|
+
end
|
|
316
|
+
|
|
265
317
|
class Participant
|
|
266
318
|
# @private
|
|
267
319
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -305,6 +357,13 @@ module Google
|
|
|
305
357
|
end
|
|
306
358
|
end
|
|
307
359
|
|
|
360
|
+
class RecordingConfig
|
|
361
|
+
# @private
|
|
362
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
363
|
+
property :auto_recording_generation, as: 'autoRecordingGeneration'
|
|
364
|
+
end
|
|
365
|
+
end
|
|
366
|
+
|
|
308
367
|
class SignedinUser
|
|
309
368
|
# @private
|
|
310
369
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -313,6 +372,13 @@ module Google
|
|
|
313
372
|
end
|
|
314
373
|
end
|
|
315
374
|
|
|
375
|
+
class SmartNotesConfig
|
|
376
|
+
# @private
|
|
377
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
378
|
+
property :auto_smart_notes_generation, as: 'autoSmartNotesGeneration'
|
|
379
|
+
end
|
|
380
|
+
end
|
|
381
|
+
|
|
316
382
|
class Space
|
|
317
383
|
# @private
|
|
318
384
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -330,7 +396,13 @@ module Google
|
|
|
330
396
|
# @private
|
|
331
397
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
332
398
|
property :access_type, as: 'accessType'
|
|
399
|
+
property :artifact_config, as: 'artifactConfig', class: Google::Apis::MeetV2::ArtifactConfig, decorator: Google::Apis::MeetV2::ArtifactConfig::Representation
|
|
400
|
+
|
|
401
|
+
property :attendance_report_generation_type, as: 'attendanceReportGenerationType'
|
|
333
402
|
property :entry_point_access, as: 'entryPointAccess'
|
|
403
|
+
property :moderation, as: 'moderation'
|
|
404
|
+
property :moderation_restrictions, as: 'moderationRestrictions', class: Google::Apis::MeetV2::ModerationRestrictions, decorator: Google::Apis::MeetV2::ModerationRestrictions::Representation
|
|
405
|
+
|
|
334
406
|
end
|
|
335
407
|
end
|
|
336
408
|
|
|
@@ -357,6 +429,13 @@ module Google
|
|
|
357
429
|
property :text, as: 'text'
|
|
358
430
|
end
|
|
359
431
|
end
|
|
432
|
+
|
|
433
|
+
class TranscriptionConfig
|
|
434
|
+
# @private
|
|
435
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
436
|
+
property :auto_transcription_generation, as: 'autoTranscriptionGeneration'
|
|
437
|
+
end
|
|
438
|
+
end
|
|
360
439
|
end
|
|
361
440
|
end
|
|
362
441
|
end
|
|
@@ -30,7 +30,7 @@ module Google
|
|
|
30
30
|
# Meet = Google::Apis::MeetV2 # Alias the module
|
|
31
31
|
# service = Meet::MeetService.new
|
|
32
32
|
#
|
|
33
|
-
# @see https://developers.google.com/meet/api
|
|
33
|
+
# @see https://developers.google.com/workspace/meet/api
|
|
34
34
|
class MeetService < Google::Apis::Core::BaseService
|
|
35
35
|
DEFAULT_ENDPOINT_TEMPLATE = "https://meet.$UNIVERSE_DOMAIN$/"
|
|
36
36
|
|
|
@@ -533,14 +533,14 @@ module Google
|
|
|
533
533
|
end
|
|
534
534
|
|
|
535
535
|
# Ends an active conference (if there's one). For an example, see [End active
|
|
536
|
-
# conference](https://developers.google.com/meet/api/guides/meeting-
|
|
537
|
-
# active-conference).
|
|
536
|
+
# conference](https://developers.google.com/workspace/meet/api/guides/meeting-
|
|
537
|
+
# spaces#end-active-conference).
|
|
538
538
|
# @param [String] name
|
|
539
539
|
# Required. Resource name of the space. Format: `spaces/`space``. ``space`` is
|
|
540
540
|
# the resource identifier for the space. It's a unique, server-generated ID and
|
|
541
541
|
# is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
|
|
542
|
-
# Meet identifies a meeting space](https://developers.google.com/meet/
|
|
543
|
-
# meeting-spaces#identify-meeting-space).
|
|
542
|
+
# Meet identifies a meeting space](https://developers.google.com/workspace/meet/
|
|
543
|
+
# api/guides/meeting-spaces#identify-meeting-space).
|
|
544
544
|
# @param [Google::Apis::MeetV2::EndActiveConferenceRequest] end_active_conference_request_object
|
|
545
545
|
# @param [String] fields
|
|
546
546
|
# Selector specifying which fields to include in a partial response.
|
|
@@ -572,8 +572,8 @@ module Google
|
|
|
572
572
|
end
|
|
573
573
|
|
|
574
574
|
# Gets details about a meeting space. For an example, see [Get a meeting space](
|
|
575
|
-
# https://developers.google.com/meet/api/guides/meeting-spaces#get-
|
|
576
|
-
# .
|
|
575
|
+
# https://developers.google.com/workspace/meet/api/guides/meeting-spaces#get-
|
|
576
|
+
# meeting-space).
|
|
577
577
|
# @param [String] name
|
|
578
578
|
# Required. Resource name of the space. Format: `spaces/`space`` or `spaces/`
|
|
579
579
|
# meetingCode``. ``space`` is the resource identifier for the space. It's a
|
|
@@ -585,8 +585,8 @@ module Google
|
|
|
585
585
|
# meeting spaces in the future. Generally, a `meetingCode` expires 365 days
|
|
586
586
|
# after last use. For more information, see [Learn about meeting codes in Google
|
|
587
587
|
# Meet](https://support.google.com/meet/answer/10710509). For more information,
|
|
588
|
-
# see [How Meet identifies a meeting space](https://developers.google.com/
|
|
589
|
-
# api/guides/meeting-spaces#identify-meeting-space).
|
|
588
|
+
# see [How Meet identifies a meeting space](https://developers.google.com/
|
|
589
|
+
# workspace/meet/api/guides/meeting-spaces#identify-meeting-space).
|
|
590
590
|
# @param [String] fields
|
|
591
591
|
# Selector specifying which fields to include in a partial response.
|
|
592
592
|
# @param [String] quota_user
|
|
@@ -615,14 +615,14 @@ module Google
|
|
|
615
615
|
end
|
|
616
616
|
|
|
617
617
|
# Updates details about a meeting space. For an example, see [Update a meeting
|
|
618
|
-
# space](https://developers.google.com/meet/api/guides/meeting-spaces#
|
|
619
|
-
# meeting-space).
|
|
618
|
+
# space](https://developers.google.com/workspace/meet/api/guides/meeting-spaces#
|
|
619
|
+
# update-meeting-space).
|
|
620
620
|
# @param [String] name
|
|
621
621
|
# Immutable. Resource name of the space. Format: `spaces/`space``. ``space`` is
|
|
622
622
|
# the resource identifier for the space. It's a unique, server-generated ID and
|
|
623
623
|
# is case sensitive. For example, `jQCFfuBOdN5z`. For more information, see [How
|
|
624
|
-
# Meet identifies a meeting space](https://developers.google.com/meet/
|
|
625
|
-
# meeting-spaces#identify-meeting-space).
|
|
624
|
+
# Meet identifies a meeting space](https://developers.google.com/workspace/meet/
|
|
625
|
+
# api/guides/meeting-spaces#identify-meeting-space).
|
|
626
626
|
# @param [Google::Apis::MeetV2::Space] space_object
|
|
627
627
|
# @param [String] update_mask
|
|
628
628
|
# Optional. Field mask used to specify the fields to be updated in the space. If
|
data/lib/google/apis/meet_v2.rb
CHANGED
|
@@ -23,7 +23,7 @@ module Google
|
|
|
23
23
|
#
|
|
24
24
|
# Create and manage meetings in Google Meet.
|
|
25
25
|
#
|
|
26
|
-
# @see https://developers.google.com/meet/api
|
|
26
|
+
# @see https://developers.google.com/workspace/meet/api
|
|
27
27
|
module MeetV2
|
|
28
28
|
# Version of the Google Meet API this client connects to.
|
|
29
29
|
# This is NOT the gem version.
|
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-apis-meet_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.9.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google LLC
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2025-
|
|
10
|
+
date: 2025-04-27 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: google-apis-core
|
|
@@ -57,7 +57,7 @@ licenses:
|
|
|
57
57
|
metadata:
|
|
58
58
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
|
59
59
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-meet_v2/v0.9.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-meet_v2
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|