Skip to content

Commit b7cf5a9

Browse files
feat: [google-apps-meet] added v2 libraries for the Meet API GA release (#12249)
BEGIN_COMMIT_OVERRIDE feat: Added v2 libraries for the Meet API GA release feat: Set google.apps.meet_v2 as the default import END_COMMIT_OVERRIDE - [ ] Regenerate this pull request now. PiperOrigin-RevId: 603346335 Source-Link: googleapis/googleapis@16cccb2 Source-Link: googleapis/googleapis-gen@e1fb4cc Copy-Tag: eyJwIjoicGFja2FnZXMvZ29vZ2xlLWFwcHMtbWVldC8uT3dsQm90LnlhbWwiLCJoIjoiZTFmYjRjYzFhYWQ5ZGQ2ZDk3ZjdlZDk5OTk4NjUyNDZlZGFiYzcxZSJ9 --------- Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: Anthonios Partheniou <[email protected]>
1 parent 88cc5dd commit b7cf5a9

File tree

69 files changed

+31323
-7
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+31323
-7
lines changed

packages/google-apps-meet/.repo-metadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"repo": "googleapis/google-cloud-python",
1212
"distribution_name": "google-apps-meet",
1313
"api_id": "meet.googleapis.com",
14-
"default_version": "v2beta",
14+
"default_version": "v2",
1515
"codeowner_team": "",
1616
"api_shortname": "meet"
1717
}

packages/google-apps-meet/docs/index.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
.. include:: multiprocessing.rst
44

5+
This package includes clients for multiple versions of Google Meet API.
6+
By default, you will get version ``meet_v2``.
7+
8+
9+
API Reference
10+
-------------
11+
.. toctree::
12+
:maxdepth: 2
13+
14+
meet_v2/services_
15+
meet_v2/types_
516

617
API Reference
718
-------------
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
ConferenceRecordsService
2+
------------------------------------------
3+
4+
.. automodule:: google.apps.meet_v2.services.conference_records_service
5+
:members:
6+
:inherited-members:
7+
8+
.. automodule:: google.apps.meet_v2.services.conference_records_service.pagers
9+
:members:
10+
:inherited-members:
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Services for Google Apps Meet v2 API
2+
====================================
3+
.. toctree::
4+
:maxdepth: 2
5+
6+
conference_records_service
7+
spaces_service
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
SpacesService
2+
-------------------------------
3+
4+
.. automodule:: google.apps.meet_v2.services.spaces_service
5+
:members:
6+
:inherited-members:
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Types for Google Apps Meet v2 API
2+
=================================
3+
4+
.. automodule:: google.apps.meet_v2.types
5+
:members:
6+
:show-inheritance:

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,17 @@
1818
__version__ = package_version.__version__
1919

2020

21-
from google.apps.meet_v2beta.services.conference_records_service.async_client import (
21+
from google.apps.meet_v2.services.conference_records_service.async_client import (
2222
ConferenceRecordsServiceAsyncClient,
2323
)
24-
from google.apps.meet_v2beta.services.conference_records_service.client import (
24+
from google.apps.meet_v2.services.conference_records_service.client import (
2525
ConferenceRecordsServiceClient,
2626
)
27-
from google.apps.meet_v2beta.services.spaces_service.async_client import (
27+
from google.apps.meet_v2.services.spaces_service.async_client import (
2828
SpacesServiceAsyncClient,
2929
)
30-
from google.apps.meet_v2beta.services.spaces_service.client import SpacesServiceClient
31-
from google.apps.meet_v2beta.types.resource import (
30+
from google.apps.meet_v2.services.spaces_service.client import SpacesServiceClient
31+
from google.apps.meet_v2.types.resource import (
3232
ActiveConference,
3333
AnonymousUser,
3434
ConferenceRecord,
@@ -44,7 +44,7 @@
4444
Transcript,
4545
TranscriptEntry,
4646
)
47-
from google.apps.meet_v2beta.types.service import (
47+
from google.apps.meet_v2.types.service import (
4848
CreateSpaceRequest,
4949
EndActiveConferenceRequest,
5050
GetConferenceRecordRequest,
Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
# -*- coding: utf-8 -*-
2+
# Copyright 2023 Google LLC
3+
#
4+
# Licensed under the Apache License, Version 2.0 (the "License");
5+
# you may not use this file except in compliance with the License.
6+
# You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
#
16+
from google.apps.meet_v2 import gapic_version as package_version
17+
18+
__version__ = package_version.__version__
19+
20+
21+
from .services.conference_records_service import (
22+
ConferenceRecordsServiceAsyncClient,
23+
ConferenceRecordsServiceClient,
24+
)
25+
from .services.spaces_service import SpacesServiceAsyncClient, SpacesServiceClient
26+
from .types.resource import (
27+
ActiveConference,
28+
AnonymousUser,
29+
ConferenceRecord,
30+
DocsDestination,
31+
DriveDestination,
32+
Participant,
33+
ParticipantSession,
34+
PhoneUser,
35+
Recording,
36+
SignedinUser,
37+
Space,
38+
SpaceConfig,
39+
Transcript,
40+
TranscriptEntry,
41+
)
42+
from .types.service import (
43+
CreateSpaceRequest,
44+
EndActiveConferenceRequest,
45+
GetConferenceRecordRequest,
46+
GetParticipantRequest,
47+
GetParticipantSessionRequest,
48+
GetRecordingRequest,
49+
GetSpaceRequest,
50+
GetTranscriptEntryRequest,
51+
GetTranscriptRequest,
52+
ListConferenceRecordsRequest,
53+
ListConferenceRecordsResponse,
54+
ListParticipantSessionsRequest,
55+
ListParticipantSessionsResponse,
56+
ListParticipantsRequest,
57+
ListParticipantsResponse,
58+
ListRecordingsRequest,
59+
ListRecordingsResponse,
60+
ListTranscriptEntriesRequest,
61+
ListTranscriptEntriesResponse,
62+
ListTranscriptsRequest,
63+
ListTranscriptsResponse,
64+
UpdateSpaceRequest,
65+
)
66+
67+
__all__ = (
68+
"ConferenceRecordsServiceAsyncClient",
69+
"SpacesServiceAsyncClient",
70+
"ActiveConference",
71+
"AnonymousUser",
72+
"ConferenceRecord",
73+
"ConferenceRecordsServiceClient",
74+
"CreateSpaceRequest",
75+
"DocsDestination",
76+
"DriveDestination",
77+
"EndActiveConferenceRequest",
78+
"GetConferenceRecordRequest",
79+
"GetParticipantRequest",
80+
"GetParticipantSessionRequest",
81+
"GetRecordingRequest",
82+
"GetSpaceRequest",
83+
"GetTranscriptEntryRequest",
84+
"GetTranscriptRequest",
85+
"ListConferenceRecordsRequest",
86+
"ListConferenceRecordsResponse",
87+
"ListParticipantSessionsRequest",
88+
"ListParticipantSessionsResponse",
89+
"ListParticipantsRequest",
90+
"ListParticipantsResponse",
91+
"ListRecordingsRequest",
92+
"ListRecordingsResponse",
93+
"ListTranscriptEntriesRequest",
94+
"ListTranscriptEntriesResponse",
95+
"ListTranscriptsRequest",
96+
"ListTranscriptsResponse",
97+
"Participant",
98+
"ParticipantSession",
99+
"PhoneUser",
100+
"Recording",
101+
"SignedinUser",
102+
"Space",
103+
"SpaceConfig",
104+
"SpacesServiceClient",
105+
"Transcript",
106+
"TranscriptEntry",
107+
"UpdateSpaceRequest",
108+
)

0 commit comments

Comments
 (0)