Skip to content

Commit 6679d16

Browse files
feat: [google-apps-meet] added start and end time fields to Recording and Transcript resources (googleapis#12130)
- [ ] Regenerate this pull request now. Users may now access the start_time and end_time fields of the Recording and Transcript resources in the Meet REST API. PiperOrigin-RevId: 591226459 Source-Link: googleapis/googleapis@5c1f64e Source-Link: https://github.com/googleapis/googleapis-gen/commit/7f5ce2ab19e710ce9a086d8bed3f7430bce42506 Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWFwcHMtbWVldC8uT3dsQm90LnlhbWwiLCJoIjoiN2Y1Y2UyYWIxOWU3MTBjZTlhMDg2ZDhiZWQzZjc0MzBiY2U0MjUwNiJ9 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent c6d9113 commit 6679d16

3 files changed

Lines changed: 34 additions & 2 deletions

File tree

packages/google-apps-meet/google/apps/meet/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.1.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-apps-meet/google/apps/meet_v2beta/gapic_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515
#
16-
__version__ = "0.1.0" # {x-release-please-version}
16+
__version__ = "0.0.0" # {x-release-please-version}

packages/google-apps-meet/google/apps/meet_v2beta/types/resource.py

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -423,6 +423,12 @@ class Recording(proto.Message):
423423
recording session during the conference.
424424
state (google.apps.meet_v2beta.types.Recording.State):
425425
Output only. Current state.
426+
start_time (google.protobuf.timestamp_pb2.Timestamp):
427+
Output only. Timestamp when the recording
428+
started.
429+
end_time (google.protobuf.timestamp_pb2.Timestamp):
430+
Output only. Timestamp when the recording
431+
ended.
426432
"""
427433

428434
class State(proto.Enum):
@@ -460,6 +466,16 @@ class State(proto.Enum):
460466
number=3,
461467
enum=State,
462468
)
469+
start_time: timestamp_pb2.Timestamp = proto.Field(
470+
proto.MESSAGE,
471+
number=4,
472+
message=timestamp_pb2.Timestamp,
473+
)
474+
end_time: timestamp_pb2.Timestamp = proto.Field(
475+
proto.MESSAGE,
476+
number=5,
477+
message=timestamp_pb2.Timestamp,
478+
)
463479

464480

465481
class DriveDestination(proto.Message):
@@ -512,6 +528,12 @@ class Transcript(proto.Message):
512528
transcription session of the conference.
513529
state (google.apps.meet_v2beta.types.Transcript.State):
514530
Output only. Current state.
531+
start_time (google.protobuf.timestamp_pb2.Timestamp):
532+
Output only. Timestamp when the transcript
533+
started.
534+
end_time (google.protobuf.timestamp_pb2.Timestamp):
535+
Output only. Timestamp when the transcript
536+
stopped.
515537
"""
516538

517539
class State(proto.Enum):
@@ -549,6 +571,16 @@ class State(proto.Enum):
549571
number=3,
550572
enum=State,
551573
)
574+
start_time: timestamp_pb2.Timestamp = proto.Field(
575+
proto.MESSAGE,
576+
number=4,
577+
message=timestamp_pb2.Timestamp,
578+
)
579+
end_time: timestamp_pb2.Timestamp = proto.Field(
580+
proto.MESSAGE,
581+
number=5,
582+
message=timestamp_pb2.Timestamp,
583+
)
552584

553585

554586
class DocsDestination(proto.Message):

0 commit comments

Comments
 (0)