google-apps-meet-v2beta 0.3.2 → 0.5.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +31 -21
- data/lib/google/apps/meet/v2beta/conference_records_service/client.rb +65 -38
- 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 +65 -38
- data/lib/google/apps/meet/v2beta/conference_records_service/rest/service_stub.rb +110 -74
- 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 +486 -14
- 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 +458 -14
- data/lib/google/apps/meet/v2beta/spaces_service/rest/service_stub.rb +290 -25
- data/lib/google/apps/meet/v2beta/version.rb +1 -1
- data/proto_docs/google/api/client.rb +39 -0
- 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
@@ -21,28 +21,39 @@ module Google
|
|
21
21
|
module Apps
|
22
22
|
module Meet
|
23
23
|
module V2beta
|
24
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
25
24
|
# Virtual place where conferences are held. Only one active conference can be
|
26
25
|
# held in one space at any given time.
|
27
26
|
# @!attribute [rw] name
|
28
27
|
# @return [::String]
|
29
28
|
# Immutable. Resource name of the space.
|
30
|
-
#
|
29
|
+
#
|
30
|
+
# Format: `spaces/{space}`.
|
31
|
+
#
|
32
|
+
# `{space}` is the resource identifier for the space. It's a unique,
|
33
|
+
# server-generated ID and is case sensitive. For example, `jQCFfuBOdN5z`.
|
34
|
+
#
|
35
|
+
# For more information, see [How Meet identifies a meeting
|
36
|
+
# space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-meeting-space).
|
31
37
|
# @!attribute [r] meeting_uri
|
32
38
|
# @return [::String]
|
33
|
-
# Output only. URI used to join
|
39
|
+
# Output only. URI used to join meetings consisting of
|
40
|
+
# `https://meet.google.com/` followed by the `meeting_code`. For example,
|
34
41
|
# `https://meet.google.com/abc-mnop-xyz`.
|
35
42
|
# @!attribute [r] meeting_code
|
36
43
|
# @return [::String]
|
37
|
-
# Output only. Type friendly
|
38
|
-
#
|
39
|
-
#
|
44
|
+
# Output only. Type friendly unique string used to join the meeting.
|
45
|
+
#
|
46
|
+
# Format: `[a-z]+-[a-z]+-[a-z]+`. For example, `abc-mnop-xyz`.
|
47
|
+
#
|
48
|
+
# The maximum length is 128 characters.
|
49
|
+
#
|
50
|
+
# Can only be used as an alias of the space name to get the space.
|
40
51
|
# @!attribute [rw] config
|
41
52
|
# @return [::Google::Apps::Meet::V2beta::SpaceConfig]
|
42
53
|
# Configuration pertaining to the meeting space.
|
43
54
|
# @!attribute [rw] active_conference
|
44
55
|
# @return [::Google::Apps::Meet::V2beta::ActiveConference]
|
45
|
-
# Active conference if it exists.
|
56
|
+
# Active conference, if it exists.
|
46
57
|
class Space
|
47
58
|
include ::Google::Protobuf::MessageExts
|
48
59
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -53,7 +64,7 @@ module Google
|
|
53
64
|
# @return [::String]
|
54
65
|
# Output only. Reference to 'ConferenceRecord' resource.
|
55
66
|
# Format: `conferenceRecords/{conference_record}` where `{conference_record}`
|
56
|
-
# is a unique
|
67
|
+
# is a unique ID for each instance of a call within a space.
|
57
68
|
class ActiveConference
|
58
69
|
include ::Google::Protobuf::MessageExts
|
59
70
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -70,10 +81,139 @@ module Google
|
|
70
81
|
# Defines the entry points that can be used to join meetings hosted in this
|
71
82
|
# meeting space.
|
72
83
|
# Default: EntryPointAccess.ALL
|
84
|
+
# @!attribute [rw] moderation
|
85
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::Moderation]
|
86
|
+
# [Developer Preview](https://developers.google.com/workspace/preview):
|
87
|
+
# The pre-configured moderation mode for the Meeting.
|
88
|
+
# Default: Controlled by the user's policies.
|
89
|
+
# @!attribute [rw] moderation_restrictions
|
90
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ModerationRestrictions]
|
91
|
+
# [Developer Preview](https://developers.google.com/workspace/preview):
|
92
|
+
# When moderation.ON, these restrictions go into effect for the meeting.
|
93
|
+
# When moderation.OFF, will be reset to default ModerationRestrictions.
|
94
|
+
# @!attribute [rw] attendance_report_generation_type
|
95
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::AttendanceReportGenerationType]
|
96
|
+
# [Developer Preview](https://developers.google.com/workspace/preview):
|
97
|
+
# Whether attendance report is enabled for the meeting space.
|
98
|
+
# @!attribute [rw] artifact_config
|
99
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig]
|
100
|
+
# [Developer Preview](https://developers.google.com/workspace/preview):
|
101
|
+
# Configuration pertaining to the auto-generated artifacts that the meeting
|
102
|
+
# supports.
|
73
103
|
class SpaceConfig
|
74
104
|
include ::Google::Protobuf::MessageExts
|
75
105
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
76
106
|
|
107
|
+
# Defines restrictions for features when the meeting is moderated.
|
108
|
+
# @!attribute [rw] chat_restriction
|
109
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ModerationRestrictions::RestrictionType]
|
110
|
+
# Defines who has permission to send chat messages in the meeting space.
|
111
|
+
# @!attribute [rw] reaction_restriction
|
112
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ModerationRestrictions::RestrictionType]
|
113
|
+
# Defines who has permission to send reactions in the meeting space.
|
114
|
+
# @!attribute [rw] present_restriction
|
115
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ModerationRestrictions::RestrictionType]
|
116
|
+
# Defines who has permission to share their screen in the meeting space.
|
117
|
+
# @!attribute [rw] default_join_as_viewer_type
|
118
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ModerationRestrictions::DefaultJoinAsViewerType]
|
119
|
+
# Defines whether to restrict the default role assigned to users as viewer.
|
120
|
+
class ModerationRestrictions
|
121
|
+
include ::Google::Protobuf::MessageExts
|
122
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
123
|
+
|
124
|
+
# Determines who has permission to use a particular feature.
|
125
|
+
module RestrictionType
|
126
|
+
# Default value specified by user policy.
|
127
|
+
# This should never be returned.
|
128
|
+
RESTRICTION_TYPE_UNSPECIFIED = 0
|
129
|
+
|
130
|
+
# Meeting owner and co-host have the permission.
|
131
|
+
HOSTS_ONLY = 1
|
132
|
+
|
133
|
+
# All Participants have permissions.
|
134
|
+
NO_RESTRICTION = 2
|
135
|
+
end
|
136
|
+
|
137
|
+
# By default users will join as contributors. Hosts can restrict users to
|
138
|
+
# join as viewers.
|
139
|
+
# Note: If an explicit role is set for a users in the Member resource, the
|
140
|
+
# user will join as that role.
|
141
|
+
module DefaultJoinAsViewerType
|
142
|
+
# Default value specified by user policy.
|
143
|
+
# This should never be returned.
|
144
|
+
DEFAULT_JOIN_AS_VIEWER_TYPE_UNSPECIFIED = 0
|
145
|
+
|
146
|
+
# Users will by default join as viewers.
|
147
|
+
ON = 1
|
148
|
+
|
149
|
+
# Users will by default join as contributors.
|
150
|
+
OFF = 2
|
151
|
+
end
|
152
|
+
end
|
153
|
+
|
154
|
+
# Configuration related to meeting artifacts potentially generated by this
|
155
|
+
# meeting space.
|
156
|
+
# @!attribute [rw] recording_config
|
157
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::RecordingConfig]
|
158
|
+
# Configuration for recording.
|
159
|
+
# @!attribute [rw] transcription_config
|
160
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::TranscriptionConfig]
|
161
|
+
# Configuration for auto-transcript.
|
162
|
+
# @!attribute [rw] smart_notes_config
|
163
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::SmartNotesConfig]
|
164
|
+
# Configuration for auto-smart-notes.
|
165
|
+
class ArtifactConfig
|
166
|
+
include ::Google::Protobuf::MessageExts
|
167
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
168
|
+
|
169
|
+
# Configuration related to recording in a meeting space.
|
170
|
+
# @!attribute [rw] auto_recording_generation
|
171
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::AutoGenerationType]
|
172
|
+
# Defines whether a meeting space is automatically recorded when someone
|
173
|
+
# with the privilege to record joins the meeting.
|
174
|
+
class RecordingConfig
|
175
|
+
include ::Google::Protobuf::MessageExts
|
176
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
177
|
+
end
|
178
|
+
|
179
|
+
# Configuration related to transcription in a meeting space.
|
180
|
+
# @!attribute [rw] auto_transcription_generation
|
181
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::AutoGenerationType]
|
182
|
+
# Defines whether the content of a meeting is automatically transcribed
|
183
|
+
# when someone with the privilege to transcribe joins the meeting.
|
184
|
+
class TranscriptionConfig
|
185
|
+
include ::Google::Protobuf::MessageExts
|
186
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
187
|
+
end
|
188
|
+
|
189
|
+
# Configuration related to smart notes in a meeting space. More
|
190
|
+
# details about smart notes
|
191
|
+
# https://support.google.com/meet/answer/14754931?hl=en.
|
192
|
+
# @!attribute [rw] auto_smart_notes_generation
|
193
|
+
# @return [::Google::Apps::Meet::V2beta::SpaceConfig::ArtifactConfig::AutoGenerationType]
|
194
|
+
# Defines whether to automatically generate a summary and recap of the
|
195
|
+
# meeting for all invitees in the organization when someone with the
|
196
|
+
# privilege to enable smart notes joins the meeting.
|
197
|
+
class SmartNotesConfig
|
198
|
+
include ::Google::Protobuf::MessageExts
|
199
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
200
|
+
end
|
201
|
+
|
202
|
+
# Determines whether an artifact can be automatically generated in the
|
203
|
+
# meeting space.
|
204
|
+
module AutoGenerationType
|
205
|
+
# Default value specified by user policy.
|
206
|
+
# This should never be returned.
|
207
|
+
AUTO_GENERATION_TYPE_UNSPECIFIED = 0
|
208
|
+
|
209
|
+
# The artifact is generated automatically.
|
210
|
+
ON = 1
|
211
|
+
|
212
|
+
# The artifact is not generated automatically.
|
213
|
+
OFF = 2
|
214
|
+
end
|
215
|
+
end
|
216
|
+
|
77
217
|
# Possible access types for a meeting space.
|
78
218
|
module AccessType
|
79
219
|
# Default value specified by the user's organization.
|
@@ -94,7 +234,7 @@ module Google
|
|
94
234
|
end
|
95
235
|
|
96
236
|
# Entry points that can be used to join a meeting. Example:
|
97
|
-
# `meet.google.com`, the Embed SDK Web, or a mobile application.
|
237
|
+
# `meet.google.com`, the Meet Embed SDK Web, or a mobile application.
|
98
238
|
module EntryPointAccess
|
99
239
|
# Unused.
|
100
240
|
ENTRY_POINT_ACCESS_UNSPECIFIED = 0
|
@@ -103,31 +243,97 @@ module Google
|
|
103
243
|
ALL = 1
|
104
244
|
|
105
245
|
# Only entry points owned by the Google Cloud project that created the
|
106
|
-
# space can be used to join meetings in this space.
|
107
|
-
# SDK Web or mobile Meet SDKs to create owned entry points.
|
246
|
+
# space can be used to join meetings in this space. Apps can use the Meet
|
247
|
+
# Embed SDK Web or mobile Meet SDKs to create owned entry points.
|
108
248
|
CREATOR_APP_ONLY = 2
|
109
249
|
end
|
250
|
+
|
251
|
+
# The moderation mode for a meeting. When the moderation mode is on, the
|
252
|
+
# meeting owner has more control over the meeting with features such as
|
253
|
+
# co-host management (see message Member) and feature restrictions (see
|
254
|
+
# message ModerationRestrictions).
|
255
|
+
module Moderation
|
256
|
+
# Moderation type is not specified. This is used to indicate the user
|
257
|
+
# hasn't specified any value as the user does not intend to update the
|
258
|
+
# state. Users are not allowed to set the value as unspecified.
|
259
|
+
MODERATION_UNSPECIFIED = 0
|
260
|
+
|
261
|
+
# Moderation is off.
|
262
|
+
OFF = 1
|
263
|
+
|
264
|
+
# Moderation is on.
|
265
|
+
ON = 2
|
266
|
+
end
|
267
|
+
|
268
|
+
# Possible states of whether attendance report is enabled for the meeting
|
269
|
+
# space.
|
270
|
+
module AttendanceReportGenerationType
|
271
|
+
# Default value specified by user policy.
|
272
|
+
# This should never be returned.
|
273
|
+
ATTENDANCE_REPORT_GENERATION_TYPE_UNSPECIFIED = 0
|
274
|
+
|
275
|
+
# Attendance report will be generated and sent to drive/email.
|
276
|
+
GENERATE_REPORT = 1
|
277
|
+
|
278
|
+
# Attendance report will not be generated.
|
279
|
+
DO_NOT_GENERATE = 2
|
280
|
+
end
|
281
|
+
end
|
282
|
+
|
283
|
+
# Users who are configured to have a role in the space. These users can
|
284
|
+
# join the space without knocking.
|
285
|
+
# @!attribute [rw] name
|
286
|
+
# @return [::String]
|
287
|
+
# Identifier. Resource name of the member.
|
288
|
+
# Format: spaces/\\{space}/members/\\{member}
|
289
|
+
# @!attribute [rw] email
|
290
|
+
# @return [::String]
|
291
|
+
# Email for the member. This is required for creating the member.
|
292
|
+
# @!attribute [rw] role
|
293
|
+
# @return [::Google::Apps::Meet::V2beta::Member::Role]
|
294
|
+
# The meeting role assigned to the member.
|
295
|
+
# @!attribute [rw] user
|
296
|
+
# @return [::String]
|
297
|
+
# [Developer Preview](https://developers.google.com/workspace/preview):
|
298
|
+
# Unique name for the user. Interoperable with Admin SDK API and People API.
|
299
|
+
# This will be empty for non google users. Setting both user and email in
|
300
|
+
# request will result in error. Format: `users/{user}`
|
301
|
+
class Member
|
302
|
+
include ::Google::Protobuf::MessageExts
|
303
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
304
|
+
|
305
|
+
# Role of this member in the space.
|
306
|
+
module Role
|
307
|
+
# This is used to indicate the user hasn't specified any value and the
|
308
|
+
# user’s role will be determined upon joining the meetings between
|
309
|
+
# 'contributor' and 'viewer' role depending on meeting configuration. More
|
310
|
+
# details about viewer role
|
311
|
+
# https://support.google.com/meet/answer/13658394?hl=en.
|
312
|
+
ROLE_UNSPECIFIED = 0
|
313
|
+
|
314
|
+
# Co-host role.
|
315
|
+
COHOST = 1
|
316
|
+
end
|
110
317
|
end
|
111
318
|
|
112
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
113
319
|
# Single instance of a meeting held in a space.
|
114
320
|
# @!attribute [rw] name
|
115
321
|
# @return [::String]
|
116
322
|
# Identifier. Resource name of the conference record.
|
117
323
|
# Format: `conferenceRecords/{conference_record}` where `{conference_record}`
|
118
|
-
# is a unique
|
324
|
+
# is a unique ID for each instance of a call within a space.
|
119
325
|
# @!attribute [r] start_time
|
120
326
|
# @return [::Google::Protobuf::Timestamp]
|
121
|
-
# Output only. Timestamp when the conference started
|
327
|
+
# Output only. Timestamp when the conference started. Always set.
|
122
328
|
# @!attribute [r] end_time
|
123
329
|
# @return [::Google::Protobuf::Timestamp]
|
124
330
|
# Output only. Timestamp when the conference ended.
|
125
331
|
# Set for past conferences. Unset if the conference is ongoing.
|
126
332
|
# @!attribute [r] expire_time
|
127
333
|
# @return [::Google::Protobuf::Timestamp]
|
128
|
-
# Output only. Server enforced
|
129
|
-
# resource is deleted. The resource is deleted 30 days after the
|
130
|
-
# ends.
|
334
|
+
# Output only. Server enforced expiration time for when this conference
|
335
|
+
# record resource is deleted. The resource is deleted 30 days after the
|
336
|
+
# conference ends.
|
131
337
|
# @!attribute [r] space
|
132
338
|
# @return [::String]
|
133
339
|
# Output only. The space where the conference was held.
|
@@ -136,38 +342,41 @@ module Google
|
|
136
342
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
137
343
|
end
|
138
344
|
|
139
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
140
345
|
# User who attended or is attending a conference.
|
141
346
|
# @!attribute [rw] signedin_user
|
142
347
|
# @return [::Google::Apps::Meet::V2beta::SignedinUser]
|
143
348
|
# Signed-in user.
|
349
|
+
#
|
350
|
+
# Note: The following fields are mutually exclusive: `signedin_user`, `anonymous_user`, `phone_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
144
351
|
# @!attribute [rw] anonymous_user
|
145
352
|
# @return [::Google::Apps::Meet::V2beta::AnonymousUser]
|
146
353
|
# Anonymous user.
|
354
|
+
#
|
355
|
+
# Note: The following fields are mutually exclusive: `anonymous_user`, `signedin_user`, `phone_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
147
356
|
# @!attribute [rw] phone_user
|
148
357
|
# @return [::Google::Apps::Meet::V2beta::PhoneUser]
|
149
|
-
# User
|
358
|
+
# User calling from their phone.
|
359
|
+
#
|
360
|
+
# Note: The following fields are mutually exclusive: `phone_user`, `signedin_user`, `anonymous_user`. If a field in that set is populated, all other fields in the set will automatically be cleared.
|
150
361
|
# @!attribute [r] name
|
151
362
|
# @return [::String]
|
152
363
|
# Output only. Resource name of the participant.
|
153
364
|
# Format: `conferenceRecords/{conference_record}/participants/{participant}`
|
154
365
|
# @!attribute [r] earliest_start_time
|
155
366
|
# @return [::Google::Protobuf::Timestamp]
|
156
|
-
# Output only. Time when the participant joined the meeting
|
157
|
-
# time.
|
367
|
+
# Output only. Time when the participant first joined the meeting.
|
158
368
|
# @!attribute [r] latest_end_time
|
159
369
|
# @return [::Google::Protobuf::Timestamp]
|
160
370
|
# Output only. Time when the participant left the meeting for the last time.
|
161
|
-
# This can be null if it
|
371
|
+
# This can be null if it's an active meeting.
|
162
372
|
class Participant
|
163
373
|
include ::Google::Protobuf::MessageExts
|
164
374
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
165
375
|
end
|
166
376
|
|
167
|
-
#
|
168
|
-
#
|
169
|
-
#
|
170
|
-
# assigned. That means if a user joins a space multiple times from the same
|
377
|
+
# Refers to each unique join or leave session when a user joins a conference
|
378
|
+
# from a device. Note that any time a user joins the conference a new unique ID
|
379
|
+
# is assigned. That means if a user joins a space multiple times from the same
|
171
380
|
# device, they're assigned different IDs, and are also be treated as different
|
172
381
|
# participant sessions.
|
173
382
|
# @!attribute [rw] name
|
@@ -175,10 +384,10 @@ module Google
|
|
175
384
|
# Identifier. Session id.
|
176
385
|
# @!attribute [r] start_time
|
177
386
|
# @return [::Google::Protobuf::Timestamp]
|
178
|
-
# Output only. Timestamp when the user session
|
387
|
+
# Output only. Timestamp when the user session starts.
|
179
388
|
# @!attribute [r] end_time
|
180
389
|
# @return [::Google::Protobuf::Timestamp]
|
181
|
-
# Output only. Timestamp when the user session
|
390
|
+
# Output only. Timestamp when the user session ends. Unset if the user
|
182
391
|
# session hasn’t ended.
|
183
392
|
class ParticipantSession
|
184
393
|
include ::Google::Protobuf::MessageExts
|
@@ -195,9 +404,9 @@ module Google
|
|
195
404
|
# People API. Format: `users/{user}`
|
196
405
|
# @!attribute [r] display_name
|
197
406
|
# @return [::String]
|
198
|
-
# Output only. For a personal device, it's the user's first and last
|
199
|
-
# For a robot account, it's the
|
200
|
-
# "Altostrat Room".
|
407
|
+
# Output only. For a personal device, it's the user's first name and last
|
408
|
+
# name. For a robot account, it's the administrator-specified device name.
|
409
|
+
# For example, "Altostrat Room".
|
201
410
|
class SignedinUser
|
202
411
|
include ::Google::Protobuf::MessageExts
|
203
412
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -216,17 +425,16 @@ module Google
|
|
216
425
|
# they haven't signed in with a Google Account.
|
217
426
|
# @!attribute [r] display_name
|
218
427
|
# @return [::String]
|
219
|
-
# Output only. Partially redacted user's phone number when
|
428
|
+
# Output only. Partially redacted user's phone number when calling.
|
220
429
|
class PhoneUser
|
221
430
|
include ::Google::Protobuf::MessageExts
|
222
431
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
223
432
|
end
|
224
433
|
|
225
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
226
434
|
# Metadata about a recording created during a conference.
|
227
435
|
# @!attribute [r] drive_destination
|
228
436
|
# @return [::Google::Apps::Meet::V2beta::DriveDestination]
|
229
|
-
# Output only. Recording is saved to Google Drive as an
|
437
|
+
# Output only. Recording is saved to Google Drive as an MP4 file. The
|
230
438
|
# `drive_destination` includes the Drive `fileId` that can be used to
|
231
439
|
# download the file using the `files.get` method of the Drive API.
|
232
440
|
# @!attribute [r] name
|
@@ -282,7 +490,6 @@ module Google
|
|
282
490
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
283
491
|
end
|
284
492
|
|
285
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
286
493
|
# Metadata for a transcript generated from a conference. It refers to the ASR
|
287
494
|
# (Automatic Speech Recognition) result of user's speech during the conference.
|
288
495
|
# @!attribute [r] docs_destination
|
@@ -342,7 +549,6 @@ module Google
|
|
342
549
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
343
550
|
end
|
344
551
|
|
345
|
-
# [Developer Preview](https://developers.google.com/workspace/preview).
|
346
552
|
# Single entry for one user’s speech during a transcript session.
|
347
553
|
# @!attribute [r] name
|
348
554
|
# @return [::String]
|
@@ -350,7 +556,7 @@ module Google
|
|
350
556
|
# "conferenceRecords/\\{conference_record}/transcripts/\\{transcript}/entries/\\{entry}"
|
351
557
|
# @!attribute [r] participant
|
352
558
|
# @return [::String]
|
353
|
-
# Output only.
|
559
|
+
# Output only. Refers to the participant who speaks.
|
354
560
|
# @!attribute [r] text
|
355
561
|
# @return [::String]
|
356
562
|
# Output only. The transcribed text of the participant's voice, at maximum
|
@@ -35,6 +35,24 @@ module Google
|
|
35
35
|
# @!attribute [rw] name
|
36
36
|
# @return [::String]
|
37
37
|
# Required. Resource name of the space.
|
38
|
+
#
|
39
|
+
# Format: `spaces/{space}` or `spaces/{meetingCode}`.
|
40
|
+
#
|
41
|
+
# `{space}` is the resource identifier for the space. It's a unique,
|
42
|
+
# server-generated ID and is case sensitive. For example, `jQCFfuBOdN5z`.
|
43
|
+
#
|
44
|
+
# `{meetingCode}` is an alias for the space. It's a typeable, unique
|
45
|
+
# character string and is non-case sensitive. For example, `abc-mnop-xyz`.
|
46
|
+
# The maximum length is 128 characters.
|
47
|
+
#
|
48
|
+
# A `meetingCode` shouldn't be stored long term as it can become
|
49
|
+
# dissociated from a meeting space and can be reused for different meeting
|
50
|
+
# spaces in the future. Generally, a `meetingCode` expires 365 days after
|
51
|
+
# last use. For more information, see [Learn about meeting codes in Google
|
52
|
+
# Meet](https://support.google.com/meet/answer/10710509).
|
53
|
+
#
|
54
|
+
# For more information, see [How Meet identifies a meeting
|
55
|
+
# space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-meeting-space).
|
38
56
|
class GetSpaceRequest
|
39
57
|
include ::Google::Protobuf::MessageExts
|
40
58
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -47,9 +65,11 @@ module Google
|
|
47
65
|
# @!attribute [rw] update_mask
|
48
66
|
# @return [::Google::Protobuf::FieldMask]
|
49
67
|
# Optional. Field mask used to specify the fields to be updated in the space.
|
50
|
-
# If update_mask isn't provided,
|
51
|
-
#
|
68
|
+
# If update_mask isn't provided(not set, set with empty paths, or only has ""
|
69
|
+
# as paths), it defaults to update all fields provided with values in the
|
52
70
|
# request.
|
71
|
+
# Using "*" as update_mask will update all fields, including deleting fields
|
72
|
+
# not set in the request.
|
53
73
|
class UpdateSpaceRequest
|
54
74
|
include ::Google::Protobuf::MessageExts
|
55
75
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -59,11 +79,80 @@ module Google
|
|
59
79
|
# @!attribute [rw] name
|
60
80
|
# @return [::String]
|
61
81
|
# Required. Resource name of the space.
|
82
|
+
#
|
83
|
+
# Format: `spaces/{space}`.
|
84
|
+
#
|
85
|
+
# `{space}` is the resource identifier for the space. It's a unique,
|
86
|
+
# server-generated ID and is case sensitive. For example, `jQCFfuBOdN5z`.
|
87
|
+
#
|
88
|
+
# For more information, see [How Meet identifies a meeting
|
89
|
+
# space](https://developers.google.com/meet/api/guides/meeting-spaces#identify-meeting-space).
|
62
90
|
class EndActiveConferenceRequest
|
63
91
|
include ::Google::Protobuf::MessageExts
|
64
92
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
65
93
|
end
|
66
94
|
|
95
|
+
# Request to create a member for a space.
|
96
|
+
# @!attribute [rw] parent
|
97
|
+
# @return [::String]
|
98
|
+
# Required. Format: spaces/\\{space}
|
99
|
+
# @!attribute [rw] member
|
100
|
+
# @return [::Google::Apps::Meet::V2beta::Member]
|
101
|
+
# Required. The member to be created.
|
102
|
+
class CreateMemberRequest
|
103
|
+
include ::Google::Protobuf::MessageExts
|
104
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
105
|
+
end
|
106
|
+
|
107
|
+
# Request to get a member from a space.
|
108
|
+
# @!attribute [rw] name
|
109
|
+
# @return [::String]
|
110
|
+
# Required. Format: “spaces/\\{space}/members/\\{member}”
|
111
|
+
class GetMemberRequest
|
112
|
+
include ::Google::Protobuf::MessageExts
|
113
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
114
|
+
end
|
115
|
+
|
116
|
+
# Request to list all members of a space.
|
117
|
+
# @!attribute [rw] parent
|
118
|
+
# @return [::String]
|
119
|
+
# Required. Format: spaces/\\{space}
|
120
|
+
# @!attribute [rw] page_size
|
121
|
+
# @return [::Integer]
|
122
|
+
# Optional. Maximum number of members to return. The service might return
|
123
|
+
# fewer than this value. If unspecified, at most 25 members are returned. The
|
124
|
+
# maximum value is 100; values above 100 are coerced to 100. Maximum might
|
125
|
+
# change in the future.
|
126
|
+
# @!attribute [rw] page_token
|
127
|
+
# @return [::String]
|
128
|
+
# Optional. Page token returned from previous List Call.
|
129
|
+
class ListMembersRequest
|
130
|
+
include ::Google::Protobuf::MessageExts
|
131
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
132
|
+
end
|
133
|
+
|
134
|
+
# Response of list members.
|
135
|
+
# @!attribute [rw] members
|
136
|
+
# @return [::Array<::Google::Apps::Meet::V2beta::Member>]
|
137
|
+
# The list of members for the current page.
|
138
|
+
# @!attribute [rw] next_page_token
|
139
|
+
# @return [::String]
|
140
|
+
# Token to be circulated back for further list call if current list doesn't
|
141
|
+
# include all the members. Unset if all members are returned.
|
142
|
+
class ListMembersResponse
|
143
|
+
include ::Google::Protobuf::MessageExts
|
144
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
145
|
+
end
|
146
|
+
|
147
|
+
# Request to delete a member from a space.
|
148
|
+
# @!attribute [rw] name
|
149
|
+
# @return [::String]
|
150
|
+
# Required. Format: “spaces/\\{space}/members/\\{member}”
|
151
|
+
class DeleteMemberRequest
|
152
|
+
include ::Google::Protobuf::MessageExts
|
153
|
+
extend ::Google::Protobuf::MessageExts::ClassMethods
|
154
|
+
end
|
155
|
+
|
67
156
|
# Request to get a conference record.
|
68
157
|
# @!attribute [rw] name
|
69
158
|
# @return [::String]
|
@@ -85,15 +174,22 @@ module Google
|
|
85
174
|
# Optional. Page token returned from previous List Call.
|
86
175
|
# @!attribute [rw] filter
|
87
176
|
# @return [::String]
|
88
|
-
# Optional. User specified filtering condition in EBNF
|
89
|
-
#
|
177
|
+
# Optional. User specified filtering condition in [EBNF
|
178
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
179
|
+
# The following are the filterable fields:
|
90
180
|
#
|
91
181
|
# * `space.meeting_code`
|
92
182
|
# * `space.name`
|
93
183
|
# * `start_time`
|
94
184
|
# * `end_time`
|
95
185
|
#
|
96
|
-
# For example,
|
186
|
+
# For example, consider the following filters:
|
187
|
+
#
|
188
|
+
# * `space.name = "spaces/NAME"`
|
189
|
+
# * `space.meeting_code = "abc-mnop-xyz"`
|
190
|
+
# * `start_time>="2024-01-01T00:00:00.000Z" AND
|
191
|
+
# start_time<="2024-01-02T00:00:00.000Z"`
|
192
|
+
# * `end_time IS NULL`
|
97
193
|
class ListConferenceRecordsRequest
|
98
194
|
include ::Google::Protobuf::MessageExts
|
99
195
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
@@ -112,7 +208,7 @@ module Google
|
|
112
208
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
113
209
|
end
|
114
210
|
|
115
|
-
# Request to get a
|
211
|
+
# Request to get a participant.
|
116
212
|
# @!attribute [rw] name
|
117
213
|
# @return [::String]
|
118
214
|
# Required. Resource name of the participant.
|
@@ -121,7 +217,7 @@ module Google
|
|
121
217
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
122
218
|
end
|
123
219
|
|
124
|
-
# Request to fetch list of
|
220
|
+
# Request to fetch list of participants per conference.
|
125
221
|
# @!attribute [rw] parent
|
126
222
|
# @return [::String]
|
127
223
|
# Required. Format: `conferenceRecords/{conference_record}`
|
@@ -137,8 +233,9 @@ module Google
|
|
137
233
|
# Page token returned from previous List Call.
|
138
234
|
# @!attribute [rw] filter
|
139
235
|
# @return [::String]
|
140
|
-
# Optional. User specified filtering condition in EBNF
|
141
|
-
#
|
236
|
+
# Optional. User specified filtering condition in [EBNF
|
237
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
238
|
+
# The following are the filterable fields:
|
142
239
|
#
|
143
240
|
# * `earliest_start_time`
|
144
241
|
# * `latest_end_time`
|
@@ -178,7 +275,7 @@ module Google
|
|
178
275
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
179
276
|
end
|
180
277
|
|
181
|
-
# Request to fetch list of participant sessions per conference record per
|
278
|
+
# Request to fetch list of participant sessions per conference record, per
|
182
279
|
# participant.
|
183
280
|
# @!attribute [rw] parent
|
184
281
|
# @return [::String]
|
@@ -195,8 +292,9 @@ module Google
|
|
195
292
|
# Optional. Page token returned from previous List Call.
|
196
293
|
# @!attribute [rw] filter
|
197
294
|
# @return [::String]
|
198
|
-
# Optional. User specified filtering condition in EBNF
|
199
|
-
#
|
295
|
+
# Optional. User specified filtering condition in [EBNF
|
296
|
+
# format](https://en.wikipedia.org/wiki/Extended_Backus%E2%80%93Naur_form).
|
297
|
+
# The following are the filterable fields:
|
200
298
|
#
|
201
299
|
# * `start_time`
|
202
300
|
# * `end_time`
|
@@ -332,7 +430,7 @@ module Google
|
|
332
430
|
extend ::Google::Protobuf::MessageExts::ClassMethods
|
333
431
|
end
|
334
432
|
|
335
|
-
# Response for ListTranscriptEntries method
|
433
|
+
# Response for ListTranscriptEntries method.
|
336
434
|
# @!attribute [rw] transcript_entries
|
337
435
|
# @return [::Array<::Google::Apps::Meet::V2beta::TranscriptEntry>]
|
338
436
|
# List of TranscriptEntries in one page.
|