pycarlo 0.10.94__py3-none-any.whl → 0.10.96__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 +16 -36
- pycarlo/lib/schema.py +14 -12
- {pycarlo-0.10.94.dist-info → pycarlo-0.10.96.dist-info}/METADATA +1 -1
- {pycarlo-0.10.94.dist-info → pycarlo-0.10.96.dist-info}/RECORD +7 -7
- {pycarlo-0.10.94.dist-info → pycarlo-0.10.96.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.94.dist-info → pycarlo-0.10.96.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.94.dist-info → pycarlo-0.10.96.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -110988,18 +110988,6 @@
|
|
|
110988
110988
|
"ofType": null
|
|
110989
110989
|
}
|
|
110990
110990
|
},
|
|
110991
|
-
{
|
|
110992
|
-
"args": [],
|
|
110993
|
-
"deprecationReason": null,
|
|
110994
|
-
"description": "",
|
|
110995
|
-
"isDeprecated": false,
|
|
110996
|
-
"name": "notifyRuleRunFailure",
|
|
110997
|
-
"type": {
|
|
110998
|
-
"kind": "SCALAR",
|
|
110999
|
-
"name": "Boolean",
|
|
111000
|
-
"ofType": null
|
|
111001
|
-
}
|
|
111002
|
-
},
|
|
111003
110991
|
{
|
|
111004
110992
|
"args": [],
|
|
111005
110993
|
"deprecationReason": null,
|
|
@@ -112340,18 +112328,6 @@
|
|
|
112340
112328
|
"ofType": null
|
|
112341
112329
|
}
|
|
112342
112330
|
},
|
|
112343
|
-
{
|
|
112344
|
-
"args": [],
|
|
112345
|
-
"deprecationReason": null,
|
|
112346
|
-
"description": "DEPRECATED: Not used for anything.",
|
|
112347
|
-
"isDeprecated": false,
|
|
112348
|
-
"name": "notifyRuleRunFailure",
|
|
112349
|
-
"type": {
|
|
112350
|
-
"kind": "SCALAR",
|
|
112351
|
-
"name": "Boolean",
|
|
112352
|
-
"ofType": null
|
|
112353
|
-
}
|
|
112354
|
-
},
|
|
112355
112331
|
{
|
|
112356
112332
|
"args": [],
|
|
112357
112333
|
"deprecationReason": null,
|
|
@@ -114086,18 +114062,6 @@
|
|
|
114086
114062
|
"ofType": null
|
|
114087
114063
|
}
|
|
114088
114064
|
},
|
|
114089
|
-
{
|
|
114090
|
-
"args": [],
|
|
114091
|
-
"deprecationReason": null,
|
|
114092
|
-
"description": "DEPRECATED: Not used for anything",
|
|
114093
|
-
"isDeprecated": false,
|
|
114094
|
-
"name": "notifyRuleRunFailure",
|
|
114095
|
-
"type": {
|
|
114096
|
-
"kind": "SCALAR",
|
|
114097
|
-
"name": "Boolean",
|
|
114098
|
-
"ofType": null
|
|
114099
|
-
}
|
|
114100
|
-
},
|
|
114101
114065
|
{
|
|
114102
114066
|
"args": [],
|
|
114103
114067
|
"deprecationReason": null,
|
|
@@ -139506,6 +139470,22 @@
|
|
|
139506
139470
|
}
|
|
139507
139471
|
}
|
|
139508
139472
|
},
|
|
139473
|
+
{
|
|
139474
|
+
"args": [],
|
|
139475
|
+
"deprecationReason": null,
|
|
139476
|
+
"description": null,
|
|
139477
|
+
"isDeprecated": false,
|
|
139478
|
+
"name": "countDatabaseSchema",
|
|
139479
|
+
"type": {
|
|
139480
|
+
"kind": "NON_NULL",
|
|
139481
|
+
"name": null,
|
|
139482
|
+
"ofType": {
|
|
139483
|
+
"kind": "SCALAR",
|
|
139484
|
+
"name": "Int",
|
|
139485
|
+
"ofType": null
|
|
139486
|
+
}
|
|
139487
|
+
}
|
|
139488
|
+
},
|
|
139509
139489
|
{
|
|
139510
139490
|
"args": [],
|
|
139511
139491
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -12879,7 +12879,16 @@ class AssetSelection(sgqlc.types.Type):
|
|
|
12879
12879
|
|
|
12880
12880
|
class AssetSelectionResult(sgqlc.types.Type):
|
|
12881
12881
|
__schema__ = schema
|
|
12882
|
-
__field_names__ = (
|
|
12882
|
+
__field_names__ = (
|
|
12883
|
+
"name",
|
|
12884
|
+
"id",
|
|
12885
|
+
"type",
|
|
12886
|
+
"count",
|
|
12887
|
+
"count_unselected",
|
|
12888
|
+
"count_database_schema",
|
|
12889
|
+
"selected",
|
|
12890
|
+
"mcon",
|
|
12891
|
+
)
|
|
12883
12892
|
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
|
|
12884
12893
|
|
|
12885
12894
|
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
|
|
@@ -12890,6 +12899,10 @@ class AssetSelectionResult(sgqlc.types.Type):
|
|
|
12890
12899
|
|
|
12891
12900
|
count_unselected = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="countUnselected")
|
|
12892
12901
|
|
|
12902
|
+
count_database_schema = sgqlc.types.Field(
|
|
12903
|
+
sgqlc.types.non_null(Int), graphql_name="countDatabaseSchema"
|
|
12904
|
+
)
|
|
12905
|
+
|
|
12893
12906
|
selected = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="selected")
|
|
12894
12907
|
|
|
12895
12908
|
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
@@ -67888,7 +67901,6 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
67888
67901
|
"conditional_snooze",
|
|
67889
67902
|
"event_rollup_until_changed",
|
|
67890
67903
|
"event_rollup_count",
|
|
67891
|
-
"notify_rule_run_failure",
|
|
67892
67904
|
"schedule",
|
|
67893
67905
|
"dc_schedule_uuid",
|
|
67894
67906
|
"data_collection_dc_schedule_uuid",
|
|
@@ -68028,9 +68040,6 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
68028
68040
|
event_rollup_count = sgqlc.types.Field(Int, graphql_name="eventRollupCount")
|
|
68029
68041
|
"""The number of events to roll up into a single incident"""
|
|
68030
68042
|
|
|
68031
|
-
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
68032
|
-
"""DEPRECATED: Not used for anything"""
|
|
68033
|
-
|
|
68034
68043
|
schedule = sgqlc.types.Field(DataCollectorSchedule, graphql_name="schedule")
|
|
68035
68044
|
|
|
68036
68045
|
dc_schedule_uuid = sgqlc.types.Field(UUID, graphql_name="dcScheduleUuid")
|
|
@@ -71209,7 +71218,6 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
71209
71218
|
"schedule",
|
|
71210
71219
|
"monitor_name",
|
|
71211
71220
|
"is_paused",
|
|
71212
|
-
"notify_rule_run_failure",
|
|
71213
71221
|
"disable_look_back_bootstrap",
|
|
71214
71222
|
"high_segment_count",
|
|
71215
71223
|
"segment_count_hint",
|
|
@@ -71341,9 +71349,6 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
71341
71349
|
is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
|
|
71342
71350
|
"""Is this monitor paused?"""
|
|
71343
71351
|
|
|
71344
|
-
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
71345
|
-
"""DEPRECATED: Not used for anything."""
|
|
71346
|
-
|
|
71347
71352
|
disable_look_back_bootstrap = sgqlc.types.Field(
|
|
71348
71353
|
Boolean, graphql_name="disableLookBackBootstrap"
|
|
71349
71354
|
)
|
|
@@ -73670,7 +73675,6 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
73670
73675
|
"last_update_time",
|
|
73671
73676
|
"schedule_type",
|
|
73672
73677
|
"last_run",
|
|
73673
|
-
"notify_rule_run_failure",
|
|
73674
73678
|
"interval_in_seconds",
|
|
73675
73679
|
"prev_execution_time",
|
|
73676
73680
|
"next_execution_time",
|
|
@@ -73780,8 +73784,6 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
73780
73784
|
|
|
73781
73785
|
last_run = sgqlc.types.Field(DateTime, graphql_name="lastRun")
|
|
73782
73786
|
|
|
73783
|
-
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
73784
|
-
|
|
73785
73787
|
interval_in_seconds = sgqlc.types.Field(Int, graphql_name="intervalInSeconds")
|
|
73786
73788
|
|
|
73787
73789
|
prev_execution_time = sgqlc.types.Field(DateTime, graphql_name="prevExecutionTime")
|
|
@@ -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=88n1tM9e47EjU_3iYwPOwe8kwUiwTzefxve5DfAEfq0,6023270
|
|
39
|
+
pycarlo/lib/schema.py,sha256=uO_Vb6SyPpODvFwKPUFza5m3yoeTRvebeSdnMHElJSs,2601366
|
|
40
|
+
pycarlo-0.10.96.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.96.dist-info/METADATA,sha256=41b01u4arzgcEwnIrDttxdFTEuJvywZGiU1jbHCHEo8,8741
|
|
42
|
+
pycarlo-0.10.96.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.96.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.96.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|