pycarlo 0.10.129__py3-none-any.whl → 0.10.131__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 +15 -1
- pycarlo/lib/schema.py +9 -2
- {pycarlo-0.10.129.dist-info → pycarlo-0.10.131.dist-info}/METADATA +1 -1
- {pycarlo-0.10.129.dist-info → pycarlo-0.10.131.dist-info}/RECORD +7 -7
- {pycarlo-0.10.129.dist-info → pycarlo-0.10.131.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.129.dist-info → pycarlo-0.10.131.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.129.dist-info → pycarlo-0.10.131.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -21324,6 +21324,20 @@
|
|
|
21324
21324
|
"ofType": null
|
|
21325
21325
|
}
|
|
21326
21326
|
},
|
|
21327
|
+
{
|
|
21328
|
+
"defaultValue": null,
|
|
21329
|
+
"description": "Filter on multiple mcons",
|
|
21330
|
+
"name": "mcons",
|
|
21331
|
+
"type": {
|
|
21332
|
+
"kind": "LIST",
|
|
21333
|
+
"name": null,
|
|
21334
|
+
"ofType": {
|
|
21335
|
+
"kind": "SCALAR",
|
|
21336
|
+
"name": "String",
|
|
21337
|
+
"ofType": null
|
|
21338
|
+
}
|
|
21339
|
+
}
|
|
21340
|
+
},
|
|
21327
21341
|
{
|
|
21328
21342
|
"defaultValue": null,
|
|
21329
21343
|
"description": "Filter on parent_mcon",
|
|
@@ -162299,7 +162313,7 @@
|
|
|
162299
162313
|
"name": null,
|
|
162300
162314
|
"ofType": {
|
|
162301
162315
|
"kind": "INPUT_OBJECT",
|
|
162302
|
-
"name": "
|
|
162316
|
+
"name": "MetricAlertConditionInput",
|
|
162303
162317
|
"ofType": null
|
|
162304
162318
|
}
|
|
162305
162319
|
}
|
pycarlo/lib/schema.py
CHANGED
|
@@ -35612,7 +35612,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
35612
35612
|
"alert_conditions",
|
|
35613
35613
|
sgqlc.types.Arg(
|
|
35614
35614
|
sgqlc.types.non_null(
|
|
35615
|
-
sgqlc.types.list_of(sgqlc.types.non_null(
|
|
35615
|
+
sgqlc.types.list_of(sgqlc.types.non_null(MetricAlertConditionInput))
|
|
35616
35616
|
),
|
|
35617
35617
|
graphql_name="alertConditions",
|
|
35618
35618
|
default=None,
|
|
@@ -35717,7 +35717,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
35717
35717
|
|
|
35718
35718
|
* `agent_span_filters` (`[AgentSpanFilterInput!]!`): Filter by
|
|
35719
35719
|
agent span fields (agent, workflow, task, span_name)
|
|
35720
|
-
* `alert_conditions` (`[
|
|
35720
|
+
* `alert_conditions` (`[MetricAlertConditionInput!]!`): Alert
|
|
35721
35721
|
conditions.
|
|
35722
35722
|
* `audiences` (`[String!]`): The monitor notification audiences
|
|
35723
35723
|
* `connection_id` (`UUID`): Specify a connection (e.g. query-
|
|
@@ -55194,6 +55194,12 @@ class Query(sgqlc.types.Type):
|
|
|
55194
55194
|
),
|
|
55195
55195
|
("operator", sgqlc.types.Arg(String, graphql_name="operator", default="OR")),
|
|
55196
55196
|
("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
|
|
55197
|
+
(
|
|
55198
|
+
"mcons",
|
|
55199
|
+
sgqlc.types.Arg(
|
|
55200
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
55201
|
+
),
|
|
55202
|
+
),
|
|
55197
55203
|
("parent_mcon", sgqlc.types.Arg(String, graphql_name="parentMcon", default=None)),
|
|
55198
55204
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
55199
55205
|
("tags_only", sgqlc.types.Arg(Boolean, graphql_name="tagsOnly", default=False)),
|
|
@@ -55296,6 +55302,7 @@ class Query(sgqlc.types.Type):
|
|
|
55296
55302
|
* `operator` (`String`): Search operator to use, either OR or AND
|
|
55297
55303
|
(DEPRECATED) (default: `"OR"`)
|
|
55298
55304
|
* `mcon` (`String`): Filter on mcon
|
|
55305
|
+
* `mcons` (`[String]`): Filter on multiple mcons
|
|
55299
55306
|
* `parent_mcon` (`String`): Filter on parent_mcon
|
|
55300
55307
|
* `domain_id` (`UUID`): Filter by domain UUID
|
|
55301
55308
|
* `tags_only` (`Boolean`): Search only tags and descriptions (no
|
|
@@ -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=t3hpM6JRuUIZ2L3jj0OXSAPJCvRqJAXUGjgC9MpPWMU,6155097
|
|
39
|
+
pycarlo/lib/schema.py,sha256=A-umZV4Hj_HOdR6oQiDJzRzXh1YVOHvIERCX_jOs_Aw,2672318
|
|
40
|
+
pycarlo-0.10.131.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.131.dist-info/METADATA,sha256=zC-wo3lw_zFQDYt5YYwv0A6BZj-H80KDAl4OZbO-8Ss,8742
|
|
42
|
+
pycarlo-0.10.131.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.131.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.131.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|