|
15 | 15 | from .alert_rule_py3 import AlertRule
|
16 | 16 | from .alert_rule_kind1_py3 import AlertRuleKind1
|
17 | 17 | from .scheduled_alert_rule_py3 import ScheduledAlertRule
|
| 18 | + from .action_py3 import Action |
| 19 | + from .user_info_py3 import UserInfo |
| 20 | + from .case_py3 import Case |
| 21 | + from .bookmark_py3 import Bookmark |
18 | 22 | from .data_connector_py3 import DataConnector
|
19 | 23 | from .data_connector_kind1_py3 import DataConnectorKind1
|
20 |
| - from .data_connector_context_id_py3 import DataConnectorContextId |
| 24 | + from .data_connector_tenant_id_py3 import DataConnectorTenantId |
21 | 25 | from .office_data_connector_data_types_share_point_py3 import OfficeDataConnectorDataTypesSharePoint
|
22 | 26 | from .office_data_connector_data_types_exchange_py3 import OfficeDataConnectorDataTypesExchange
|
23 | 27 | from .office_data_connector_data_types_py3 import OfficeDataConnectorDataTypes
|
24 | 28 | from .office_data_connector_py3 import OfficeDataConnector
|
25 | 29 | from .ti_data_connector_data_types_indicators_py3 import TIDataConnectorDataTypesIndicators
|
26 | 30 | from .ti_data_connector_data_types_py3 import TIDataConnectorDataTypes
|
27 | 31 | from .ti_data_connector_py3 import TIDataConnector
|
| 32 | + from .alerts_data_type_of_data_connector_alerts_py3 import AlertsDataTypeOfDataConnectorAlerts |
| 33 | + from .alerts_data_type_of_data_connector_py3 import AlertsDataTypeOfDataConnector |
28 | 34 | from .aad_data_connector_py3 import AADDataConnector
|
29 | 35 | from .asc_data_connector_py3 import ASCDataConnector
|
30 | 36 | from .mcas_data_connector_py3 import MCASDataConnector
|
31 |
| - from .alerts_data_type_of_data_connector_alerts_py3 import AlertsDataTypeOfDataConnectorAlerts |
32 |
| - from .alerts_data_type_of_data_connector_py3 import AlertsDataTypeOfDataConnector |
33 |
| - from .data_connector_with_alerts_py3 import DataConnectorWithAlerts |
| 37 | + from .data_connector_with_alerts_properties_py3 import DataConnectorWithAlertsProperties |
34 | 38 | from .data_connector_data_type_common_py3 import DataConnectorDataTypeCommon
|
| 39 | + from .entity_py3 import Entity |
| 40 | + from .entity_kind1_py3 import EntityKind1 |
| 41 | + from .account_entity_py3 import AccountEntity |
| 42 | + from .host_entity_py3 import HostEntity |
| 43 | + from .file_entity_py3 import FileEntity |
| 44 | + from .office_consent_py3 import OfficeConsent |
35 | 45 | from .resource_py3 import Resource
|
| 46 | + from .settings_py3 import Settings |
| 47 | + from .settings_kind_py3 import SettingsKind |
| 48 | + from .ueba_settings_py3 import UebaSettings |
| 49 | + from .toggle_settings_py3 import ToggleSettings |
36 | 50 | except (SyntaxError, ImportError):
|
37 | 51 | from .operation_display import OperationDisplay
|
38 | 52 | from .operation import Operation
|
39 | 53 | from .alert_rule import AlertRule
|
40 | 54 | from .alert_rule_kind1 import AlertRuleKind1
|
41 | 55 | from .scheduled_alert_rule import ScheduledAlertRule
|
| 56 | + from .action import Action |
| 57 | + from .user_info import UserInfo |
| 58 | + from .case import Case |
| 59 | + from .bookmark import Bookmark |
42 | 60 | from .data_connector import DataConnector
|
43 | 61 | from .data_connector_kind1 import DataConnectorKind1
|
44 |
| - from .data_connector_context_id import DataConnectorContextId |
| 62 | + from .data_connector_tenant_id import DataConnectorTenantId |
45 | 63 | from .office_data_connector_data_types_share_point import OfficeDataConnectorDataTypesSharePoint
|
46 | 64 | from .office_data_connector_data_types_exchange import OfficeDataConnectorDataTypesExchange
|
47 | 65 | from .office_data_connector_data_types import OfficeDataConnectorDataTypes
|
48 | 66 | from .office_data_connector import OfficeDataConnector
|
49 | 67 | from .ti_data_connector_data_types_indicators import TIDataConnectorDataTypesIndicators
|
50 | 68 | from .ti_data_connector_data_types import TIDataConnectorDataTypes
|
51 | 69 | from .ti_data_connector import TIDataConnector
|
| 70 | + from .alerts_data_type_of_data_connector_alerts import AlertsDataTypeOfDataConnectorAlerts |
| 71 | + from .alerts_data_type_of_data_connector import AlertsDataTypeOfDataConnector |
52 | 72 | from .aad_data_connector import AADDataConnector
|
53 | 73 | from .asc_data_connector import ASCDataConnector
|
54 | 74 | from .mcas_data_connector import MCASDataConnector
|
55 |
| - from .alerts_data_type_of_data_connector_alerts import AlertsDataTypeOfDataConnectorAlerts |
56 |
| - from .alerts_data_type_of_data_connector import AlertsDataTypeOfDataConnector |
57 |
| - from .data_connector_with_alerts import DataConnectorWithAlerts |
| 75 | + from .data_connector_with_alerts_properties import DataConnectorWithAlertsProperties |
58 | 76 | from .data_connector_data_type_common import DataConnectorDataTypeCommon
|
| 77 | + from .entity import Entity |
| 78 | + from .entity_kind1 import EntityKind1 |
| 79 | + from .account_entity import AccountEntity |
| 80 | + from .host_entity import HostEntity |
| 81 | + from .file_entity import FileEntity |
| 82 | + from .office_consent import OfficeConsent |
59 | 83 | from .resource import Resource
|
| 84 | + from .settings import Settings |
| 85 | + from .settings_kind import SettingsKind |
| 86 | + from .ueba_settings import UebaSettings |
| 87 | + from .toggle_settings import ToggleSettings |
60 | 88 | from .operation_paged import OperationPaged
|
61 | 89 | from .alert_rule_paged import AlertRulePaged
|
| 90 | +from .action_paged import ActionPaged |
| 91 | +from .case_paged import CasePaged |
| 92 | +from .bookmark_paged import BookmarkPaged |
62 | 93 | from .data_connector_paged import DataConnectorPaged
|
| 94 | +from .entity_paged import EntityPaged |
| 95 | +from .office_consent_paged import OfficeConsentPaged |
63 | 96 | from .security_insights_enums import (
|
64 | 97 | AlertRuleKind,
|
65 |
| - Severity, |
| 98 | + AlertSeverity, |
66 | 99 | TriggerOperator,
|
| 100 | + CaseSeverity, |
| 101 | + CaseStatus, |
| 102 | + CloseReason, |
67 | 103 | DataConnectorKind,
|
68 | 104 | DataTypeState,
|
| 105 | + EntityKind, |
| 106 | + OSFamily, |
| 107 | + SettingKind, |
| 108 | + StatusInMcas, |
69 | 109 | )
|
70 | 110 |
|
71 | 111 | __all__ = [
|
|
74 | 114 | 'AlertRule',
|
75 | 115 | 'AlertRuleKind1',
|
76 | 116 | 'ScheduledAlertRule',
|
| 117 | + 'Action', |
| 118 | + 'UserInfo', |
| 119 | + 'Case', |
| 120 | + 'Bookmark', |
77 | 121 | 'DataConnector',
|
78 | 122 | 'DataConnectorKind1',
|
79 |
| - 'DataConnectorContextId', |
| 123 | + 'DataConnectorTenantId', |
80 | 124 | 'OfficeDataConnectorDataTypesSharePoint',
|
81 | 125 | 'OfficeDataConnectorDataTypesExchange',
|
82 | 126 | 'OfficeDataConnectorDataTypes',
|
83 | 127 | 'OfficeDataConnector',
|
84 | 128 | 'TIDataConnectorDataTypesIndicators',
|
85 | 129 | 'TIDataConnectorDataTypes',
|
86 | 130 | 'TIDataConnector',
|
| 131 | + 'AlertsDataTypeOfDataConnectorAlerts', |
| 132 | + 'AlertsDataTypeOfDataConnector', |
87 | 133 | 'AADDataConnector',
|
88 | 134 | 'ASCDataConnector',
|
89 | 135 | 'MCASDataConnector',
|
90 |
| - 'AlertsDataTypeOfDataConnectorAlerts', |
91 |
| - 'AlertsDataTypeOfDataConnector', |
92 |
| - 'DataConnectorWithAlerts', |
| 136 | + 'DataConnectorWithAlertsProperties', |
93 | 137 | 'DataConnectorDataTypeCommon',
|
| 138 | + 'Entity', |
| 139 | + 'EntityKind1', |
| 140 | + 'AccountEntity', |
| 141 | + 'HostEntity', |
| 142 | + 'FileEntity', |
| 143 | + 'OfficeConsent', |
94 | 144 | 'Resource',
|
| 145 | + 'Settings', |
| 146 | + 'SettingsKind', |
| 147 | + 'UebaSettings', |
| 148 | + 'ToggleSettings', |
95 | 149 | 'OperationPaged',
|
96 | 150 | 'AlertRulePaged',
|
| 151 | + 'ActionPaged', |
| 152 | + 'CasePaged', |
| 153 | + 'BookmarkPaged', |
97 | 154 | 'DataConnectorPaged',
|
| 155 | + 'EntityPaged', |
| 156 | + 'OfficeConsentPaged', |
98 | 157 | 'AlertRuleKind',
|
99 |
| - 'Severity', |
| 158 | + 'AlertSeverity', |
100 | 159 | 'TriggerOperator',
|
| 160 | + 'CaseSeverity', |
| 161 | + 'CaseStatus', |
| 162 | + 'CloseReason', |
101 | 163 | 'DataConnectorKind',
|
102 | 164 | 'DataTypeState',
|
| 165 | + 'EntityKind', |
| 166 | + 'OSFamily', |
| 167 | + 'SettingKind', |
| 168 | + 'StatusInMcas', |
103 | 169 | ]
|
0 commit comments