pycarlo 0.10.83__py3-none-any.whl → 0.10.85__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 +36 -0
- pycarlo/lib/schema.py +19 -1
- {pycarlo-0.10.83.dist-info → pycarlo-0.10.85.dist-info}/METADATA +1 -1
- {pycarlo-0.10.83.dist-info → pycarlo-0.10.85.dist-info}/RECORD +7 -7
- {pycarlo-0.10.83.dist-info → pycarlo-0.10.85.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.83.dist-info → pycarlo-0.10.85.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.83.dist-info → pycarlo-0.10.85.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -52550,6 +52550,18 @@
|
|
|
52550
52550
|
}
|
|
52551
52551
|
}
|
|
52552
52552
|
},
|
|
52553
|
+
{
|
|
52554
|
+
"args": [],
|
|
52555
|
+
"deprecationReason": null,
|
|
52556
|
+
"description": "",
|
|
52557
|
+
"isDeprecated": false,
|
|
52558
|
+
"name": "deletedAt",
|
|
52559
|
+
"type": {
|
|
52560
|
+
"kind": "SCALAR",
|
|
52561
|
+
"name": "DateTime",
|
|
52562
|
+
"ofType": null
|
|
52563
|
+
}
|
|
52564
|
+
},
|
|
52553
52565
|
{
|
|
52554
52566
|
"args": [],
|
|
52555
52567
|
"deprecationReason": null,
|
|
@@ -54094,6 +54106,18 @@
|
|
|
54094
54106
|
}
|
|
54095
54107
|
}
|
|
54096
54108
|
},
|
|
54109
|
+
{
|
|
54110
|
+
"args": [],
|
|
54111
|
+
"deprecationReason": null,
|
|
54112
|
+
"description": "",
|
|
54113
|
+
"isDeprecated": false,
|
|
54114
|
+
"name": "deletedAt",
|
|
54115
|
+
"type": {
|
|
54116
|
+
"kind": "SCALAR",
|
|
54117
|
+
"name": "DateTime",
|
|
54118
|
+
"ofType": null
|
|
54119
|
+
}
|
|
54120
|
+
},
|
|
54097
54121
|
{
|
|
54098
54122
|
"args": [],
|
|
54099
54123
|
"deprecationReason": null,
|
|
@@ -59902,6 +59926,18 @@
|
|
|
59902
59926
|
"name": "Boolean",
|
|
59903
59927
|
"ofType": null
|
|
59904
59928
|
}
|
|
59929
|
+
},
|
|
59930
|
+
{
|
|
59931
|
+
"args": [],
|
|
59932
|
+
"deprecationReason": null,
|
|
59933
|
+
"description": "Human-readable description of the event",
|
|
59934
|
+
"isDeprecated": false,
|
|
59935
|
+
"name": "description",
|
|
59936
|
+
"type": {
|
|
59937
|
+
"kind": "SCALAR",
|
|
59938
|
+
"name": "String",
|
|
59939
|
+
"ofType": null
|
|
59940
|
+
}
|
|
59905
59941
|
}
|
|
59906
59942
|
],
|
|
59907
59943
|
"inputFields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -13647,9 +13647,20 @@ class AzureInformation(sgqlc.types.Type):
|
|
|
13647
13647
|
|
|
13648
13648
|
class BiContainer(sgqlc.types.Type):
|
|
13649
13649
|
__schema__ = schema
|
|
13650
|
-
__field_names__ = (
|
|
13650
|
+
__field_names__ = (
|
|
13651
|
+
"id",
|
|
13652
|
+
"deleted_at",
|
|
13653
|
+
"account",
|
|
13654
|
+
"uuid",
|
|
13655
|
+
"data_collector",
|
|
13656
|
+
"type",
|
|
13657
|
+
"name",
|
|
13658
|
+
"connections",
|
|
13659
|
+
)
|
|
13651
13660
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
13652
13661
|
|
|
13662
|
+
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
13663
|
+
|
|
13653
13664
|
account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
|
|
13654
13665
|
|
|
13655
13666
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -19120,6 +19131,7 @@ class EtlContainer(sgqlc.types.Type):
|
|
|
19120
19131
|
__schema__ = schema
|
|
19121
19132
|
__field_names__ = (
|
|
19122
19133
|
"id",
|
|
19134
|
+
"deleted_at",
|
|
19123
19135
|
"account",
|
|
19124
19136
|
"uuid",
|
|
19125
19137
|
"data_collector",
|
|
@@ -19145,6 +19157,8 @@ class EtlContainer(sgqlc.types.Type):
|
|
|
19145
19157
|
)
|
|
19146
19158
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
19147
19159
|
|
|
19160
|
+
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
19161
|
+
|
|
19148
19162
|
account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
|
|
19149
19163
|
|
|
19150
19164
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -70188,6 +70202,7 @@ class Event(sgqlc.types.Type, Node):
|
|
|
70188
70202
|
"mc_sql",
|
|
70189
70203
|
"source_sql",
|
|
70190
70204
|
"is_merged",
|
|
70205
|
+
"description",
|
|
70191
70206
|
)
|
|
70192
70207
|
event_type = sgqlc.types.Field(
|
|
70193
70208
|
sgqlc.types.non_null(EventModelEventType), graphql_name="eventType"
|
|
@@ -70320,6 +70335,9 @@ class Event(sgqlc.types.Type, Node):
|
|
|
70320
70335
|
merged into the alert currently associated to this event.
|
|
70321
70336
|
"""
|
|
70322
70337
|
|
|
70338
|
+
description = sgqlc.types.Field(String, graphql_name="description")
|
|
70339
|
+
"""Human-readable description of the event"""
|
|
70340
|
+
|
|
70323
70341
|
|
|
70324
70342
|
class EventDataIncidentCommentTimeline(sgqlc.types.Type, IEventDataBaseTimeline):
|
|
70325
70343
|
__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=3ysxs49bKFw59w33DIzrtgwRMQe9IEsgnhqwfk-yJGA,6015569
|
|
39
|
+
pycarlo/lib/schema.py,sha256=92MUS6jjuo6_TZYfNzgEUVsbkgZY2htTyvHbDF8q-p8,2597661
|
|
40
|
+
pycarlo-0.10.85.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.85.dist-info/METADATA,sha256=33ZGnj3_14kz73WgsYWnWLNofRsZXjbEK4dKCiqRlkI,8741
|
|
42
|
+
pycarlo-0.10.85.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.85.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.85.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|