Skip to content

Commit

Permalink
feat: [google-apps-meet] added v2 libraries for the Meet API GA relea…
Browse files Browse the repository at this point in the history
…se (#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 <partheniou@google.com>
  • Loading branch information
3 people committed Feb 1, 2024
1 parent 88cc5dd commit b7cf5a9
Show file tree
Hide file tree
Showing 69 changed files with 31,323 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/google-apps-meet/.repo-metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"repo": "googleapis/google-cloud-python",
"distribution_name": "google-apps-meet",
"api_id": "meet.googleapis.com",
"default_version": "v2beta",
"default_version": "v2",
"codeowner_team": "",
"api_shortname": "meet"
}
11 changes: 11 additions & 0 deletions packages/google-apps-meet/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

.. include:: multiprocessing.rst

This package includes clients for multiple versions of Google Meet API.
By default, you will get version ``meet_v2``.


API Reference
-------------
.. toctree::
:maxdepth: 2

meet_v2/services_
meet_v2/types_

API Reference
-------------
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
ConferenceRecordsService
------------------------------------------

.. automodule:: google.apps.meet_v2.services.conference_records_service
:members:
:inherited-members:

.. automodule:: google.apps.meet_v2.services.conference_records_service.pagers
:members:
:inherited-members:
7 changes: 7 additions & 0 deletions packages/google-apps-meet/docs/meet_v2/services_.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Services for Google Apps Meet v2 API
====================================
.. toctree::
:maxdepth: 2

conference_records_service
spaces_service
6 changes: 6 additions & 0 deletions packages/google-apps-meet/docs/meet_v2/spaces_service.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
SpacesService
-------------------------------

.. automodule:: google.apps.meet_v2.services.spaces_service
:members:
:inherited-members:
6 changes: 6 additions & 0 deletions packages/google-apps-meet/docs/meet_v2/types_.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
Types for Google Apps Meet v2 API
=================================

.. automodule:: google.apps.meet_v2.types
:members:
:show-inheritance:
12 changes: 6 additions & 6 deletions packages/google-apps-meet/google/apps/meet/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
__version__ = package_version.__version__


from google.apps.meet_v2beta.services.conference_records_service.async_client import (
from google.apps.meet_v2.services.conference_records_service.async_client import (
ConferenceRecordsServiceAsyncClient,
)
from google.apps.meet_v2beta.services.conference_records_service.client import (
from google.apps.meet_v2.services.conference_records_service.client import (
ConferenceRecordsServiceClient,
)
from google.apps.meet_v2beta.services.spaces_service.async_client import (
from google.apps.meet_v2.services.spaces_service.async_client import (
SpacesServiceAsyncClient,
)
from google.apps.meet_v2beta.services.spaces_service.client import SpacesServiceClient
from google.apps.meet_v2beta.types.resource import (
from google.apps.meet_v2.services.spaces_service.client import SpacesServiceClient
from google.apps.meet_v2.types.resource import (
ActiveConference,
AnonymousUser,
ConferenceRecord,
Expand All @@ -44,7 +44,7 @@
Transcript,
TranscriptEntry,
)
from google.apps.meet_v2beta.types.service import (
from google.apps.meet_v2.types.service import (
CreateSpaceRequest,
EndActiveConferenceRequest,
GetConferenceRecordRequest,
Expand Down
108 changes: 108 additions & 0 deletions packages/google-apps-meet/google/apps/meet_v2/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
# -*- coding: utf-8 -*-
# Copyright 2023 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
from google.apps.meet_v2 import gapic_version as package_version

__version__ = package_version.__version__


from .services.conference_records_service import (
ConferenceRecordsServiceAsyncClient,
ConferenceRecordsServiceClient,
)
from .services.spaces_service import SpacesServiceAsyncClient, SpacesServiceClient
from .types.resource import (
ActiveConference,
AnonymousUser,
ConferenceRecord,
DocsDestination,
DriveDestination,
Participant,
ParticipantSession,
PhoneUser,
Recording,
SignedinUser,
Space,
SpaceConfig,
Transcript,
TranscriptEntry,
)
from .types.service import (
CreateSpaceRequest,
EndActiveConferenceRequest,
GetConferenceRecordRequest,
GetParticipantRequest,
GetParticipantSessionRequest,
GetRecordingRequest,
GetSpaceRequest,
GetTranscriptEntryRequest,
GetTranscriptRequest,
ListConferenceRecordsRequest,
ListConferenceRecordsResponse,
ListParticipantSessionsRequest,
ListParticipantSessionsResponse,
ListParticipantsRequest,
ListParticipantsResponse,
ListRecordingsRequest,
ListRecordingsResponse,
ListTranscriptEntriesRequest,
ListTranscriptEntriesResponse,
ListTranscriptsRequest,
ListTranscriptsResponse,
UpdateSpaceRequest,
)

__all__ = (
"ConferenceRecordsServiceAsyncClient",
"SpacesServiceAsyncClient",
"ActiveConference",
"AnonymousUser",
"ConferenceRecord",
"ConferenceRecordsServiceClient",
"CreateSpaceRequest",
"DocsDestination",
"DriveDestination",
"EndActiveConferenceRequest",
"GetConferenceRecordRequest",
"GetParticipantRequest",
"GetParticipantSessionRequest",
"GetRecordingRequest",
"GetSpaceRequest",
"GetTranscriptEntryRequest",
"GetTranscriptRequest",
"ListConferenceRecordsRequest",
"ListConferenceRecordsResponse",
"ListParticipantSessionsRequest",
"ListParticipantSessionsResponse",
"ListParticipantsRequest",
"ListParticipantsResponse",
"ListRecordingsRequest",
"ListRecordingsResponse",
"ListTranscriptEntriesRequest",
"ListTranscriptEntriesResponse",
"ListTranscriptsRequest",
"ListTranscriptsResponse",
"Participant",
"ParticipantSession",
"PhoneUser",
"Recording",
"SignedinUser",
"Space",
"SpaceConfig",
"SpacesServiceClient",
"Transcript",
"TranscriptEntry",
"UpdateSpaceRequest",
)

0 comments on commit b7cf5a9

Please sign in to comment.