google-apis-meet_v2 0.6.0 → 0.7.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 +4 -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: 47da87a3a6879820be3e65cbab248ff4129b96562733b03f0429197db0ae6926
|
4
|
+
data.tar.gz: f558d8e73a1ddeb42ccd4523fc911ea93c5fb5f75bc22cdd6007e212f8332949
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d80f238c9fd78fef7feb9f5523ed8d29c636e894085cc637291cd7d4c23f2358ba70dd1418930dd1f3c4960b6b99d5e5567b35c11987097f7cdb62e2a0bec3a2
|
7
|
+
data.tar.gz: 670a0df79426461d91b2403f153f10e1218738a2cb0f9a53032ad4dbc74d720a8c8edb7572a048096d612aa177b0fffc3eb15d697a981a1e51945a20c2b754ed
|
data/CHANGELOG.md
CHANGED
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,39 @@ 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. More details about
|
76
|
+
# smart notes https://support.google.com/meet/answer/14754931?hl=en.
|
77
|
+
# Corresponds to the JSON property `smartNotesConfig`
|
78
|
+
# @return [Google::Apis::MeetV2::SmartNotesConfig]
|
79
|
+
attr_accessor :smart_notes_config
|
80
|
+
|
81
|
+
# Configuration related to transcription in a meeting space.
|
82
|
+
# Corresponds to the JSON property `transcriptionConfig`
|
83
|
+
# @return [Google::Apis::MeetV2::TranscriptionConfig]
|
84
|
+
attr_accessor :transcription_config
|
85
|
+
|
86
|
+
def initialize(**args)
|
87
|
+
update!(**args)
|
88
|
+
end
|
89
|
+
|
90
|
+
# Update properties of this object
|
91
|
+
def update!(**args)
|
92
|
+
@recording_config = args[:recording_config] if args.key?(:recording_config)
|
93
|
+
@smart_notes_config = args[:smart_notes_config] if args.key?(:smart_notes_config)
|
94
|
+
@transcription_config = args[:transcription_config] if args.key?(:transcription_config)
|
95
|
+
end
|
96
|
+
end
|
97
|
+
|
65
98
|
# Single instance of a meeting held in a space.
|
66
99
|
class ConferenceRecord
|
67
100
|
include Google::Apis::Core::Hashable
|
@@ -360,6 +393,43 @@ module Google
|
|
360
393
|
end
|
361
394
|
end
|
362
395
|
|
396
|
+
# Defines restrictions for features when the meeting is moderated.
|
397
|
+
class ModerationRestrictions
|
398
|
+
include Google::Apis::Core::Hashable
|
399
|
+
|
400
|
+
# Defines who has permission to send chat messages in the meeting space.
|
401
|
+
# Corresponds to the JSON property `chatRestriction`
|
402
|
+
# @return [String]
|
403
|
+
attr_accessor :chat_restriction
|
404
|
+
|
405
|
+
# Defines whether to restrict the default role assigned to users as viewer.
|
406
|
+
# Corresponds to the JSON property `defaultJoinAsViewerType`
|
407
|
+
# @return [String]
|
408
|
+
attr_accessor :default_join_as_viewer_type
|
409
|
+
|
410
|
+
# Defines who has permission to share their screen in the meeting space.
|
411
|
+
# Corresponds to the JSON property `presentRestriction`
|
412
|
+
# @return [String]
|
413
|
+
attr_accessor :present_restriction
|
414
|
+
|
415
|
+
# Defines who has permission to send reactions in the meeting space.
|
416
|
+
# Corresponds to the JSON property `reactionRestriction`
|
417
|
+
# @return [String]
|
418
|
+
attr_accessor :reaction_restriction
|
419
|
+
|
420
|
+
def initialize(**args)
|
421
|
+
update!(**args)
|
422
|
+
end
|
423
|
+
|
424
|
+
# Update properties of this object
|
425
|
+
def update!(**args)
|
426
|
+
@chat_restriction = args[:chat_restriction] if args.key?(:chat_restriction)
|
427
|
+
@default_join_as_viewer_type = args[:default_join_as_viewer_type] if args.key?(:default_join_as_viewer_type)
|
428
|
+
@present_restriction = args[:present_restriction] if args.key?(:present_restriction)
|
429
|
+
@reaction_restriction = args[:reaction_restriction] if args.key?(:reaction_restriction)
|
430
|
+
end
|
431
|
+
end
|
432
|
+
|
363
433
|
# User who attended or is attending a conference.
|
364
434
|
class Participant
|
365
435
|
include Google::Apis::Core::Hashable
|
@@ -515,6 +585,26 @@ module Google
|
|
515
585
|
end
|
516
586
|
end
|
517
587
|
|
588
|
+
# Configuration related to recording in a meeting space.
|
589
|
+
class RecordingConfig
|
590
|
+
include Google::Apis::Core::Hashable
|
591
|
+
|
592
|
+
# Defines whether a meeting space is automatically recorded when someone with
|
593
|
+
# the privilege to record joins the meeting.
|
594
|
+
# Corresponds to the JSON property `autoRecordingGeneration`
|
595
|
+
# @return [String]
|
596
|
+
attr_accessor :auto_recording_generation
|
597
|
+
|
598
|
+
def initialize(**args)
|
599
|
+
update!(**args)
|
600
|
+
end
|
601
|
+
|
602
|
+
# Update properties of this object
|
603
|
+
def update!(**args)
|
604
|
+
@auto_recording_generation = args[:auto_recording_generation] if args.key?(:auto_recording_generation)
|
605
|
+
end
|
606
|
+
end
|
607
|
+
|
518
608
|
# A signed-in user can be: a) An individual joining from a personal computer,
|
519
609
|
# mobile device, or through companion mode. b) A robot account used by
|
520
610
|
# conference room devices.
|
@@ -545,6 +635,28 @@ module Google
|
|
545
635
|
end
|
546
636
|
end
|
547
637
|
|
638
|
+
# Configuration related to smart notes in a meeting space. More details about
|
639
|
+
# smart notes https://support.google.com/meet/answer/14754931?hl=en.
|
640
|
+
class SmartNotesConfig
|
641
|
+
include Google::Apis::Core::Hashable
|
642
|
+
|
643
|
+
# Defines whether to automatically generate a summary and recap of the meeting
|
644
|
+
# for all invitees in the organization when someone with the privilege to enable
|
645
|
+
# smart notes joins the meeting.
|
646
|
+
# Corresponds to the JSON property `autoSmartNotesGeneration`
|
647
|
+
# @return [String]
|
648
|
+
attr_accessor :auto_smart_notes_generation
|
649
|
+
|
650
|
+
def initialize(**args)
|
651
|
+
update!(**args)
|
652
|
+
end
|
653
|
+
|
654
|
+
# Update properties of this object
|
655
|
+
def update!(**args)
|
656
|
+
@auto_smart_notes_generation = args[:auto_smart_notes_generation] if args.key?(:auto_smart_notes_generation)
|
657
|
+
end
|
658
|
+
end
|
659
|
+
|
548
660
|
# Virtual place where conferences are held. Only one active conference can be
|
549
661
|
# held in one space at any given time.
|
550
662
|
class Space
|
@@ -577,8 +689,8 @@ module Google
|
|
577
689
|
# Immutable. Resource name of the space. Format: `spaces/`space``. ``space`` is
|
578
690
|
# the resource identifier for the space. It's a unique, server-generated ID and
|
579
691
|
# 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).
|
692
|
+
# Meet identifies a meeting space](https://developers.google.com/workspace/meet/
|
693
|
+
# api/guides/meeting-spaces#identify-meeting-space).
|
582
694
|
# Corresponds to the JSON property `name`
|
583
695
|
# @return [String]
|
584
696
|
attr_accessor :name
|
@@ -608,12 +720,36 @@ module Google
|
|
608
720
|
# @return [String]
|
609
721
|
attr_accessor :access_type
|
610
722
|
|
723
|
+
# Configuration related to meeting artifacts potentially generated by this
|
724
|
+
# meeting space.
|
725
|
+
# Corresponds to the JSON property `artifactConfig`
|
726
|
+
# @return [Google::Apis::MeetV2::ArtifactConfig]
|
727
|
+
attr_accessor :artifact_config
|
728
|
+
|
729
|
+
# [Developer Preview](https://developers.google.com/workspace/preview): Whether
|
730
|
+
# attendance report is enabled for the meeting space.
|
731
|
+
# Corresponds to the JSON property `attendanceReportGenerationType`
|
732
|
+
# @return [String]
|
733
|
+
attr_accessor :attendance_report_generation_type
|
734
|
+
|
611
735
|
# Defines the entry points that can be used to join meetings hosted in this
|
612
736
|
# meeting space. Default: EntryPointAccess.ALL
|
613
737
|
# Corresponds to the JSON property `entryPointAccess`
|
614
738
|
# @return [String]
|
615
739
|
attr_accessor :entry_point_access
|
616
740
|
|
741
|
+
# [Developer Preview](https://developers.google.com/workspace/preview): The pre-
|
742
|
+
# configured moderation mode for the Meeting. Default: Controlled by the user's
|
743
|
+
# 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.7.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 = "20250406"
|
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.7.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-16 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.7.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:
|