|
10 | 10 | # --------------------------------------------------------------------------
|
11 | 11 |
|
12 | 12 | try:
|
| 13 | + from .trusted_external_tenant_py3 import TrustedExternalTenant |
| 14 | + from .azure_sku_py3 import AzureSku |
| 15 | + from .azure_capacity_py3 import AzureCapacity |
| 16 | + from .azure_resource_sku_py3 import AzureResourceSku |
| 17 | + from .database_statistics_py3 import DatabaseStatistics |
| 18 | + from .event_hub_connection_validation_py3 import EventHubConnectionValidation |
13 | 19 | from .cluster_py3 import Cluster
|
14 | 20 | from .cluster_update_py3 import ClusterUpdate
|
15 | 21 | from .database_py3 import Database
|
16 | 22 | from .database_update_py3 import DatabaseUpdate
|
| 23 | + from .database_principal_py3 import DatabasePrincipal |
| 24 | + from .event_hub_connection_update_py3 import EventHubConnectionUpdate |
| 25 | + from .event_hub_connection_py3 import EventHubConnection |
| 26 | + from .event_hub_connection_validation_result_py3 import EventHubConnectionValidationResult |
| 27 | + from .database_principal_list_result_py3 import DatabasePrincipalListResult |
| 28 | + from .database_principal_list_request_py3 import DatabasePrincipalListRequest |
| 29 | + from .event_hub_connection_validation_list_result_py3 import EventHubConnectionValidationListResult |
| 30 | + from .cluster_check_name_request_py3 import ClusterCheckNameRequest |
| 31 | + from .database_check_name_request_py3 import DatabaseCheckNameRequest |
| 32 | + from .check_name_result_py3 import CheckNameResult |
17 | 33 | from .operation_display_py3 import OperationDisplay
|
18 | 34 | from .operation_py3 import Operation
|
19 |
| - from .proxy_resource_py3 import ProxyResource |
20 | 35 | from .tracked_resource_py3 import TrackedResource
|
21 | 36 | from .azure_entity_resource_py3 import AzureEntityResource
|
22 | 37 | from .resource_py3 import Resource
|
| 38 | + from .proxy_resource_py3 import ProxyResource |
23 | 39 | except (SyntaxError, ImportError):
|
| 40 | + from .trusted_external_tenant import TrustedExternalTenant |
| 41 | + from .azure_sku import AzureSku |
| 42 | + from .azure_capacity import AzureCapacity |
| 43 | + from .azure_resource_sku import AzureResourceSku |
| 44 | + from .database_statistics import DatabaseStatistics |
| 45 | + from .event_hub_connection_validation import EventHubConnectionValidation |
24 | 46 | from .cluster import Cluster
|
25 | 47 | from .cluster_update import ClusterUpdate
|
26 | 48 | from .database import Database
|
27 | 49 | from .database_update import DatabaseUpdate
|
| 50 | + from .database_principal import DatabasePrincipal |
| 51 | + from .event_hub_connection_update import EventHubConnectionUpdate |
| 52 | + from .event_hub_connection import EventHubConnection |
| 53 | + from .event_hub_connection_validation_result import EventHubConnectionValidationResult |
| 54 | + from .database_principal_list_result import DatabasePrincipalListResult |
| 55 | + from .database_principal_list_request import DatabasePrincipalListRequest |
| 56 | + from .event_hub_connection_validation_list_result import EventHubConnectionValidationListResult |
| 57 | + from .cluster_check_name_request import ClusterCheckNameRequest |
| 58 | + from .database_check_name_request import DatabaseCheckNameRequest |
| 59 | + from .check_name_result import CheckNameResult |
28 | 60 | from .operation_display import OperationDisplay
|
29 | 61 | from .operation import Operation
|
30 |
| - from .proxy_resource import ProxyResource |
31 | 62 | from .tracked_resource import TrackedResource
|
32 | 63 | from .azure_entity_resource import AzureEntityResource
|
33 | 64 | from .resource import Resource
|
| 65 | + from .proxy_resource import ProxyResource |
34 | 66 | from .cluster_paged import ClusterPaged
|
| 67 | +from .azure_sku_paged import AzureSkuPaged |
| 68 | +from .azure_resource_sku_paged import AzureResourceSkuPaged |
35 | 69 | from .database_paged import DatabasePaged
|
| 70 | +from .database_principal_paged import DatabasePrincipalPaged |
| 71 | +from .event_hub_connection_paged import EventHubConnectionPaged |
36 | 72 | from .operation_paged import OperationPaged
|
37 | 73 | from .kusto_management_client_enums import (
|
| 74 | + State, |
38 | 75 | ProvisioningState,
|
| 76 | + AzureSkuName, |
| 77 | + AzureScaleType, |
| 78 | + DataFormat, |
| 79 | + DatabasePrincipalRole, |
| 80 | + DatabasePrincipalType, |
39 | 81 | )
|
40 | 82 |
|
41 | 83 | __all__ = [
|
| 84 | + 'TrustedExternalTenant', |
| 85 | + 'AzureSku', |
| 86 | + 'AzureCapacity', |
| 87 | + 'AzureResourceSku', |
| 88 | + 'DatabaseStatistics', |
| 89 | + 'EventHubConnectionValidation', |
42 | 90 | 'Cluster',
|
43 | 91 | 'ClusterUpdate',
|
44 | 92 | 'Database',
|
45 | 93 | 'DatabaseUpdate',
|
| 94 | + 'DatabasePrincipal', |
| 95 | + 'EventHubConnectionUpdate', |
| 96 | + 'EventHubConnection', |
| 97 | + 'EventHubConnectionValidationResult', |
| 98 | + 'DatabasePrincipalListResult', |
| 99 | + 'DatabasePrincipalListRequest', |
| 100 | + 'EventHubConnectionValidationListResult', |
| 101 | + 'ClusterCheckNameRequest', |
| 102 | + 'DatabaseCheckNameRequest', |
| 103 | + 'CheckNameResult', |
46 | 104 | 'OperationDisplay',
|
47 | 105 | 'Operation',
|
48 |
| - 'ProxyResource', |
49 | 106 | 'TrackedResource',
|
50 | 107 | 'AzureEntityResource',
|
51 | 108 | 'Resource',
|
| 109 | + 'ProxyResource', |
52 | 110 | 'ClusterPaged',
|
| 111 | + 'AzureSkuPaged', |
| 112 | + 'AzureResourceSkuPaged', |
53 | 113 | 'DatabasePaged',
|
| 114 | + 'DatabasePrincipalPaged', |
| 115 | + 'EventHubConnectionPaged', |
54 | 116 | 'OperationPaged',
|
| 117 | + 'State', |
55 | 118 | 'ProvisioningState',
|
| 119 | + 'AzureSkuName', |
| 120 | + 'AzureScaleType', |
| 121 | + 'DataFormat', |
| 122 | + 'DatabasePrincipalRole', |
| 123 | + 'DatabasePrincipalType', |
56 | 124 | ]
|
0 commit comments