google-apps-meet-v2beta 0.a → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +12 -0
  3. data/AUTHENTICATION.md +149 -0
  4. data/README.md +144 -8
  5. data/lib/google/apps/meet/v2beta/conference_records_service/client.rb +1595 -0
  6. data/lib/google/apps/meet/v2beta/conference_records_service/credentials.rb +44 -0
  7. data/lib/google/apps/meet/v2beta/conference_records_service/paths.rb +136 -0
  8. data/lib/google/apps/meet/v2beta/conference_records_service/rest/client.rb +1490 -0
  9. data/lib/google/apps/meet/v2beta/conference_records_service/rest/service_stub.rb +754 -0
  10. data/lib/google/apps/meet/v2beta/conference_records_service/rest.rb +52 -0
  11. data/lib/google/apps/meet/v2beta/conference_records_service.rb +55 -0
  12. data/lib/google/apps/meet/v2beta/resource_pb.rb +64 -0
  13. data/lib/google/apps/meet/v2beta/rest.rb +38 -0
  14. data/lib/google/apps/meet/v2beta/service_pb.rb +73 -0
  15. data/lib/google/apps/meet/v2beta/service_services_pb.rb +122 -0
  16. data/lib/google/apps/meet/v2beta/spaces_service/client.rb +687 -0
  17. data/lib/google/apps/meet/v2beta/spaces_service/credentials.rb +44 -0
  18. data/lib/google/apps/meet/v2beta/spaces_service/paths.rb +61 -0
  19. data/lib/google/apps/meet/v2beta/spaces_service/rest/client.rb +638 -0
  20. data/lib/google/apps/meet/v2beta/spaces_service/rest/service_stub.rb +285 -0
  21. data/lib/google/apps/meet/v2beta/spaces_service/rest.rb +52 -0
  22. data/lib/google/apps/meet/v2beta/spaces_service.rb +55 -0
  23. data/lib/google/apps/meet/v2beta/version.rb +7 -2
  24. data/lib/google/apps/meet/v2beta.rb +46 -0
  25. data/lib/google-apps-meet-v2beta.rb +21 -0
  26. data/proto_docs/README.md +4 -0
  27. data/proto_docs/google/api/client.rb +394 -0
  28. data/proto_docs/google/api/field_behavior.rb +85 -0
  29. data/proto_docs/google/api/launch_stage.rb +71 -0
  30. data/proto_docs/google/api/resource.rb +222 -0
  31. data/proto_docs/google/apps/meet/v2beta/resource.rb +375 -0
  32. data/proto_docs/google/apps/meet/v2beta/service.rb +350 -0
  33. data/proto_docs/google/protobuf/duration.rb +98 -0
  34. data/proto_docs/google/protobuf/empty.rb +34 -0
  35. data/proto_docs/google/protobuf/field_mask.rb +229 -0
  36. data/proto_docs/google/protobuf/timestamp.rb +127 -0
  37. metadata +190 -13
@@ -0,0 +1,222 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Api
22
+ # A simple descriptor of a resource type.
23
+ #
24
+ # ResourceDescriptor annotates a resource message (either by means of a
25
+ # protobuf annotation or use in the service config), and associates the
26
+ # resource's schema, the resource type, and the pattern of the resource name.
27
+ #
28
+ # Example:
29
+ #
30
+ # message Topic {
31
+ # // Indicates this message defines a resource schema.
32
+ # // Declares the resource type in the format of {service}/{kind}.
33
+ # // For Kubernetes resources, the format is {api group}/{kind}.
34
+ # option (google.api.resource) = {
35
+ # type: "pubsub.googleapis.com/Topic"
36
+ # pattern: "projects/{project}/topics/{topic}"
37
+ # };
38
+ # }
39
+ #
40
+ # The ResourceDescriptor Yaml config will look like:
41
+ #
42
+ # resources:
43
+ # - type: "pubsub.googleapis.com/Topic"
44
+ # pattern: "projects/{project}/topics/{topic}"
45
+ #
46
+ # Sometimes, resources have multiple patterns, typically because they can
47
+ # live under multiple parents.
48
+ #
49
+ # Example:
50
+ #
51
+ # message LogEntry {
52
+ # option (google.api.resource) = {
53
+ # type: "logging.googleapis.com/LogEntry"
54
+ # pattern: "projects/{project}/logs/{log}"
55
+ # pattern: "folders/{folder}/logs/{log}"
56
+ # pattern: "organizations/{organization}/logs/{log}"
57
+ # pattern: "billingAccounts/{billing_account}/logs/{log}"
58
+ # };
59
+ # }
60
+ #
61
+ # The ResourceDescriptor Yaml config will look like:
62
+ #
63
+ # resources:
64
+ # - type: 'logging.googleapis.com/LogEntry'
65
+ # pattern: "projects/{project}/logs/{log}"
66
+ # pattern: "folders/{folder}/logs/{log}"
67
+ # pattern: "organizations/{organization}/logs/{log}"
68
+ # pattern: "billingAccounts/{billing_account}/logs/{log}"
69
+ # @!attribute [rw] type
70
+ # @return [::String]
71
+ # The resource type. It must be in the format of
72
+ # \\{service_name}/\\{resource_type_kind}. The `resource_type_kind` must be
73
+ # singular and must not include version numbers.
74
+ #
75
+ # Example: `storage.googleapis.com/Bucket`
76
+ #
77
+ # The value of the resource_type_kind must follow the regular expression
78
+ # /[A-Za-z][a-zA-Z0-9]+/. It should start with an upper case character and
79
+ # should use PascalCase (UpperCamelCase). The maximum number of
80
+ # characters allowed for the `resource_type_kind` is 100.
81
+ # @!attribute [rw] pattern
82
+ # @return [::Array<::String>]
83
+ # Optional. The relative resource name pattern associated with this resource
84
+ # type. The DNS prefix of the full resource name shouldn't be specified here.
85
+ #
86
+ # The path pattern must follow the syntax, which aligns with HTTP binding
87
+ # syntax:
88
+ #
89
+ # Template = Segment { "/" Segment } ;
90
+ # Segment = LITERAL | Variable ;
91
+ # Variable = "{" LITERAL "}" ;
92
+ #
93
+ # Examples:
94
+ #
95
+ # - "projects/\\{project}/topics/\\{topic}"
96
+ # - "projects/\\{project}/knowledgeBases/\\{knowledge_base}"
97
+ #
98
+ # The components in braces correspond to the IDs for each resource in the
99
+ # hierarchy. It is expected that, if multiple patterns are provided,
100
+ # the same component name (e.g. "project") refers to IDs of the same
101
+ # type of resource.
102
+ # @!attribute [rw] name_field
103
+ # @return [::String]
104
+ # Optional. The field on the resource that designates the resource name
105
+ # field. If omitted, this is assumed to be "name".
106
+ # @!attribute [rw] history
107
+ # @return [::Google::Api::ResourceDescriptor::History]
108
+ # Optional. The historical or future-looking state of the resource pattern.
109
+ #
110
+ # Example:
111
+ #
112
+ # // The InspectTemplate message originally only supported resource
113
+ # // names with organization, and project was added later.
114
+ # message InspectTemplate {
115
+ # option (google.api.resource) = {
116
+ # type: "dlp.googleapis.com/InspectTemplate"
117
+ # pattern:
118
+ # "organizations/{organization}/inspectTemplates/{inspect_template}"
119
+ # pattern: "projects/{project}/inspectTemplates/{inspect_template}"
120
+ # history: ORIGINALLY_SINGLE_PATTERN
121
+ # };
122
+ # }
123
+ # @!attribute [rw] plural
124
+ # @return [::String]
125
+ # The plural name used in the resource name and permission names, such as
126
+ # 'projects' for the resource name of 'projects/\\{project}' and the permission
127
+ # name of 'cloudresourcemanager.googleapis.com/projects.get'. It is the same
128
+ # concept of the `plural` field in k8s CRD spec
129
+ # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
130
+ #
131
+ # Note: The plural form is required even for singleton resources. See
132
+ # https://aip.dev/156
133
+ # @!attribute [rw] singular
134
+ # @return [::String]
135
+ # The same concept of the `singular` field in k8s CRD spec
136
+ # https://kubernetes.io/docs/tasks/access-kubernetes-api/custom-resources/custom-resource-definitions/
137
+ # Such as "project" for the `resourcemanager.googleapis.com/Project` type.
138
+ # @!attribute [rw] style
139
+ # @return [::Array<::Google::Api::ResourceDescriptor::Style>]
140
+ # Style flag(s) for this resource.
141
+ # These indicate that a resource is expected to conform to a given
142
+ # style. See the specific style flags for additional information.
143
+ class ResourceDescriptor
144
+ include ::Google::Protobuf::MessageExts
145
+ extend ::Google::Protobuf::MessageExts::ClassMethods
146
+
147
+ # A description of the historical or future-looking state of the
148
+ # resource pattern.
149
+ module History
150
+ # The "unset" value.
151
+ HISTORY_UNSPECIFIED = 0
152
+
153
+ # The resource originally had one pattern and launched as such, and
154
+ # additional patterns were added later.
155
+ ORIGINALLY_SINGLE_PATTERN = 1
156
+
157
+ # The resource has one pattern, but the API owner expects to add more
158
+ # later. (This is the inverse of ORIGINALLY_SINGLE_PATTERN, and prevents
159
+ # that from being necessary once there are multiple patterns.)
160
+ FUTURE_MULTI_PATTERN = 2
161
+ end
162
+
163
+ # A flag representing a specific style that a resource claims to conform to.
164
+ module Style
165
+ # The unspecified value. Do not use.
166
+ STYLE_UNSPECIFIED = 0
167
+
168
+ # This resource is intended to be "declarative-friendly".
169
+ #
170
+ # Declarative-friendly resources must be more strictly consistent, and
171
+ # setting this to true communicates to tools that this resource should
172
+ # adhere to declarative-friendly expectations.
173
+ #
174
+ # Note: This is used by the API linter (linter.aip.dev) to enable
175
+ # additional checks.
176
+ DECLARATIVE_FRIENDLY = 1
177
+ end
178
+ end
179
+
180
+ # Defines a proto annotation that describes a string field that refers to
181
+ # an API resource.
182
+ # @!attribute [rw] type
183
+ # @return [::String]
184
+ # The resource type that the annotated field references.
185
+ #
186
+ # Example:
187
+ #
188
+ # message Subscription {
189
+ # string topic = 2 [(google.api.resource_reference) = {
190
+ # type: "pubsub.googleapis.com/Topic"
191
+ # }];
192
+ # }
193
+ #
194
+ # Occasionally, a field may reference an arbitrary resource. In this case,
195
+ # APIs use the special value * in their resource reference.
196
+ #
197
+ # Example:
198
+ #
199
+ # message GetIamPolicyRequest {
200
+ # string resource = 2 [(google.api.resource_reference) = {
201
+ # type: "*"
202
+ # }];
203
+ # }
204
+ # @!attribute [rw] child_type
205
+ # @return [::String]
206
+ # The resource type of a child collection that the annotated field
207
+ # references. This is useful for annotating the `parent` field that
208
+ # doesn't have a fixed resource type.
209
+ #
210
+ # Example:
211
+ #
212
+ # message ListLogEntriesRequest {
213
+ # string parent = 1 [(google.api.resource_reference) = {
214
+ # child_type: "logging.googleapis.com/LogEntry"
215
+ # };
216
+ # }
217
+ class ResourceReference
218
+ include ::Google::Protobuf::MessageExts
219
+ extend ::Google::Protobuf::MessageExts::ClassMethods
220
+ end
221
+ end
222
+ end
@@ -0,0 +1,375 @@
1
+ # frozen_string_literal: true
2
+
3
+ # Copyright 2023 Google LLC
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # https://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+
17
+ # Auto-generated by gapic-generator-ruby. DO NOT EDIT!
18
+
19
+
20
+ module Google
21
+ module Apps
22
+ module Meet
23
+ module V2beta
24
+ # [Developer Preview](https://developers.google.com/workspace/preview).
25
+ # Virtual place where conferences are held. Only one active conference can be
26
+ # held in one space at any given time.
27
+ # @!attribute [rw] name
28
+ # @return [::String]
29
+ # Immutable. Resource name of the space.
30
+ # Format: `spaces/{space}`
31
+ # @!attribute [r] meeting_uri
32
+ # @return [::String]
33
+ # Output only. URI used to join meeting, such as
34
+ # `https://meet.google.com/abc-mnop-xyz`.
35
+ # @!attribute [r] meeting_code
36
+ # @return [::String]
37
+ # Output only. Type friendly code to join the meeting. Format:
38
+ # `[a-z]+-[a-z]+-[a-z]+` such as `abc-mnop-xyz`. The maximum length is 128
39
+ # characters. Can ONLY be used as alias of the space ID to get the space.
40
+ # @!attribute [rw] config
41
+ # @return [::Google::Apps::Meet::V2beta::SpaceConfig]
42
+ # Configuration pertaining to the meeting space.
43
+ # @!attribute [rw] active_conference
44
+ # @return [::Google::Apps::Meet::V2beta::ActiveConference]
45
+ # Active conference if it exists.
46
+ class Space
47
+ include ::Google::Protobuf::MessageExts
48
+ extend ::Google::Protobuf::MessageExts::ClassMethods
49
+ end
50
+
51
+ # Active conference.
52
+ # @!attribute [r] conference_record
53
+ # @return [::String]
54
+ # Output only. Reference to 'ConferenceRecord' resource.
55
+ # Format: `conferenceRecords/{conference_record}` where `{conference_record}`
56
+ # is a unique id for each instance of a call within a space.
57
+ class ActiveConference
58
+ include ::Google::Protobuf::MessageExts
59
+ extend ::Google::Protobuf::MessageExts::ClassMethods
60
+ end
61
+
62
+ # The configuration pertaining to a meeting space.
63
+ # @!attribute [rw] access_type
64
+ # @return [::Google::Apps::Meet::V2beta::SpaceConfig::AccessType]
65
+ # Access type of the meeting space that determines who can join without
66
+ # knocking. Default: The user's default access settings. Controlled by the
67
+ # user's admin for enterprise users or RESTRICTED.
68
+ # @!attribute [rw] entry_point_access
69
+ # @return [::Google::Apps::Meet::V2beta::SpaceConfig::EntryPointAccess]
70
+ # Defines the entry points that can be used to join meetings hosted in this
71
+ # meeting space.
72
+ # Default: EntryPointAccess.ALL
73
+ class SpaceConfig
74
+ include ::Google::Protobuf::MessageExts
75
+ extend ::Google::Protobuf::MessageExts::ClassMethods
76
+
77
+ # Possible access types for a meeting space.
78
+ module AccessType
79
+ # Default value specified by the user's organization.
80
+ # Note: This is never returned, as the configured access type is
81
+ # returned instead.
82
+ ACCESS_TYPE_UNSPECIFIED = 0
83
+
84
+ # Anyone with the join information (for example, the URL or phone access
85
+ # information) can join without knocking.
86
+ OPEN = 1
87
+
88
+ # Members of the host's organization, invited external users, and dial-in
89
+ # users can join without knocking. Everyone else must knock.
90
+ TRUSTED = 2
91
+
92
+ # Only invitees can join without knocking. Everyone else must knock.
93
+ RESTRICTED = 3
94
+ end
95
+
96
+ # Entry points that can be used to join a meeting. Example:
97
+ # `meet.google.com`, the Embed SDK Web, or a mobile application.
98
+ module EntryPointAccess
99
+ # Unused.
100
+ ENTRY_POINT_ACCESS_UNSPECIFIED = 0
101
+
102
+ # All entry points are allowed.
103
+ ALL = 1
104
+
105
+ # Only entry points owned by the Google Cloud project that created the
106
+ # space can be used to join meetings in this space. Apps can use the Embed
107
+ # SDK Web or mobile Meet SDKs to create owned entry points.
108
+ CREATOR_APP_ONLY = 2
109
+ end
110
+ end
111
+
112
+ # [Developer Preview](https://developers.google.com/workspace/preview).
113
+ # Single instance of a meeting held in a space.
114
+ # @!attribute [rw] name
115
+ # @return [::String]
116
+ # Identifier. Resource name of the conference record.
117
+ # Format: `conferenceRecords/{conference_record}` where `{conference_record}`
118
+ # is a unique id for each instance of a call within a space.
119
+ # @!attribute [r] start_time
120
+ # @return [::Google::Protobuf::Timestamp]
121
+ # Output only. Timestamp when the conference started, always set.
122
+ # @!attribute [r] end_time
123
+ # @return [::Google::Protobuf::Timestamp]
124
+ # Output only. Timestamp when the conference ended.
125
+ # Set for past conferences. Unset if the conference is ongoing.
126
+ # @!attribute [r] expire_time
127
+ # @return [::Google::Protobuf::Timestamp]
128
+ # Output only. Server enforced expire time for when this conference record
129
+ # resource is deleted. The resource is deleted 30 days after the conference
130
+ # ends.
131
+ # @!attribute [r] space
132
+ # @return [::String]
133
+ # Output only. The space where the conference was held.
134
+ class ConferenceRecord
135
+ include ::Google::Protobuf::MessageExts
136
+ extend ::Google::Protobuf::MessageExts::ClassMethods
137
+ end
138
+
139
+ # [Developer Preview](https://developers.google.com/workspace/preview).
140
+ # User who attended or is attending a conference.
141
+ # @!attribute [rw] signedin_user
142
+ # @return [::Google::Apps::Meet::V2beta::SignedinUser]
143
+ # Signed-in user.
144
+ # @!attribute [rw] anonymous_user
145
+ # @return [::Google::Apps::Meet::V2beta::AnonymousUser]
146
+ # Anonymous user.
147
+ # @!attribute [rw] phone_user
148
+ # @return [::Google::Apps::Meet::V2beta::PhoneUser]
149
+ # User who calls in from their phone.
150
+ # @!attribute [r] name
151
+ # @return [::String]
152
+ # Output only. Resource name of the participant.
153
+ # Format: `conferenceRecords/{conference_record}/participants/{participant}`
154
+ # @!attribute [r] earliest_start_time
155
+ # @return [::Google::Protobuf::Timestamp]
156
+ # Output only. Time when the participant joined the meeting for the first
157
+ # time.
158
+ # @!attribute [r] latest_end_time
159
+ # @return [::Google::Protobuf::Timestamp]
160
+ # Output only. Time when the participant left the meeting for the last time.
161
+ # This can be null if it is an active meeting.
162
+ class Participant
163
+ include ::Google::Protobuf::MessageExts
164
+ extend ::Google::Protobuf::MessageExts::ClassMethods
165
+ end
166
+
167
+ # [Developer Preview](https://developers.google.com/workspace/preview).
168
+ # Refers to each unique join/leave session when a user joins a conference from
169
+ # a device. Note that any time a user joins the conference a new unique ID is
170
+ # assigned. That means if a user joins a space multiple times from the same
171
+ # device, they're assigned different IDs, and are also be treated as different
172
+ # participant sessions.
173
+ # @!attribute [rw] name
174
+ # @return [::String]
175
+ # Identifier. Session id.
176
+ # @!attribute [r] start_time
177
+ # @return [::Google::Protobuf::Timestamp]
178
+ # Output only. Timestamp when the user session started.
179
+ # @!attribute [r] end_time
180
+ # @return [::Google::Protobuf::Timestamp]
181
+ # Output only. Timestamp when the user session ended. Unset if the user
182
+ # session hasn’t ended.
183
+ class ParticipantSession
184
+ include ::Google::Protobuf::MessageExts
185
+ extend ::Google::Protobuf::MessageExts::ClassMethods
186
+ end
187
+
188
+ # A signed-in user can be:
189
+ # a) An individual joining from a personal computer, mobile device, or through
190
+ # companion mode.
191
+ # b) A robot account used by conference room devices.
192
+ # @!attribute [r] user
193
+ # @return [::String]
194
+ # Output only. Unique ID for the user. Interoperable with Admin SDK API and
195
+ # People API. Format: `users/{user}`
196
+ # @!attribute [r] display_name
197
+ # @return [::String]
198
+ # Output only. For a personal device, it's the user's first and last name.
199
+ # For a robot account, it's the admin specified device name. For example,
200
+ # "Altostrat Room".
201
+ class SignedinUser
202
+ include ::Google::Protobuf::MessageExts
203
+ extend ::Google::Protobuf::MessageExts::ClassMethods
204
+ end
205
+
206
+ # User who joins anonymously (meaning not signed into a Google Account).
207
+ # @!attribute [r] display_name
208
+ # @return [::String]
209
+ # Output only. User provided name when they join a conference anonymously.
210
+ class AnonymousUser
211
+ include ::Google::Protobuf::MessageExts
212
+ extend ::Google::Protobuf::MessageExts::ClassMethods
213
+ end
214
+
215
+ # User dialing in from a phone where the user's identity is unknown because
216
+ # they haven't signed in with a Google Account.
217
+ # @!attribute [r] display_name
218
+ # @return [::String]
219
+ # Output only. Partially redacted user's phone number when they call in.
220
+ class PhoneUser
221
+ include ::Google::Protobuf::MessageExts
222
+ extend ::Google::Protobuf::MessageExts::ClassMethods
223
+ end
224
+
225
+ # [Developer Preview](https://developers.google.com/workspace/preview).
226
+ # Metadata about a recording created during a conference.
227
+ # @!attribute [r] drive_destination
228
+ # @return [::Google::Apps::Meet::V2beta::DriveDestination]
229
+ # Output only. Recording is saved to Google Drive as an mp4 file. The
230
+ # `drive_destination` includes the Drive `fileId` that can be used to
231
+ # download the file using the `files.get` method of the Drive API.
232
+ # @!attribute [r] name
233
+ # @return [::String]
234
+ # Output only. Resource name of the recording.
235
+ # Format: `conferenceRecords/{conference_record}/recordings/{recording}`
236
+ # where `{recording}` is a 1:1 mapping to each unique recording session
237
+ # during the conference.
238
+ # @!attribute [r] state
239
+ # @return [::Google::Apps::Meet::V2beta::Recording::State]
240
+ # Output only. Current state.
241
+ # @!attribute [r] start_time
242
+ # @return [::Google::Protobuf::Timestamp]
243
+ # Output only. Timestamp when the recording started.
244
+ # @!attribute [r] end_time
245
+ # @return [::Google::Protobuf::Timestamp]
246
+ # Output only. Timestamp when the recording ended.
247
+ class Recording
248
+ include ::Google::Protobuf::MessageExts
249
+ extend ::Google::Protobuf::MessageExts::ClassMethods
250
+
251
+ # Current state of the recording session.
252
+ module State
253
+ # Default, never used.
254
+ STATE_UNSPECIFIED = 0
255
+
256
+ # An active recording session has started.
257
+ STARTED = 1
258
+
259
+ # This recording session has ended, but the recording file hasn't been
260
+ # generated yet.
261
+ ENDED = 2
262
+
263
+ # Recording file is generated and ready to download.
264
+ FILE_GENERATED = 3
265
+ end
266
+ end
267
+
268
+ # Export location where a recording file is saved in Google Drive.
269
+ # @!attribute [r] file
270
+ # @return [::String]
271
+ # Output only. The `fileId` for the underlying MP4 file. For example,
272
+ # "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use `$ GET
273
+ # https://www.googleapis.com/drive/v3/files/\\{$fileId}?alt=media` to download
274
+ # the blob. For more information, see
275
+ # https://developers.google.com/drive/api/v3/reference/files/get.
276
+ # @!attribute [r] export_uri
277
+ # @return [::String]
278
+ # Output only. Link used to play back the recording file in the browser. For
279
+ # example, `https://drive.google.com/file/d/{$fileId}/view`.
280
+ class DriveDestination
281
+ include ::Google::Protobuf::MessageExts
282
+ extend ::Google::Protobuf::MessageExts::ClassMethods
283
+ end
284
+
285
+ # [Developer Preview](https://developers.google.com/workspace/preview).
286
+ # Metadata for a transcript generated from a conference. It refers to the ASR
287
+ # (Automatic Speech Recognition) result of user's speech during the conference.
288
+ # @!attribute [r] docs_destination
289
+ # @return [::Google::Apps::Meet::V2beta::DocsDestination]
290
+ # Output only. Where the Google Docs transcript is saved.
291
+ # @!attribute [r] name
292
+ # @return [::String]
293
+ # Output only. Resource name of the transcript.
294
+ # Format: `conferenceRecords/{conference_record}/transcripts/{transcript}`,
295
+ # where `{transcript}` is a 1:1 mapping to each unique transcription session
296
+ # of the conference.
297
+ # @!attribute [r] state
298
+ # @return [::Google::Apps::Meet::V2beta::Transcript::State]
299
+ # Output only. Current state.
300
+ # @!attribute [r] start_time
301
+ # @return [::Google::Protobuf::Timestamp]
302
+ # Output only. Timestamp when the transcript started.
303
+ # @!attribute [r] end_time
304
+ # @return [::Google::Protobuf::Timestamp]
305
+ # Output only. Timestamp when the transcript stopped.
306
+ class Transcript
307
+ include ::Google::Protobuf::MessageExts
308
+ extend ::Google::Protobuf::MessageExts::ClassMethods
309
+
310
+ # Current state of the transcript session.
311
+ module State
312
+ # Default, never used.
313
+ STATE_UNSPECIFIED = 0
314
+
315
+ # An active transcript session has started.
316
+ STARTED = 1
317
+
318
+ # This transcript session has ended, but the transcript file hasn't been
319
+ # generated yet.
320
+ ENDED = 2
321
+
322
+ # Transcript file is generated and ready to download.
323
+ FILE_GENERATED = 3
324
+ end
325
+ end
326
+
327
+ # Google Docs location where the transcript file is saved.
328
+ # @!attribute [r] document
329
+ # @return [::String]
330
+ # Output only. The document ID for the underlying Google Docs transcript
331
+ # file. For example, "1kuceFZohVoCh6FulBHxwy6I15Ogpc4hP". Use the
332
+ # `documents.get` method of the Google Docs API
333
+ # (https://developers.google.com/docs/api/reference/rest/v1/documents/get) to
334
+ # fetch the content.
335
+ # @!attribute [r] export_uri
336
+ # @return [::String]
337
+ # Output only. URI for the Google Docs transcript file. Use
338
+ # `https://docs.google.com/document/d/{$DocumentId}/view` to browse the
339
+ # transcript in the browser.
340
+ class DocsDestination
341
+ include ::Google::Protobuf::MessageExts
342
+ extend ::Google::Protobuf::MessageExts::ClassMethods
343
+ end
344
+
345
+ # [Developer Preview](https://developers.google.com/workspace/preview).
346
+ # Single entry for one user’s speech during a transcript session.
347
+ # @!attribute [r] name
348
+ # @return [::String]
349
+ # Output only. Resource name of the entry. Format:
350
+ # "conferenceRecords/\\{conference_record}/transcripts/\\{transcript}/entries/\\{entry}"
351
+ # @!attribute [r] participant
352
+ # @return [::String]
353
+ # Output only. Refer to the participant who speaks.
354
+ # @!attribute [r] text
355
+ # @return [::String]
356
+ # Output only. The transcribed text of the participant's voice, at maximum
357
+ # 10K words. Note that the limit is subject to change.
358
+ # @!attribute [r] language_code
359
+ # @return [::String]
360
+ # Output only. Language of spoken text, such as "en-US".
361
+ # IETF BCP 47 syntax (https://tools.ietf.org/html/bcp47)
362
+ # @!attribute [r] start_time
363
+ # @return [::Google::Protobuf::Timestamp]
364
+ # Output only. Timestamp when the transcript entry started.
365
+ # @!attribute [r] end_time
366
+ # @return [::Google::Protobuf::Timestamp]
367
+ # Output only. Timestamp when the transcript entry ended.
368
+ class TranscriptEntry
369
+ include ::Google::Protobuf::MessageExts
370
+ extend ::Google::Protobuf::MessageExts::ClassMethods
371
+ end
372
+ end
373
+ end
374
+ end
375
+ end