|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# Copyright 2022 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.cloud.beyondcorp_appconnectors import gapic_version as package_version |
| 17 | + |
| 18 | +__version__ = package_version.__version__ |
| 19 | + |
| 20 | + |
| 21 | +from google.cloud.beyondcorp_appconnectors_v1.services.app_connectors_service.async_client import ( |
| 22 | + AppConnectorsServiceAsyncClient, |
| 23 | +) |
| 24 | +from google.cloud.beyondcorp_appconnectors_v1.services.app_connectors_service.client import ( |
| 25 | + AppConnectorsServiceClient, |
| 26 | +) |
| 27 | +from google.cloud.beyondcorp_appconnectors_v1.types.app_connector_instance_config import ( |
| 28 | + AppConnectorInstanceConfig, |
| 29 | + ImageConfig, |
| 30 | + NotificationConfig, |
| 31 | +) |
| 32 | +from google.cloud.beyondcorp_appconnectors_v1.types.app_connectors_service import ( |
| 33 | + AppConnector, |
| 34 | + AppConnectorOperationMetadata, |
| 35 | + CreateAppConnectorRequest, |
| 36 | + DeleteAppConnectorRequest, |
| 37 | + GetAppConnectorRequest, |
| 38 | + ListAppConnectorsRequest, |
| 39 | + ListAppConnectorsResponse, |
| 40 | + ReportStatusRequest, |
| 41 | + UpdateAppConnectorRequest, |
| 42 | +) |
| 43 | +from google.cloud.beyondcorp_appconnectors_v1.types.resource_info import ( |
| 44 | + HealthStatus, |
| 45 | + ResourceInfo, |
| 46 | +) |
| 47 | + |
| 48 | +__all__ = ( |
| 49 | + "AppConnectorsServiceClient", |
| 50 | + "AppConnectorsServiceAsyncClient", |
| 51 | + "AppConnectorInstanceConfig", |
| 52 | + "ImageConfig", |
| 53 | + "NotificationConfig", |
| 54 | + "AppConnector", |
| 55 | + "AppConnectorOperationMetadata", |
| 56 | + "CreateAppConnectorRequest", |
| 57 | + "DeleteAppConnectorRequest", |
| 58 | + "GetAppConnectorRequest", |
| 59 | + "ListAppConnectorsRequest", |
| 60 | + "ListAppConnectorsResponse", |
| 61 | + "ReportStatusRequest", |
| 62 | + "UpdateAppConnectorRequest", |
| 63 | + "ResourceInfo", |
| 64 | + "HealthStatus", |
| 65 | +) |
0 commit comments