|
| 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.domains import DomainsClient |
| 18 | +from .services.domains import DomainsAsyncClient |
| 19 | + |
| 20 | +from .types.domains import AuthorizationCode |
| 21 | +from .types.domains import ConfigureContactSettingsRequest |
| 22 | +from .types.domains import ConfigureDnsSettingsRequest |
| 23 | +from .types.domains import ConfigureManagementSettingsRequest |
| 24 | +from .types.domains import ContactSettings |
| 25 | +from .types.domains import DeleteRegistrationRequest |
| 26 | +from .types.domains import DnsSettings |
| 27 | +from .types.domains import ExportRegistrationRequest |
| 28 | +from .types.domains import GetRegistrationRequest |
| 29 | +from .types.domains import ListRegistrationsRequest |
| 30 | +from .types.domains import ListRegistrationsResponse |
| 31 | +from .types.domains import ManagementSettings |
| 32 | +from .types.domains import OperationMetadata |
| 33 | +from .types.domains import RegisterDomainRequest |
| 34 | +from .types.domains import RegisterParameters |
| 35 | +from .types.domains import Registration |
| 36 | +from .types.domains import ResetAuthorizationCodeRequest |
| 37 | +from .types.domains import RetrieveAuthorizationCodeRequest |
| 38 | +from .types.domains import RetrieveRegisterParametersRequest |
| 39 | +from .types.domains import RetrieveRegisterParametersResponse |
| 40 | +from .types.domains import RetrieveTransferParametersRequest |
| 41 | +from .types.domains import RetrieveTransferParametersResponse |
| 42 | +from .types.domains import SearchDomainsRequest |
| 43 | +from .types.domains import SearchDomainsResponse |
| 44 | +from .types.domains import TransferDomainRequest |
| 45 | +from .types.domains import TransferParameters |
| 46 | +from .types.domains import UpdateRegistrationRequest |
| 47 | +from .types.domains import ContactNotice |
| 48 | +from .types.domains import ContactPrivacy |
| 49 | +from .types.domains import DomainNotice |
| 50 | +from .types.domains import TransferLockState |
| 51 | + |
| 52 | +__all__ = ( |
| 53 | + "DomainsAsyncClient", |
| 54 | + "AuthorizationCode", |
| 55 | + "ConfigureContactSettingsRequest", |
| 56 | + "ConfigureDnsSettingsRequest", |
| 57 | + "ConfigureManagementSettingsRequest", |
| 58 | + "ContactNotice", |
| 59 | + "ContactPrivacy", |
| 60 | + "ContactSettings", |
| 61 | + "DeleteRegistrationRequest", |
| 62 | + "DnsSettings", |
| 63 | + "DomainNotice", |
| 64 | + "DomainsClient", |
| 65 | + "ExportRegistrationRequest", |
| 66 | + "GetRegistrationRequest", |
| 67 | + "ListRegistrationsRequest", |
| 68 | + "ListRegistrationsResponse", |
| 69 | + "ManagementSettings", |
| 70 | + "OperationMetadata", |
| 71 | + "RegisterDomainRequest", |
| 72 | + "RegisterParameters", |
| 73 | + "Registration", |
| 74 | + "ResetAuthorizationCodeRequest", |
| 75 | + "RetrieveAuthorizationCodeRequest", |
| 76 | + "RetrieveRegisterParametersRequest", |
| 77 | + "RetrieveRegisterParametersResponse", |
| 78 | + "RetrieveTransferParametersRequest", |
| 79 | + "RetrieveTransferParametersResponse", |
| 80 | + "SearchDomainsRequest", |
| 81 | + "SearchDomainsResponse", |
| 82 | + "TransferDomainRequest", |
| 83 | + "TransferLockState", |
| 84 | + "TransferParameters", |
| 85 | + "UpdateRegistrationRequest", |
| 86 | +) |
0 commit comments