pycarlo 0.10.227__py3-none-any.whl → 0.10.229__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 +22 -0
- pycarlo/lib/schema.py +8 -1
- {pycarlo-0.10.227.dist-info → pycarlo-0.10.229.dist-info}/METADATA +1 -1
- {pycarlo-0.10.227.dist-info → pycarlo-0.10.229.dist-info}/RECORD +7 -7
- {pycarlo-0.10.227.dist-info → pycarlo-0.10.229.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.227.dist-info → pycarlo-0.10.229.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.227.dist-info → pycarlo-0.10.229.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -112050,6 +112050,22 @@
|
|
|
112050
112050
|
"ofType": null
|
|
112051
112051
|
}
|
|
112052
112052
|
},
|
|
112053
|
+
{
|
|
112054
|
+
"args": [],
|
|
112055
|
+
"deprecationReason": null,
|
|
112056
|
+
"description": "True if size collection is enabled for the asset",
|
|
112057
|
+
"isDeprecated": false,
|
|
112058
|
+
"name": "sizeCollectionEnabled",
|
|
112059
|
+
"type": {
|
|
112060
|
+
"kind": "NON_NULL",
|
|
112061
|
+
"name": null,
|
|
112062
|
+
"ofType": {
|
|
112063
|
+
"kind": "SCALAR",
|
|
112064
|
+
"name": "Boolean",
|
|
112065
|
+
"ofType": null
|
|
112066
|
+
}
|
|
112067
|
+
}
|
|
112068
|
+
},
|
|
112053
112069
|
{
|
|
112054
112070
|
"args": [],
|
|
112055
112071
|
"deprecationReason": null,
|
|
@@ -137996,6 +138012,12 @@
|
|
|
137996
138012
|
"description": null,
|
|
137997
138013
|
"isDeprecated": false,
|
|
137998
138014
|
"name": "NOTIFIED"
|
|
138015
|
+
},
|
|
138016
|
+
{
|
|
138017
|
+
"deprecationReason": null,
|
|
138018
|
+
"description": null,
|
|
138019
|
+
"isDeprecated": false,
|
|
138020
|
+
"name": "RESOLVED"
|
|
137999
138021
|
}
|
|
138000
138022
|
],
|
|
138001
138023
|
"fields": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -4865,10 +4865,11 @@ class Status(sgqlc.types.Enum):
|
|
|
4865
4865
|
|
|
4866
4866
|
* `NOTIFIED`None
|
|
4867
4867
|
* `PENDING`None
|
|
4868
|
+
* `RESOLVED`None
|
|
4868
4869
|
"""
|
|
4869
4870
|
|
|
4870
4871
|
__schema__ = schema
|
|
4871
|
-
__choices__ = ("NOTIFIED", "PENDING")
|
|
4872
|
+
__choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
|
|
4872
4873
|
|
|
4873
4874
|
|
|
4874
4875
|
class StorageEncryptionType(sgqlc.types.Enum):
|
|
@@ -23446,6 +23447,7 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23446
23447
|
"comparison_data_source_type",
|
|
23447
23448
|
"table_monitor_warning",
|
|
23448
23449
|
"size_collection_table_mcon",
|
|
23450
|
+
"size_collection_enabled",
|
|
23449
23451
|
"total_invocations_count",
|
|
23450
23452
|
"total_result_count",
|
|
23451
23453
|
"total_execution_duration",
|
|
@@ -23493,6 +23495,11 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23493
23495
|
size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
|
|
23494
23496
|
"""MCON of the table for size collection executions in table monitors"""
|
|
23495
23497
|
|
|
23498
|
+
size_collection_enabled = sgqlc.types.Field(
|
|
23499
|
+
sgqlc.types.non_null(Boolean), graphql_name="sizeCollectionEnabled"
|
|
23500
|
+
)
|
|
23501
|
+
"""True if size collection is enabled for the asset"""
|
|
23502
|
+
|
|
23496
23503
|
total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
|
|
23497
23504
|
"""Total number of invocations for the job execution. May be null if
|
|
23498
23505
|
execution has not completed.
|
|
@@ -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=9N0_TuQqpr89iCA55oSYWG4b4TDWERMoWoOpouCdUQQ,6447710
|
|
39
|
+
pycarlo/lib/schema.py,sha256=o2sfJN7aypZ7y1tznio5UJ9vW5bY2lHJgLWoDAnauWo,2802005
|
|
40
|
+
pycarlo-0.10.229.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.229.dist-info/METADATA,sha256=zM1YEvDSoI32ZQGf4SplkxDxf5LomS6YMfXKr-aBOC0,8742
|
|
42
|
+
pycarlo-0.10.229.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.229.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.229.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|