acryl-datahub-cloud 0.3.9.2rc1__py3-none-any.whl → 0.3.10rc0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of acryl-datahub-cloud might be problematic. Click here for more details.
- acryl_datahub_cloud/_codegen_config.json +1 -1
- acryl_datahub_cloud/metadata/_urns/urn_defs.py +80 -56
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/anomaly/__init__.py +2 -12
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/assertion/__init__.py +6 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/common/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/metadata/key/__init__.py +2 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/monitor/__init__.py +16 -0
- acryl_datahub_cloud/metadata/com/linkedin/pegasus2avro/timeseries/__init__.py +8 -0
- acryl_datahub_cloud/metadata/schema.avsc +1137 -663
- acryl_datahub_cloud/metadata/schema_classes.py +1094 -310
- acryl_datahub_cloud/metadata/schemas/AnomalyKey.avsc +1 -7
- acryl_datahub_cloud/metadata/schemas/AssertionAnalyticsRunEvent.avsc +445 -213
- acryl_datahub_cloud/metadata/schemas/AssertionInferenceDetails.avsc +237 -12
- acryl_datahub_cloud/metadata/schemas/AssertionInfo.avsc +277 -212
- acryl_datahub_cloud/metadata/schemas/AssertionRunEvent.avsc +445 -213
- acryl_datahub_cloud/metadata/schemas/CorpGroupKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/CorpGroupSettings.avsc +48 -1
- acryl_datahub_cloud/metadata/schemas/CorpUserKey.avsc +3 -2
- acryl_datahub_cloud/metadata/schemas/CorpUserSettings.avsc +48 -1
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceInput.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataProcessInstanceOutput.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataProcessKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/DataProductKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/Deprecation.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/GlobalSettingsInfo.avsc +1 -1
- acryl_datahub_cloud/metadata/schemas/GlossaryNodeKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/GlossaryTermKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/InstitutionalMemory.avsc +31 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLFeatureTableKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MLModelDeploymentKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/MLModelGroupKey.avsc +3 -0
- acryl_datahub_cloud/metadata/schemas/MLModelGroupProperties.avsc +16 -0
- acryl_datahub_cloud/metadata/schemas/MLModelKey.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/MLPrimaryKeyKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/MetadataChangeEvent.avsc +49 -0
- acryl_datahub_cloud/metadata/schemas/MonitorAnomalyEvent.avsc +265 -0
- acryl_datahub_cloud/metadata/schemas/MonitorInfo.avsc +549 -212
- acryl_datahub_cloud/metadata/schemas/MonitorKey.avsc +2 -1
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteInfo.avsc +790 -0
- acryl_datahub_cloud/metadata/schemas/MonitorSuiteKey.avsc +21 -0
- acryl_datahub_cloud/metadata/schemas/NotificationRequest.avsc +3 -1
- acryl_datahub_cloud/metadata/schemas/PostKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/QueryProperties.avsc +20 -0
- acryl_datahub_cloud/metadata/schemas/RemoteExecutorPoolInfo.avsc +9 -0
- acryl_datahub_cloud/metadata/schemas/SchemaFieldKey.avsc +1 -0
- acryl_datahub_cloud/metadata/schemas/Siblings.avsc +2 -0
- acryl_datahub_cloud/metadata/schemas/SubscriptionInfo.avsc +48 -1
- {acryl_datahub_cloud-0.3.9.2rc1.dist-info → acryl_datahub_cloud-0.3.10rc0.dist-info}/METADATA +42 -42
- {acryl_datahub_cloud-0.3.9.2rc1.dist-info → acryl_datahub_cloud-0.3.10rc0.dist-info}/RECORD +53 -51
- acryl_datahub_cloud/metadata/schemas/AnomalyInfo.avsc +0 -342
- {acryl_datahub_cloud-0.3.9.2rc1.dist-info → acryl_datahub_cloud-0.3.10rc0.dist-info}/WHEEL +0 -0
- {acryl_datahub_cloud-0.3.9.2rc1.dist-info → acryl_datahub_cloud-0.3.10rc0.dist-info}/entry_points.txt +0 -0
- {acryl_datahub_cloud-0.3.9.2rc1.dist-info → acryl_datahub_cloud-0.3.10rc0.dist-info}/top_level.txt +0 -0
|
@@ -1458,6 +1458,18 @@ class ChartUrn(_SpecificUrn):
|
|
|
1458
1458
|
def from_key_aspect(cls, key_aspect: "ChartKeyClass") -> "ChartUrn":
|
|
1459
1459
|
return cls(dashboard_tool=key_aspect.dashboardTool, chart_id=key_aspect.chartId)
|
|
1460
1460
|
|
|
1461
|
+
@classmethod
|
|
1462
|
+
def create_from_ids(
|
|
1463
|
+
cls,
|
|
1464
|
+
platform: str,
|
|
1465
|
+
name: str,
|
|
1466
|
+
platform_instance: Optional[str] = None,
|
|
1467
|
+
) -> "ChartUrn":
|
|
1468
|
+
return ChartUrn(
|
|
1469
|
+
dashboard_tool=platform,
|
|
1470
|
+
chart_id=f"{platform_instance}.{name}" if platform_instance else name,
|
|
1471
|
+
)
|
|
1472
|
+
|
|
1461
1473
|
@property
|
|
1462
1474
|
def dashboard_tool(self) -> str:
|
|
1463
1475
|
return self._entity_ids[0]
|
|
@@ -1585,62 +1597,6 @@ class SubscriptionUrn(_SpecificUrn):
|
|
|
1585
1597
|
def id(self) -> str:
|
|
1586
1598
|
return self._entity_ids[0]
|
|
1587
1599
|
|
|
1588
|
-
if TYPE_CHECKING:
|
|
1589
|
-
from datahub.metadata.schema_classes import AnomalyKeyClass
|
|
1590
|
-
|
|
1591
|
-
class AnomalyUrn(_SpecificUrn):
|
|
1592
|
-
ENTITY_TYPE: ClassVar[Literal["anomaly"]] = "anomaly"
|
|
1593
|
-
_URN_PARTS: ClassVar[int] = 1
|
|
1594
|
-
|
|
1595
|
-
def __init__(self, id: Union["AnomalyUrn", str], *, _allow_coercion: bool = True) -> None:
|
|
1596
|
-
if _allow_coercion:
|
|
1597
|
-
# Field coercion logic (if any is required).
|
|
1598
|
-
if isinstance(id, str):
|
|
1599
|
-
if id.startswith('urn:li:'):
|
|
1600
|
-
try:
|
|
1601
|
-
id = AnomalyUrn.from_string(id)
|
|
1602
|
-
except InvalidUrnError:
|
|
1603
|
-
raise InvalidUrnError(f'Expecting a AnomalyUrn but got {id}')
|
|
1604
|
-
else:
|
|
1605
|
-
id = UrnEncoder.encode_string(id)
|
|
1606
|
-
|
|
1607
|
-
# Validation logic.
|
|
1608
|
-
if not id:
|
|
1609
|
-
raise InvalidUrnError("AnomalyUrn id cannot be empty")
|
|
1610
|
-
if isinstance(id, AnomalyUrn):
|
|
1611
|
-
id = id.id
|
|
1612
|
-
elif isinstance(id, Urn):
|
|
1613
|
-
raise InvalidUrnError(f'Expecting a AnomalyUrn but got {id}')
|
|
1614
|
-
if UrnEncoder.contains_reserved_char(id):
|
|
1615
|
-
raise InvalidUrnError(f'AnomalyUrn id contains reserved characters')
|
|
1616
|
-
|
|
1617
|
-
super().__init__(self.ENTITY_TYPE, [id])
|
|
1618
|
-
|
|
1619
|
-
@classmethod
|
|
1620
|
-
def _parse_ids(cls, entity_ids: List[str]) -> "AnomalyUrn":
|
|
1621
|
-
if len(entity_ids) != cls._URN_PARTS:
|
|
1622
|
-
raise InvalidUrnError(f"AnomalyUrn should have {cls._URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
1623
|
-
return cls(id=entity_ids[0], _allow_coercion=False)
|
|
1624
|
-
|
|
1625
|
-
@classmethod
|
|
1626
|
-
def underlying_key_aspect_type(cls) -> Type["AnomalyKeyClass"]:
|
|
1627
|
-
from datahub.metadata.schema_classes import AnomalyKeyClass
|
|
1628
|
-
|
|
1629
|
-
return AnomalyKeyClass
|
|
1630
|
-
|
|
1631
|
-
def to_key_aspect(self) -> "AnomalyKeyClass":
|
|
1632
|
-
from datahub.metadata.schema_classes import AnomalyKeyClass
|
|
1633
|
-
|
|
1634
|
-
return AnomalyKeyClass(id=self.id)
|
|
1635
|
-
|
|
1636
|
-
@classmethod
|
|
1637
|
-
def from_key_aspect(cls, key_aspect: "AnomalyKeyClass") -> "AnomalyUrn":
|
|
1638
|
-
return cls(id=key_aspect.id)
|
|
1639
|
-
|
|
1640
|
-
@property
|
|
1641
|
-
def id(self) -> str:
|
|
1642
|
-
return self._entity_ids[0]
|
|
1643
|
-
|
|
1644
1600
|
if TYPE_CHECKING:
|
|
1645
1601
|
from datahub.metadata.schema_classes import RemoteExecutorPoolKeyClass
|
|
1646
1602
|
|
|
@@ -2400,6 +2356,62 @@ class ConstraintUrn(_SpecificUrn):
|
|
|
2400
2356
|
def id(self) -> str:
|
|
2401
2357
|
return self._entity_ids[0]
|
|
2402
2358
|
|
|
2359
|
+
if TYPE_CHECKING:
|
|
2360
|
+
from datahub.metadata.schema_classes import MonitorSuiteKeyClass
|
|
2361
|
+
|
|
2362
|
+
class MonitorSuiteUrn(_SpecificUrn):
|
|
2363
|
+
ENTITY_TYPE: ClassVar[Literal["monitorSuite"]] = "monitorSuite"
|
|
2364
|
+
_URN_PARTS: ClassVar[int] = 1
|
|
2365
|
+
|
|
2366
|
+
def __init__(self, id: Union["MonitorSuiteUrn", str], *, _allow_coercion: bool = True) -> None:
|
|
2367
|
+
if _allow_coercion:
|
|
2368
|
+
# Field coercion logic (if any is required).
|
|
2369
|
+
if isinstance(id, str):
|
|
2370
|
+
if id.startswith('urn:li:'):
|
|
2371
|
+
try:
|
|
2372
|
+
id = MonitorSuiteUrn.from_string(id)
|
|
2373
|
+
except InvalidUrnError:
|
|
2374
|
+
raise InvalidUrnError(f'Expecting a MonitorSuiteUrn but got {id}')
|
|
2375
|
+
else:
|
|
2376
|
+
id = UrnEncoder.encode_string(id)
|
|
2377
|
+
|
|
2378
|
+
# Validation logic.
|
|
2379
|
+
if not id:
|
|
2380
|
+
raise InvalidUrnError("MonitorSuiteUrn id cannot be empty")
|
|
2381
|
+
if isinstance(id, MonitorSuiteUrn):
|
|
2382
|
+
id = id.id
|
|
2383
|
+
elif isinstance(id, Urn):
|
|
2384
|
+
raise InvalidUrnError(f'Expecting a MonitorSuiteUrn but got {id}')
|
|
2385
|
+
if UrnEncoder.contains_reserved_char(id):
|
|
2386
|
+
raise InvalidUrnError(f'MonitorSuiteUrn id contains reserved characters')
|
|
2387
|
+
|
|
2388
|
+
super().__init__(self.ENTITY_TYPE, [id])
|
|
2389
|
+
|
|
2390
|
+
@classmethod
|
|
2391
|
+
def _parse_ids(cls, entity_ids: List[str]) -> "MonitorSuiteUrn":
|
|
2392
|
+
if len(entity_ids) != cls._URN_PARTS:
|
|
2393
|
+
raise InvalidUrnError(f"MonitorSuiteUrn should have {cls._URN_PARTS} parts, got {len(entity_ids)}: {entity_ids}")
|
|
2394
|
+
return cls(id=entity_ids[0], _allow_coercion=False)
|
|
2395
|
+
|
|
2396
|
+
@classmethod
|
|
2397
|
+
def underlying_key_aspect_type(cls) -> Type["MonitorSuiteKeyClass"]:
|
|
2398
|
+
from datahub.metadata.schema_classes import MonitorSuiteKeyClass
|
|
2399
|
+
|
|
2400
|
+
return MonitorSuiteKeyClass
|
|
2401
|
+
|
|
2402
|
+
def to_key_aspect(self) -> "MonitorSuiteKeyClass":
|
|
2403
|
+
from datahub.metadata.schema_classes import MonitorSuiteKeyClass
|
|
2404
|
+
|
|
2405
|
+
return MonitorSuiteKeyClass(id=self.id)
|
|
2406
|
+
|
|
2407
|
+
@classmethod
|
|
2408
|
+
def from_key_aspect(cls, key_aspect: "MonitorSuiteKeyClass") -> "MonitorSuiteUrn":
|
|
2409
|
+
return cls(id=key_aspect.id)
|
|
2410
|
+
|
|
2411
|
+
@property
|
|
2412
|
+
def id(self) -> str:
|
|
2413
|
+
return self._entity_ids[0]
|
|
2414
|
+
|
|
2403
2415
|
if TYPE_CHECKING:
|
|
2404
2416
|
from datahub.metadata.schema_classes import GlossaryNodeKeyClass
|
|
2405
2417
|
|
|
@@ -2793,6 +2805,18 @@ class DashboardUrn(_SpecificUrn):
|
|
|
2793
2805
|
def from_key_aspect(cls, key_aspect: "DashboardKeyClass") -> "DashboardUrn":
|
|
2794
2806
|
return cls(dashboard_tool=key_aspect.dashboardTool, dashboard_id=key_aspect.dashboardId)
|
|
2795
2807
|
|
|
2808
|
+
@classmethod
|
|
2809
|
+
def create_from_ids(
|
|
2810
|
+
cls,
|
|
2811
|
+
platform: str,
|
|
2812
|
+
name: str,
|
|
2813
|
+
platform_instance: Optional[str] = None,
|
|
2814
|
+
) -> "DashboardUrn":
|
|
2815
|
+
return DashboardUrn(
|
|
2816
|
+
dashboard_tool=platform,
|
|
2817
|
+
dashboard_id=f"{platform_instance}.{name}" if platform_instance else name,
|
|
2818
|
+
)
|
|
2819
|
+
|
|
2796
2820
|
@property
|
|
2797
2821
|
def dashboard_tool(self) -> str:
|
|
2798
2822
|
return self._entity_ids[0]
|
|
@@ -7,27 +7,17 @@
|
|
|
7
7
|
# pylint: skip-file
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
|
-
from .....schema_classes import AnomalyInfoClass
|
|
11
|
-
from .....schema_classes import AnomalyReviewClass
|
|
12
10
|
from .....schema_classes import AnomalyReviewStateClass
|
|
13
11
|
from .....schema_classes import AnomalySourceClass
|
|
14
12
|
from .....schema_classes import AnomalySourcePropertiesClass
|
|
15
13
|
from .....schema_classes import AnomalySourceTypeClass
|
|
16
|
-
from .....schema_classes import
|
|
17
|
-
from .....schema_classes import AnomalyStatusClass
|
|
18
|
-
from .....schema_classes import AnomalyStatusPropertiesClass
|
|
19
|
-
from .....schema_classes import AnomalyTypeClass
|
|
14
|
+
from .....schema_classes import MonitorAnomalyEventClass
|
|
20
15
|
|
|
21
16
|
|
|
22
|
-
AnomalyInfo = AnomalyInfoClass
|
|
23
|
-
AnomalyReview = AnomalyReviewClass
|
|
24
17
|
AnomalyReviewState = AnomalyReviewStateClass
|
|
25
18
|
AnomalySource = AnomalySourceClass
|
|
26
19
|
AnomalySourceProperties = AnomalySourcePropertiesClass
|
|
27
20
|
AnomalySourceType = AnomalySourceTypeClass
|
|
28
|
-
|
|
29
|
-
AnomalyStatus = AnomalyStatusClass
|
|
30
|
-
AnomalyStatusProperties = AnomalyStatusPropertiesClass
|
|
31
|
-
AnomalyType = AnomalyTypeClass
|
|
21
|
+
MonitorAnomalyEvent = MonitorAnomalyEventClass
|
|
32
22
|
|
|
33
23
|
# fmt: on
|
|
@@ -15,8 +15,11 @@ from .....schema_classes import AssertionAdjustmentSettingsClass
|
|
|
15
15
|
from .....schema_classes import AssertionAnalyticsRunEventClass
|
|
16
16
|
from .....schema_classes import AssertionDryRunEventClass
|
|
17
17
|
from .....schema_classes import AssertionDryRunResultClass
|
|
18
|
+
from .....schema_classes import AssertionExclusionWindowClass
|
|
19
|
+
from .....schema_classes import AssertionExclusionWindowTypeClass
|
|
18
20
|
from .....schema_classes import AssertionInferenceDetailsClass
|
|
19
21
|
from .....schema_classes import AssertionInfoClass
|
|
22
|
+
from .....schema_classes import AssertionMonitorSensitivityClass
|
|
20
23
|
from .....schema_classes import AssertionResultClass
|
|
21
24
|
from .....schema_classes import AssertionResultErrorClass
|
|
22
25
|
from .....schema_classes import AssertionResultErrorTypeClass
|
|
@@ -77,8 +80,11 @@ AssertionAdjustmentSettings = AssertionAdjustmentSettingsClass
|
|
|
77
80
|
AssertionAnalyticsRunEvent = AssertionAnalyticsRunEventClass
|
|
78
81
|
AssertionDryRunEvent = AssertionDryRunEventClass
|
|
79
82
|
AssertionDryRunResult = AssertionDryRunResultClass
|
|
83
|
+
AssertionExclusionWindow = AssertionExclusionWindowClass
|
|
84
|
+
AssertionExclusionWindowType = AssertionExclusionWindowTypeClass
|
|
80
85
|
AssertionInferenceDetails = AssertionInferenceDetailsClass
|
|
81
86
|
AssertionInfo = AssertionInfoClass
|
|
87
|
+
AssertionMonitorSensitivity = AssertionMonitorSensitivityClass
|
|
82
88
|
AssertionResult = AssertionResultClass
|
|
83
89
|
AssertionResultError = AssertionResultErrorClass
|
|
84
90
|
AssertionResultErrorType = AssertionResultErrorTypeClass
|
|
@@ -54,6 +54,7 @@ from .....schema_classes import InputFieldClass
|
|
|
54
54
|
from .....schema_classes import InputFieldsClass
|
|
55
55
|
from .....schema_classes import InstitutionalMemoryClass
|
|
56
56
|
from .....schema_classes import InstitutionalMemoryMetadataClass
|
|
57
|
+
from .....schema_classes import InstitutionalMemoryMetadataSettingsClass
|
|
57
58
|
from .....schema_classes import MLFeatureDataTypeClass
|
|
58
59
|
from .....schema_classes import MediaClass
|
|
59
60
|
from .....schema_classes import MediaTypeClass
|
|
@@ -141,6 +142,7 @@ InputField = InputFieldClass
|
|
|
141
142
|
InputFields = InputFieldsClass
|
|
142
143
|
InstitutionalMemory = InstitutionalMemoryClass
|
|
143
144
|
InstitutionalMemoryMetadata = InstitutionalMemoryMetadataClass
|
|
145
|
+
InstitutionalMemoryMetadataSettings = InstitutionalMemoryMetadataSettingsClass
|
|
144
146
|
MLFeatureDataType = MLFeatureDataTypeClass
|
|
145
147
|
Media = MediaClass
|
|
146
148
|
MediaType = MediaTypeClass
|
|
@@ -55,6 +55,7 @@ from ......schema_classes import MLModelGroupKeyClass
|
|
|
55
55
|
from ......schema_classes import MLModelKeyClass
|
|
56
56
|
from ......schema_classes import MLPrimaryKeyKeyClass
|
|
57
57
|
from ......schema_classes import MonitorKeyClass
|
|
58
|
+
from ......schema_classes import MonitorSuiteKeyClass
|
|
58
59
|
from ......schema_classes import NotebookKeyClass
|
|
59
60
|
from ......schema_classes import OwnershipTypeKeyClass
|
|
60
61
|
from ......schema_classes import PostKeyClass
|
|
@@ -120,6 +121,7 @@ MLModelGroupKey = MLModelGroupKeyClass
|
|
|
120
121
|
MLModelKey = MLModelKeyClass
|
|
121
122
|
MLPrimaryKeyKey = MLPrimaryKeyKeyClass
|
|
122
123
|
MonitorKey = MonitorKeyClass
|
|
124
|
+
MonitorSuiteKey = MonitorSuiteKeyClass
|
|
123
125
|
NotebookKey = NotebookKeyClass
|
|
124
126
|
OwnershipTypeKey = OwnershipTypeKeyClass
|
|
125
127
|
PostKey = PostKeyClass
|
|
@@ -25,9 +25,17 @@ from .....schema_classes import DatasetSchemaSourceTypeClass
|
|
|
25
25
|
from .....schema_classes import DatasetVolumeAssertionParametersClass
|
|
26
26
|
from .....schema_classes import DatasetVolumeSourceTypeClass
|
|
27
27
|
from .....schema_classes import EmbeddedAssertionClass
|
|
28
|
+
from .....schema_classes import MonitorErrorClass
|
|
29
|
+
from .....schema_classes import MonitorErrorTypeClass
|
|
28
30
|
from .....schema_classes import MonitorInfoClass
|
|
29
31
|
from .....schema_classes import MonitorModeClass
|
|
32
|
+
from .....schema_classes import MonitorStateClass
|
|
30
33
|
from .....schema_classes import MonitorStatusClass
|
|
34
|
+
from .....schema_classes import MonitorSuiteAssertionSettingsClass
|
|
35
|
+
from .....schema_classes import MonitorSuiteAssignmentSpecClass
|
|
36
|
+
from .....schema_classes import MonitorSuiteInfoClass
|
|
37
|
+
from .....schema_classes import MonitorSuiteNotificationSettingsClass
|
|
38
|
+
from .....schema_classes import MonitorSuiteTypeClass
|
|
31
39
|
from .....schema_classes import MonitorTimeseriesStateClass
|
|
32
40
|
from .....schema_classes import MonitorTypeClass
|
|
33
41
|
|
|
@@ -50,9 +58,17 @@ DatasetSchemaSourceType = DatasetSchemaSourceTypeClass
|
|
|
50
58
|
DatasetVolumeAssertionParameters = DatasetVolumeAssertionParametersClass
|
|
51
59
|
DatasetVolumeSourceType = DatasetVolumeSourceTypeClass
|
|
52
60
|
EmbeddedAssertion = EmbeddedAssertionClass
|
|
61
|
+
MonitorError = MonitorErrorClass
|
|
62
|
+
MonitorErrorType = MonitorErrorTypeClass
|
|
53
63
|
MonitorInfo = MonitorInfoClass
|
|
54
64
|
MonitorMode = MonitorModeClass
|
|
65
|
+
MonitorState = MonitorStateClass
|
|
55
66
|
MonitorStatus = MonitorStatusClass
|
|
67
|
+
MonitorSuiteAssertionSettings = MonitorSuiteAssertionSettingsClass
|
|
68
|
+
MonitorSuiteAssignmentSpec = MonitorSuiteAssignmentSpecClass
|
|
69
|
+
MonitorSuiteInfo = MonitorSuiteInfoClass
|
|
70
|
+
MonitorSuiteNotificationSettings = MonitorSuiteNotificationSettingsClass
|
|
71
|
+
MonitorSuiteType = MonitorSuiteTypeClass
|
|
56
72
|
MonitorTimeseriesState = MonitorTimeseriesStateClass
|
|
57
73
|
MonitorType = MonitorTypeClass
|
|
58
74
|
|
|
@@ -7,17 +7,25 @@
|
|
|
7
7
|
# pylint: skip-file
|
|
8
8
|
# fmt: off
|
|
9
9
|
# isort: skip_file
|
|
10
|
+
from .....schema_classes import AbsoluteTimeWindowClass
|
|
10
11
|
from .....schema_classes import CalendarIntervalClass
|
|
12
|
+
from .....schema_classes import DayOfWeekClass
|
|
13
|
+
from .....schema_classes import HolidayWindowClass
|
|
11
14
|
from .....schema_classes import PartitionSpecClass
|
|
12
15
|
from .....schema_classes import PartitionTypeClass
|
|
13
16
|
from .....schema_classes import TimeWindowClass
|
|
14
17
|
from .....schema_classes import TimeWindowSizeClass
|
|
18
|
+
from .....schema_classes import WeeklyWindowClass
|
|
15
19
|
|
|
16
20
|
|
|
21
|
+
AbsoluteTimeWindow = AbsoluteTimeWindowClass
|
|
17
22
|
CalendarInterval = CalendarIntervalClass
|
|
23
|
+
DayOfWeek = DayOfWeekClass
|
|
24
|
+
HolidayWindow = HolidayWindowClass
|
|
18
25
|
PartitionSpec = PartitionSpecClass
|
|
19
26
|
PartitionType = PartitionTypeClass
|
|
20
27
|
TimeWindow = TimeWindowClass
|
|
21
28
|
TimeWindowSize = TimeWindowSizeClass
|
|
29
|
+
WeeklyWindow = WeeklyWindowClass
|
|
22
30
|
|
|
23
31
|
# fmt: on
|