pycarlo 0.10.79__py3-none-any.whl → 0.10.81__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 +19 -15
- pycarlo/lib/schema.py +9 -3
- {pycarlo-0.10.79.dist-info → pycarlo-0.10.81.dist-info}/METADATA +1 -1
- {pycarlo-0.10.79.dist-info → pycarlo-0.10.81.dist-info}/RECORD +7 -7
- {pycarlo-0.10.79.dist-info → pycarlo-0.10.81.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.79.dist-info → pycarlo-0.10.81.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.79.dist-info → pycarlo-0.10.81.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -31511,13 +31511,9 @@
|
|
|
31511
31511
|
"description": null,
|
|
31512
31512
|
"name": "alias",
|
|
31513
31513
|
"type": {
|
|
31514
|
-
"kind": "
|
|
31515
|
-
"name":
|
|
31516
|
-
"ofType":
|
|
31517
|
-
"kind": "SCALAR",
|
|
31518
|
-
"name": "String",
|
|
31519
|
-
"ofType": null
|
|
31520
|
-
}
|
|
31514
|
+
"kind": "SCALAR",
|
|
31515
|
+
"name": "String",
|
|
31516
|
+
"ofType": null
|
|
31521
31517
|
}
|
|
31522
31518
|
},
|
|
31523
31519
|
{
|
|
@@ -46804,7 +46800,7 @@
|
|
|
46804
46800
|
{
|
|
46805
46801
|
"args": [],
|
|
46806
46802
|
"deprecationReason": null,
|
|
46807
|
-
"description": "The number of
|
|
46803
|
+
"description": "The number of user created monitors on this warehouse.",
|
|
46808
46804
|
"isDeprecated": false,
|
|
46809
46805
|
"name": "customMonitorCount",
|
|
46810
46806
|
"type": {
|
|
@@ -46813,6 +46809,18 @@
|
|
|
46813
46809
|
"ofType": null
|
|
46814
46810
|
}
|
|
46815
46811
|
},
|
|
46812
|
+
{
|
|
46813
|
+
"args": [],
|
|
46814
|
+
"deprecationReason": null,
|
|
46815
|
+
"description": "The number of table monitors and user created monitors on this warehouse.",
|
|
46816
|
+
"isDeprecated": false,
|
|
46817
|
+
"name": "totalMonitorCount",
|
|
46818
|
+
"type": {
|
|
46819
|
+
"kind": "SCALAR",
|
|
46820
|
+
"name": "Int",
|
|
46821
|
+
"ofType": null
|
|
46822
|
+
}
|
|
46823
|
+
},
|
|
46816
46824
|
{
|
|
46817
46825
|
"args": [],
|
|
46818
46826
|
"deprecationReason": null,
|
|
@@ -82242,13 +82250,9 @@
|
|
|
82242
82250
|
"isDeprecated": false,
|
|
82243
82251
|
"name": "alias",
|
|
82244
82252
|
"type": {
|
|
82245
|
-
"kind": "
|
|
82246
|
-
"name":
|
|
82247
|
-
"ofType":
|
|
82248
|
-
"kind": "SCALAR",
|
|
82249
|
-
"name": "String",
|
|
82250
|
-
"ofType": null
|
|
82251
|
-
}
|
|
82253
|
+
"kind": "SCALAR",
|
|
82254
|
+
"name": "String",
|
|
82255
|
+
"ofType": null
|
|
82252
82256
|
}
|
|
82253
82257
|
},
|
|
82254
82258
|
{
|
pycarlo/lib/schema.py
CHANGED
|
@@ -9753,7 +9753,7 @@ class TransformInput(sgqlc.types.Input):
|
|
|
9753
9753
|
"field",
|
|
9754
9754
|
"id",
|
|
9755
9755
|
)
|
|
9756
|
-
alias = sgqlc.types.Field(
|
|
9756
|
+
alias = sgqlc.types.Field(String, graphql_name="alias")
|
|
9757
9757
|
|
|
9758
9758
|
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
9759
9759
|
|
|
@@ -63253,7 +63253,7 @@ class Transform(sgqlc.types.Type):
|
|
|
63253
63253
|
"field",
|
|
63254
63254
|
"id",
|
|
63255
63255
|
)
|
|
63256
|
-
alias = sgqlc.types.Field(
|
|
63256
|
+
alias = sgqlc.types.Field(String, graphql_name="alias")
|
|
63257
63257
|
|
|
63258
63258
|
prompt = sgqlc.types.Field(String, graphql_name="prompt")
|
|
63259
63259
|
|
|
@@ -64897,6 +64897,7 @@ class Warehouse(sgqlc.types.Type):
|
|
|
64897
64897
|
"metadata_connection",
|
|
64898
64898
|
"create_alerts_in_datasource",
|
|
64899
64899
|
"custom_monitor_count",
|
|
64900
|
+
"total_monitor_count",
|
|
64900
64901
|
"supports_transform",
|
|
64901
64902
|
"warehouse_relations",
|
|
64902
64903
|
)
|
|
@@ -65211,7 +65212,12 @@ class Warehouse(sgqlc.types.Type):
|
|
|
65211
65212
|
"""
|
|
65212
65213
|
|
|
65213
65214
|
custom_monitor_count = sgqlc.types.Field(Int, graphql_name="customMonitorCount")
|
|
65214
|
-
"""The number of
|
|
65215
|
+
"""The number of user created monitors on this warehouse."""
|
|
65216
|
+
|
|
65217
|
+
total_monitor_count = sgqlc.types.Field(Int, graphql_name="totalMonitorCount")
|
|
65218
|
+
"""The number of table monitors and user created monitors on this
|
|
65219
|
+
warehouse.
|
|
65220
|
+
"""
|
|
65215
65221
|
|
|
65216
65222
|
supports_transform = sgqlc.types.Field(Boolean, graphql_name="supportsTransform")
|
|
65217
65223
|
"""Indicates whether the warehouse supports transform operations"""
|
|
@@ -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=3t9hdP4k7Uu2GAftWuD3WTWMfI9W6Lep7UN8VOLNyFo,6013966
|
|
39
|
+
pycarlo/lib/schema.py,sha256=7lSdds6GOc2mbzVz91C4n2gZYcAuCF_kbI5kSnAnRkw,2596963
|
|
40
|
+
pycarlo-0.10.81.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.81.dist-info/METADATA,sha256=i5uRSFqzqvRKZHFi5ccHb9Bj5wqNeOycYncrPYwP3OA,8741
|
|
42
|
+
pycarlo-0.10.81.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.81.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.81.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|