File: __init__.py

package info (click to toggle)
python-azure 20181112%2Bgit-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 407,300 kB
  • sloc: python: 717,190; makefile: 201; sh: 76
file content (56 lines) | stat: -rw-r--r-- 1,937 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

try:
    from .cluster_py3 import Cluster
    from .cluster_update_py3 import ClusterUpdate
    from .database_py3 import Database
    from .database_update_py3 import DatabaseUpdate
    from .operation_display_py3 import OperationDisplay
    from .operation_py3 import Operation
    from .proxy_resource_py3 import ProxyResource
    from .tracked_resource_py3 import TrackedResource
    from .azure_entity_resource_py3 import AzureEntityResource
    from .resource_py3 import Resource
except (SyntaxError, ImportError):
    from .cluster import Cluster
    from .cluster_update import ClusterUpdate
    from .database import Database
    from .database_update import DatabaseUpdate
    from .operation_display import OperationDisplay
    from .operation import Operation
    from .proxy_resource import ProxyResource
    from .tracked_resource import TrackedResource
    from .azure_entity_resource import AzureEntityResource
    from .resource import Resource
from .cluster_paged import ClusterPaged
from .database_paged import DatabasePaged
from .operation_paged import OperationPaged
from .kusto_management_client_enums import (
    ProvisioningState,
)

__all__ = [
    'Cluster',
    'ClusterUpdate',
    'Database',
    'DatabaseUpdate',
    'OperationDisplay',
    'Operation',
    'ProxyResource',
    'TrackedResource',
    'AzureEntityResource',
    'Resource',
    'ClusterPaged',
    'DatabasePaged',
    'OperationPaged',
    'ProvisioningState',
]