pycarlo 0.10.156__py3-none-any.whl → 0.10.157__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 +32 -0
- pycarlo/lib/schema.py +11 -1
- {pycarlo-0.10.156.dist-info → pycarlo-0.10.157.dist-info}/METADATA +1 -1
- {pycarlo-0.10.156.dist-info → pycarlo-0.10.157.dist-info}/RECORD +7 -7
- {pycarlo-0.10.156.dist-info → pycarlo-0.10.157.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.156.dist-info → pycarlo-0.10.157.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.156.dist-info → pycarlo-0.10.157.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -140329,6 +140329,38 @@
|
|
|
140329
140329
|
"ofType": null
|
|
140330
140330
|
}
|
|
140331
140331
|
}
|
|
140332
|
+
},
|
|
140333
|
+
{
|
|
140334
|
+
"args": [],
|
|
140335
|
+
"deprecationReason": null,
|
|
140336
|
+
"description": "Alert types supported by Troubleshooting Agent",
|
|
140337
|
+
"isDeprecated": false,
|
|
140338
|
+
"name": "unsupportedAlertTypes",
|
|
140339
|
+
"type": {
|
|
140340
|
+
"kind": "LIST",
|
|
140341
|
+
"name": null,
|
|
140342
|
+
"ofType": {
|
|
140343
|
+
"kind": "ENUM",
|
|
140344
|
+
"name": "AlertType",
|
|
140345
|
+
"ofType": null
|
|
140346
|
+
}
|
|
140347
|
+
}
|
|
140348
|
+
},
|
|
140349
|
+
{
|
|
140350
|
+
"args": [],
|
|
140351
|
+
"deprecationReason": null,
|
|
140352
|
+
"description": "Alert sub types supported by Troubleshooting Agent",
|
|
140353
|
+
"isDeprecated": false,
|
|
140354
|
+
"name": "supportedAlertSubTypes",
|
|
140355
|
+
"type": {
|
|
140356
|
+
"kind": "LIST",
|
|
140357
|
+
"name": null,
|
|
140358
|
+
"ofType": {
|
|
140359
|
+
"kind": "ENUM",
|
|
140360
|
+
"name": "AlertSubType",
|
|
140361
|
+
"ofType": null
|
|
140362
|
+
}
|
|
140363
|
+
}
|
|
140332
140364
|
}
|
|
140333
140365
|
],
|
|
140334
140366
|
"inputFields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -63172,7 +63172,7 @@ class SyncMonitorsToCollibra(sgqlc.types.Type):
|
|
|
63172
63172
|
|
|
63173
63173
|
class TSAAvailability(sgqlc.types.Type):
|
|
63174
63174
|
__schema__ = schema
|
|
63175
|
-
__field_names__ = ("enabled", "reasons")
|
|
63175
|
+
__field_names__ = ("enabled", "reasons", "unsupported_alert_types", "supported_alert_sub_types")
|
|
63176
63176
|
enabled = sgqlc.types.Field(Boolean, graphql_name="enabled")
|
|
63177
63177
|
"""If true, the Troubleshooting Agent is available to the
|
|
63178
63178
|
user/account
|
|
@@ -63181,6 +63181,16 @@ class TSAAvailability(sgqlc.types.Type):
|
|
|
63181
63181
|
reasons = sgqlc.types.Field(sgqlc.types.list_of(DenialReason), graphql_name="reasons")
|
|
63182
63182
|
"""Reasons if Troubleshooting Agent not available"""
|
|
63183
63183
|
|
|
63184
|
+
unsupported_alert_types = sgqlc.types.Field(
|
|
63185
|
+
sgqlc.types.list_of(AlertType), graphql_name="unsupportedAlertTypes"
|
|
63186
|
+
)
|
|
63187
|
+
"""Alert types supported by Troubleshooting Agent"""
|
|
63188
|
+
|
|
63189
|
+
supported_alert_sub_types = sgqlc.types.Field(
|
|
63190
|
+
sgqlc.types.list_of(AlertSubType), graphql_name="supportedAlertSubTypes"
|
|
63191
|
+
)
|
|
63192
|
+
"""Alert sub types supported by Troubleshooting Agent"""
|
|
63193
|
+
|
|
63184
63194
|
|
|
63185
63195
|
class TableAnomalyConnection(sgqlc.types.relay.Connection):
|
|
63186
63196
|
__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=WZQuZNHCIpgmzRfjCOgVtAuCHsRed1hbIkoOETxVI-0,6218420
|
|
39
|
+
pycarlo/lib/schema.py,sha256=U7WXufGPXM4OkdlbAqQ7DYsrFlesDqojAu9LCEqGmbs,2698799
|
|
40
|
+
pycarlo-0.10.157.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.157.dist-info/METADATA,sha256=V7uDdq2008Z-DSOSS2v2mirxlUuQZLqrY8xJeZZJRuE,8742
|
|
42
|
+
pycarlo-0.10.157.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.157.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.157.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|