|
| 1 | +# -*- coding: utf-8 -*- |
| 2 | +# Copyright 2020 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 | + |
| 17 | +from .services.tpu import TpuClient |
| 18 | +from .services.tpu import TpuAsyncClient |
| 19 | + |
| 20 | +from .types.cloud_tpu import AcceleratorType |
| 21 | +from .types.cloud_tpu import AccessConfig |
| 22 | +from .types.cloud_tpu import AttachedDisk |
| 23 | +from .types.cloud_tpu import CreateNodeRequest |
| 24 | +from .types.cloud_tpu import DeleteNodeRequest |
| 25 | +from .types.cloud_tpu import GenerateServiceIdentityRequest |
| 26 | +from .types.cloud_tpu import GenerateServiceIdentityResponse |
| 27 | +from .types.cloud_tpu import GetAcceleratorTypeRequest |
| 28 | +from .types.cloud_tpu import GetGuestAttributesRequest |
| 29 | +from .types.cloud_tpu import GetGuestAttributesResponse |
| 30 | +from .types.cloud_tpu import GetNodeRequest |
| 31 | +from .types.cloud_tpu import GetRuntimeVersionRequest |
| 32 | +from .types.cloud_tpu import GuestAttributes |
| 33 | +from .types.cloud_tpu import GuestAttributesEntry |
| 34 | +from .types.cloud_tpu import GuestAttributesValue |
| 35 | +from .types.cloud_tpu import ListAcceleratorTypesRequest |
| 36 | +from .types.cloud_tpu import ListAcceleratorTypesResponse |
| 37 | +from .types.cloud_tpu import ListNodesRequest |
| 38 | +from .types.cloud_tpu import ListNodesResponse |
| 39 | +from .types.cloud_tpu import ListRuntimeVersionsRequest |
| 40 | +from .types.cloud_tpu import ListRuntimeVersionsResponse |
| 41 | +from .types.cloud_tpu import NetworkConfig |
| 42 | +from .types.cloud_tpu import NetworkEndpoint |
| 43 | +from .types.cloud_tpu import Node |
| 44 | +from .types.cloud_tpu import OperationMetadata |
| 45 | +from .types.cloud_tpu import RuntimeVersion |
| 46 | +from .types.cloud_tpu import SchedulingConfig |
| 47 | +from .types.cloud_tpu import ServiceAccount |
| 48 | +from .types.cloud_tpu import ServiceIdentity |
| 49 | +from .types.cloud_tpu import StartNodeRequest |
| 50 | +from .types.cloud_tpu import StopNodeRequest |
| 51 | +from .types.cloud_tpu import Symptom |
| 52 | +from .types.cloud_tpu import UpdateNodeRequest |
| 53 | + |
| 54 | +__all__ = ( |
| 55 | + "TpuAsyncClient", |
| 56 | + "AcceleratorType", |
| 57 | + "AccessConfig", |
| 58 | + "AttachedDisk", |
| 59 | + "CreateNodeRequest", |
| 60 | + "DeleteNodeRequest", |
| 61 | + "GenerateServiceIdentityRequest", |
| 62 | + "GenerateServiceIdentityResponse", |
| 63 | + "GetAcceleratorTypeRequest", |
| 64 | + "GetGuestAttributesRequest", |
| 65 | + "GetGuestAttributesResponse", |
| 66 | + "GetNodeRequest", |
| 67 | + "GetRuntimeVersionRequest", |
| 68 | + "GuestAttributes", |
| 69 | + "GuestAttributesEntry", |
| 70 | + "GuestAttributesValue", |
| 71 | + "ListAcceleratorTypesRequest", |
| 72 | + "ListAcceleratorTypesResponse", |
| 73 | + "ListNodesRequest", |
| 74 | + "ListNodesResponse", |
| 75 | + "ListRuntimeVersionsRequest", |
| 76 | + "ListRuntimeVersionsResponse", |
| 77 | + "NetworkConfig", |
| 78 | + "NetworkEndpoint", |
| 79 | + "Node", |
| 80 | + "OperationMetadata", |
| 81 | + "RuntimeVersion", |
| 82 | + "SchedulingConfig", |
| 83 | + "ServiceAccount", |
| 84 | + "ServiceIdentity", |
| 85 | + "StartNodeRequest", |
| 86 | + "StopNodeRequest", |
| 87 | + "Symptom", |
| 88 | + "TpuClient", |
| 89 | + "UpdateNodeRequest", |
| 90 | +) |
0 commit comments