pycarlo 0.10.111__py3-none-any.whl → 0.10.113__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 pycarlo might be problematic. Click here for more details.
- pycarlo/lib/schema.json +819 -705
- pycarlo/lib/schema.py +30 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.113.dist-info}/METADATA +1 -1
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.113.dist-info}/RECORD +7 -7
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.113.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.113.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.111.dist-info → pycarlo-0.10.113.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -5216,6 +5216,7 @@ class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
|
|
|
5216
5216
|
class UserDefinedMonitors(sgqlc.types.Enum):
|
|
5217
5217
|
"""Enumeration Choices:
|
|
5218
5218
|
|
|
5219
|
+
* `AGENT`: Agent
|
|
5219
5220
|
* `CATEGORIES`: Dimension - legacy
|
|
5220
5221
|
* `COMPARISON`: Comparison - legacy
|
|
5221
5222
|
* `CUSTOM_SQL`: Custom SQL
|
|
@@ -5234,6 +5235,7 @@ class UserDefinedMonitors(sgqlc.types.Enum):
|
|
|
5234
5235
|
|
|
5235
5236
|
__schema__ = schema
|
|
5236
5237
|
__choices__ = (
|
|
5238
|
+
"AGENT",
|
|
5237
5239
|
"CATEGORIES",
|
|
5238
5240
|
"COMPARISON",
|
|
5239
5241
|
"CUSTOM_SQL",
|
|
@@ -10275,6 +10277,8 @@ class IMetricsMonitor(sgqlc.types.Interface):
|
|
|
10275
10277
|
"segment_count",
|
|
10276
10278
|
"bootstrap",
|
|
10277
10279
|
"sensitivity",
|
|
10280
|
+
"monitor_sql_blocks",
|
|
10281
|
+
"sampling_config",
|
|
10278
10282
|
)
|
|
10279
10283
|
monitor_fields = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="monitorFields")
|
|
10280
10284
|
"""Field/s to monitor"""
|
|
@@ -10359,6 +10363,12 @@ class IMetricsMonitor(sgqlc.types.Interface):
|
|
|
10359
10363
|
sensitivity = sgqlc.types.Field(SensitivityLevels, graphql_name="sensitivity")
|
|
10360
10364
|
"""Sensitivity for automated thresholds"""
|
|
10361
10365
|
|
|
10366
|
+
monitor_sql_blocks = sgqlc.types.Field("MonitorSqlBlocks", graphql_name="monitorSqlBlocks")
|
|
10367
|
+
"""SQL blocks used on the monitor"""
|
|
10368
|
+
|
|
10369
|
+
sampling_config = sgqlc.types.Field("MonitorSamplingConfig", graphql_name="samplingConfig")
|
|
10370
|
+
"""Sampling configuration for the monitor"""
|
|
10371
|
+
|
|
10362
10372
|
|
|
10363
10373
|
class IMonitor(sgqlc.types.Interface):
|
|
10364
10374
|
__schema__ = schema
|
|
@@ -69500,6 +69510,7 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
69500
69510
|
"mc_sql",
|
|
69501
69511
|
"tags",
|
|
69502
69512
|
"data_quality_dimension",
|
|
69513
|
+
"notify_rule_run_failure",
|
|
69503
69514
|
"variables",
|
|
69504
69515
|
"variable_definitions",
|
|
69505
69516
|
)
|
|
@@ -69783,6 +69794,9 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
69783
69794
|
data_quality_dimension = sgqlc.types.Field(String, graphql_name="dataQualityDimension")
|
|
69784
69795
|
"""Data Quality Dimension of the monitor."""
|
|
69785
69796
|
|
|
69797
|
+
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
69798
|
+
"""DEPRECATED: Replaced by failure audiences"""
|
|
69799
|
+
|
|
69786
69800
|
variables = sgqlc.types.Field(JSONString, graphql_name="variables")
|
|
69787
69801
|
"""Variables for the query"""
|
|
69788
69802
|
|
|
@@ -72846,6 +72860,7 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
72846
72860
|
"agg_select_expression",
|
|
72847
72861
|
"bootstrap",
|
|
72848
72862
|
"sensitivity",
|
|
72863
|
+
"notify_rule_run_failure",
|
|
72849
72864
|
)
|
|
72850
72865
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
72851
72866
|
|
|
@@ -73054,6 +73069,9 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
73054
73069
|
sensitivity = sgqlc.types.Field(SensitivityLevels, graphql_name="sensitivity")
|
|
73055
73070
|
"""Sensitivity for automated thresholds"""
|
|
73056
73071
|
|
|
73072
|
+
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
73073
|
+
"""DEPRECATED: Replaced by failure audiences"""
|
|
73074
|
+
|
|
73057
73075
|
|
|
73058
73076
|
class Monitor(
|
|
73059
73077
|
sgqlc.types.Type,
|
|
@@ -75316,9 +75334,12 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
75316
75334
|
"alert_ids",
|
|
75317
75335
|
"invalid_rows",
|
|
75318
75336
|
"domain_restrictions",
|
|
75337
|
+
"monitor_sql_blocks",
|
|
75338
|
+
"sampling_config",
|
|
75319
75339
|
"entity_mcons",
|
|
75320
75340
|
"has_custom_rule_name",
|
|
75321
75341
|
"is_transitioning_data_provider",
|
|
75342
|
+
"notify_rule_run_failure",
|
|
75322
75343
|
)
|
|
75323
75344
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
75324
75345
|
|
|
@@ -75494,6 +75515,12 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
75494
75515
|
monitor, if any
|
|
75495
75516
|
"""
|
|
75496
75517
|
|
|
75518
|
+
monitor_sql_blocks = sgqlc.types.Field(MonitorSqlBlocks, graphql_name="monitorSqlBlocks")
|
|
75519
|
+
"""SQL blocks used on the monitor"""
|
|
75520
|
+
|
|
75521
|
+
sampling_config = sgqlc.types.Field(MonitorSamplingConfig, graphql_name="samplingConfig")
|
|
75522
|
+
"""Sampling configuration for the monitor"""
|
|
75523
|
+
|
|
75497
75524
|
entity_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="entityMcons")
|
|
75498
75525
|
"""MCONs for monitored tables/views"""
|
|
75499
75526
|
|
|
@@ -75503,6 +75530,9 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
75503
75530
|
Boolean, graphql_name="isTransitioningDataProvider"
|
|
75504
75531
|
)
|
|
75505
75532
|
|
|
75533
|
+
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
75534
|
+
"""DEPRECATED: Replaced by failure audiences"""
|
|
75535
|
+
|
|
75506
75536
|
|
|
75507
75537
|
class UserInvite(sgqlc.types.Type, Node):
|
|
75508
75538
|
__schema__ = schema
|
|
@@ -35,10 +35,10 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
35
35
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
36
36
|
pycarlo/lib/README.md,sha256=QGNeUefPzLKGyZqn5aITpcFgkC9WQTNS292BGisRFHk,139
|
|
37
37
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
pycarlo/lib/schema.json,sha256=
|
|
39
|
-
pycarlo/lib/schema.py,sha256=
|
|
40
|
-
pycarlo-0.10.
|
|
41
|
-
pycarlo-0.10.
|
|
42
|
-
pycarlo-0.10.
|
|
43
|
-
pycarlo-0.10.
|
|
44
|
-
pycarlo-0.10.
|
|
38
|
+
pycarlo/lib/schema.json,sha256=Ti1EVeUUqBc8F2F3bQ1wnoBs_psAdgBZpqUgrrKsY-c,6135081
|
|
39
|
+
pycarlo/lib/schema.py,sha256=c8jwOwPDvWtdjofSmfxR254a4Onp0MNR-VWmGhUkJfo,2666155
|
|
40
|
+
pycarlo-0.10.113.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.113.dist-info/METADATA,sha256=DHR_l6ywDJ6acbXCjxDuWbBVwtaR3AKpuV7NOoaGKSQ,8742
|
|
42
|
+
pycarlo-0.10.113.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.113.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.113.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|