pycarlo 0.10.178__py3-none-any.whl → 0.10.179__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 +50 -0
- pycarlo/lib/schema.py +29 -0
- {pycarlo-0.10.178.dist-info → pycarlo-0.10.179.dist-info}/METADATA +1 -1
- {pycarlo-0.10.178.dist-info → pycarlo-0.10.179.dist-info}/RECORD +7 -7
- {pycarlo-0.10.178.dist-info → pycarlo-0.10.179.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.178.dist-info → pycarlo-0.10.179.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.178.dist-info → pycarlo-0.10.179.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -168248,6 +168248,33 @@
|
|
|
168248
168248
|
"ofType": null
|
|
168249
168249
|
}
|
|
168250
168250
|
},
|
|
168251
|
+
{
|
|
168252
|
+
"args": [
|
|
168253
|
+
{
|
|
168254
|
+
"defaultValue": null,
|
|
168255
|
+
"description": null,
|
|
168256
|
+
"name": "maxTimeSeries",
|
|
168257
|
+
"type": {
|
|
168258
|
+
"kind": "NON_NULL",
|
|
168259
|
+
"name": null,
|
|
168260
|
+
"ofType": {
|
|
168261
|
+
"kind": "SCALAR",
|
|
168262
|
+
"name": "Int",
|
|
168263
|
+
"ofType": null
|
|
168264
|
+
}
|
|
168265
|
+
}
|
|
168266
|
+
}
|
|
168267
|
+
],
|
|
168268
|
+
"deprecationReason": null,
|
|
168269
|
+
"description": "(experimental) Set the maximum number of time series for the account.",
|
|
168270
|
+
"isDeprecated": false,
|
|
168271
|
+
"name": "setAccountMaxTimeSeries",
|
|
168272
|
+
"type": {
|
|
168273
|
+
"kind": "OBJECT",
|
|
168274
|
+
"name": "SetMaxTimeSeries",
|
|
168275
|
+
"ofType": null
|
|
168276
|
+
}
|
|
168277
|
+
},
|
|
168251
168278
|
{
|
|
168252
168279
|
"args": [
|
|
168253
168280
|
{
|
|
@@ -189315,6 +189342,29 @@
|
|
|
189315
189342
|
"name": "BillingPlanType",
|
|
189316
189343
|
"possibleTypes": null
|
|
189317
189344
|
},
|
|
189345
|
+
{
|
|
189346
|
+
"description": null,
|
|
189347
|
+
"enumValues": null,
|
|
189348
|
+
"fields": [
|
|
189349
|
+
{
|
|
189350
|
+
"args": [],
|
|
189351
|
+
"deprecationReason": null,
|
|
189352
|
+
"description": null,
|
|
189353
|
+
"isDeprecated": false,
|
|
189354
|
+
"name": "success",
|
|
189355
|
+
"type": {
|
|
189356
|
+
"kind": "SCALAR",
|
|
189357
|
+
"name": "Boolean",
|
|
189358
|
+
"ofType": null
|
|
189359
|
+
}
|
|
189360
|
+
}
|
|
189361
|
+
],
|
|
189362
|
+
"inputFields": null,
|
|
189363
|
+
"interfaces": [],
|
|
189364
|
+
"kind": "OBJECT",
|
|
189365
|
+
"name": "SetMaxTimeSeries",
|
|
189366
|
+
"possibleTypes": null
|
|
189367
|
+
},
|
|
189318
189368
|
{
|
|
189319
189369
|
"description": "Set friendly name for a warehouse.",
|
|
189320
189370
|
"enumValues": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -25570,6 +25570,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
25570
25570
|
"update_account_display_assets_search_tags",
|
|
25571
25571
|
"set_account_name",
|
|
25572
25572
|
"set_account_billing_plan",
|
|
25573
|
+
"set_account_max_time_series",
|
|
25573
25574
|
"set_warehouse_name",
|
|
25574
25575
|
"set_etl_container_name",
|
|
25575
25576
|
"set_connection_name",
|
|
@@ -38188,6 +38189,28 @@ class Mutation(sgqlc.types.Type):
|
|
|
38188
38189
|
that will be used to create an initial customer contract
|
|
38189
38190
|
"""
|
|
38190
38191
|
|
|
38192
|
+
set_account_max_time_series = sgqlc.types.Field(
|
|
38193
|
+
"SetMaxTimeSeries",
|
|
38194
|
+
graphql_name="setAccountMaxTimeSeries",
|
|
38195
|
+
args=sgqlc.types.ArgDict(
|
|
38196
|
+
(
|
|
38197
|
+
(
|
|
38198
|
+
"max_time_series",
|
|
38199
|
+
sgqlc.types.Arg(
|
|
38200
|
+
sgqlc.types.non_null(Int), graphql_name="maxTimeSeries", default=None
|
|
38201
|
+
),
|
|
38202
|
+
),
|
|
38203
|
+
)
|
|
38204
|
+
),
|
|
38205
|
+
)
|
|
38206
|
+
"""(experimental) Set the maximum number of time series for the
|
|
38207
|
+
account.
|
|
38208
|
+
|
|
38209
|
+
Arguments:
|
|
38210
|
+
|
|
38211
|
+
* `max_time_series` (`Int!`)None
|
|
38212
|
+
"""
|
|
38213
|
+
|
|
38191
38214
|
set_warehouse_name = sgqlc.types.Field(
|
|
38192
38215
|
"SetWarehouseName",
|
|
38193
38216
|
graphql_name="setWarehouseName",
|
|
@@ -63188,6 +63211,12 @@ class SetJobGeneratesIncidents(sgqlc.types.Type):
|
|
|
63188
63211
|
dbt_job = sgqlc.types.Field("DbtJob", graphql_name="dbtJob")
|
|
63189
63212
|
|
|
63190
63213
|
|
|
63214
|
+
class SetMaxTimeSeries(sgqlc.types.Type):
|
|
63215
|
+
__schema__ = schema
|
|
63216
|
+
__field_names__ = ("success",)
|
|
63217
|
+
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
63218
|
+
|
|
63219
|
+
|
|
63191
63220
|
class SetPiiFilterStatus(sgqlc.types.Type):
|
|
63192
63221
|
"""Set PII filter status for this account."""
|
|
63193
63222
|
|
|
@@ -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=0rhZO_eyzl7L8c0P1Uz0JLR2HSDkV6XplUfVrPEmswQ,6277372
|
|
39
|
+
pycarlo/lib/schema.py,sha256=NEX-738yIFGg9g87s0Bp3Nld9VAGU3oeDWuw62orFlc,2728867
|
|
40
|
+
pycarlo-0.10.179.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.179.dist-info/METADATA,sha256=ND_qVFEj7X2qfTJPC5Np5BkEDhmRaiLLcTHMxrf3CB0,8742
|
|
42
|
+
pycarlo-0.10.179.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.179.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.179.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|