|
10 | 10 | # --------------------------------------------------------------------------
|
11 | 11 |
|
12 | 12 | try:
|
13 |
| - from .error_details_item_py3 import ErrorDetailsItem |
14 |
| - from .error_py3 import Error, ErrorException |
15 |
| - from .resource_py3 import Resource |
16 |
| - from .sku_py3 import Sku |
17 |
| - from .maps_account_py3 import MapsAccount |
18 |
| - from .maps_account_create_parameters_py3 import MapsAccountCreateParameters |
19 |
| - from .maps_account_update_parameters_py3 import MapsAccountUpdateParameters |
20 |
| - from .maps_accounts_move_request_py3 import MapsAccountsMoveRequest |
21 |
| - from .maps_key_specification_py3 import MapsKeySpecification |
22 |
| - from .maps_account_keys_py3 import MapsAccountKeys |
23 |
| - from .maps_operations_value_item_display_py3 import MapsOperationsValueItemDisplay |
24 |
| - from .maps_operations_value_item_py3 import MapsOperationsValueItem |
| 13 | + from ._models_py3 import AzureEntityResource |
| 14 | + from ._models_py3 import Creator |
| 15 | + from ._models_py3 import CreatorCreateParameters |
| 16 | + from ._models_py3 import CreatorProperties |
| 17 | + from ._models_py3 import CreatorUpdateParameters |
| 18 | + from ._models_py3 import ErrorAdditionalInfo |
| 19 | + from ._models_py3 import ErrorDetail |
| 20 | + from ._models_py3 import ErrorResponse, ErrorResponseException |
| 21 | + from ._models_py3 import MapsAccount |
| 22 | + from ._models_py3 import MapsAccountCreateParameters |
| 23 | + from ._models_py3 import MapsAccountKeys |
| 24 | + from ._models_py3 import MapsAccountProperties |
| 25 | + from ._models_py3 import MapsAccountUpdateParameters |
| 26 | + from ._models_py3 import MapsKeySpecification |
| 27 | + from ._models_py3 import MapsOperationsValueItem |
| 28 | + from ._models_py3 import MapsOperationsValueItemDisplay |
| 29 | + from ._models_py3 import PrivateAtlas |
| 30 | + from ._models_py3 import PrivateAtlasCreateParameters |
| 31 | + from ._models_py3 import PrivateAtlasProperties |
| 32 | + from ._models_py3 import PrivateAtlasUpdateParameters |
| 33 | + from ._models_py3 import ProxyResource |
| 34 | + from ._models_py3 import Resource |
| 35 | + from ._models_py3 import Sku |
| 36 | + from ._models_py3 import SystemData |
| 37 | + from ._models_py3 import TrackedResource |
25 | 38 | except (SyntaxError, ImportError):
|
26 |
| - from .error_details_item import ErrorDetailsItem |
27 |
| - from .error import Error, ErrorException |
28 |
| - from .resource import Resource |
29 |
| - from .sku import Sku |
30 |
| - from .maps_account import MapsAccount |
31 |
| - from .maps_account_create_parameters import MapsAccountCreateParameters |
32 |
| - from .maps_account_update_parameters import MapsAccountUpdateParameters |
33 |
| - from .maps_accounts_move_request import MapsAccountsMoveRequest |
34 |
| - from .maps_key_specification import MapsKeySpecification |
35 |
| - from .maps_account_keys import MapsAccountKeys |
36 |
| - from .maps_operations_value_item_display import MapsOperationsValueItemDisplay |
37 |
| - from .maps_operations_value_item import MapsOperationsValueItem |
38 |
| -from .maps_account_paged import MapsAccountPaged |
39 |
| -from .maps_operations_value_item_paged import MapsOperationsValueItemPaged |
40 |
| -from .maps_management_client_enums import ( |
| 39 | + from ._models import AzureEntityResource |
| 40 | + from ._models import Creator |
| 41 | + from ._models import CreatorCreateParameters |
| 42 | + from ._models import CreatorProperties |
| 43 | + from ._models import CreatorUpdateParameters |
| 44 | + from ._models import ErrorAdditionalInfo |
| 45 | + from ._models import ErrorDetail |
| 46 | + from ._models import ErrorResponse, ErrorResponseException |
| 47 | + from ._models import MapsAccount |
| 48 | + from ._models import MapsAccountCreateParameters |
| 49 | + from ._models import MapsAccountKeys |
| 50 | + from ._models import MapsAccountProperties |
| 51 | + from ._models import MapsAccountUpdateParameters |
| 52 | + from ._models import MapsKeySpecification |
| 53 | + from ._models import MapsOperationsValueItem |
| 54 | + from ._models import MapsOperationsValueItemDisplay |
| 55 | + from ._models import PrivateAtlas |
| 56 | + from ._models import PrivateAtlasCreateParameters |
| 57 | + from ._models import PrivateAtlasProperties |
| 58 | + from ._models import PrivateAtlasUpdateParameters |
| 59 | + from ._models import ProxyResource |
| 60 | + from ._models import Resource |
| 61 | + from ._models import Sku |
| 62 | + from ._models import SystemData |
| 63 | + from ._models import TrackedResource |
| 64 | +from ._paged_models import CreatorPaged |
| 65 | +from ._paged_models import MapsAccountPaged |
| 66 | +from ._paged_models import MapsOperationsValueItemPaged |
| 67 | +from ._paged_models import PrivateAtlasPaged |
| 68 | +from ._maps_management_client_enums import ( |
| 69 | + CreatedByType, |
41 | 70 | KeyType,
|
42 | 71 | )
|
43 | 72 |
|
44 | 73 | __all__ = [
|
45 |
| - 'ErrorDetailsItem', |
46 |
| - 'Error', 'ErrorException', |
47 |
| - 'Resource', |
48 |
| - 'Sku', |
| 74 | + 'AzureEntityResource', |
| 75 | + 'Creator', |
| 76 | + 'CreatorCreateParameters', |
| 77 | + 'CreatorProperties', |
| 78 | + 'CreatorUpdateParameters', |
| 79 | + 'ErrorAdditionalInfo', |
| 80 | + 'ErrorDetail', |
| 81 | + 'ErrorResponse', 'ErrorResponseException', |
49 | 82 | 'MapsAccount',
|
50 | 83 | 'MapsAccountCreateParameters',
|
| 84 | + 'MapsAccountKeys', |
| 85 | + 'MapsAccountProperties', |
51 | 86 | 'MapsAccountUpdateParameters',
|
52 |
| - 'MapsAccountsMoveRequest', |
53 | 87 | 'MapsKeySpecification',
|
54 |
| - 'MapsAccountKeys', |
55 |
| - 'MapsOperationsValueItemDisplay', |
56 | 88 | 'MapsOperationsValueItem',
|
| 89 | + 'MapsOperationsValueItemDisplay', |
| 90 | + 'PrivateAtlas', |
| 91 | + 'PrivateAtlasCreateParameters', |
| 92 | + 'PrivateAtlasProperties', |
| 93 | + 'PrivateAtlasUpdateParameters', |
| 94 | + 'ProxyResource', |
| 95 | + 'Resource', |
| 96 | + 'Sku', |
| 97 | + 'SystemData', |
| 98 | + 'TrackedResource', |
57 | 99 | 'MapsAccountPaged',
|
58 | 100 | 'MapsOperationsValueItemPaged',
|
| 101 | + 'PrivateAtlasPaged', |
| 102 | + 'CreatorPaged', |
| 103 | + 'CreatedByType', |
59 | 104 | 'KeyType',
|
60 | 105 | ]
|
0 commit comments