pycarlo 0.10.158__py3-none-any.whl → 0.10.159__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 +65 -0
- pycarlo/lib/schema.py +48 -0
- {pycarlo-0.10.158.dist-info → pycarlo-0.10.159.dist-info}/METADATA +1 -1
- {pycarlo-0.10.158.dist-info → pycarlo-0.10.159.dist-info}/RECORD +7 -7
- {pycarlo-0.10.158.dist-info → pycarlo-0.10.159.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.158.dist-info → pycarlo-0.10.159.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.158.dist-info → pycarlo-0.10.159.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -17851,6 +17851,71 @@
|
|
|
17851
17851
|
}
|
|
17852
17852
|
}
|
|
17853
17853
|
},
|
|
17854
|
+
{
|
|
17855
|
+
"args": [
|
|
17856
|
+
{
|
|
17857
|
+
"defaultValue": null,
|
|
17858
|
+
"description": "The UUID identifying the data collector.",
|
|
17859
|
+
"name": "dcId",
|
|
17860
|
+
"type": {
|
|
17861
|
+
"kind": "NON_NULL",
|
|
17862
|
+
"name": null,
|
|
17863
|
+
"ofType": {
|
|
17864
|
+
"kind": "SCALAR",
|
|
17865
|
+
"name": "UUID",
|
|
17866
|
+
"ofType": null
|
|
17867
|
+
}
|
|
17868
|
+
}
|
|
17869
|
+
},
|
|
17870
|
+
{
|
|
17871
|
+
"defaultValue": null,
|
|
17872
|
+
"description": "The type of job (e.g., METADATA, QUERY_LOGS, BI_REPORTS).",
|
|
17873
|
+
"name": "jobType",
|
|
17874
|
+
"type": {
|
|
17875
|
+
"kind": "NON_NULL",
|
|
17876
|
+
"name": null,
|
|
17877
|
+
"ofType": {
|
|
17878
|
+
"kind": "ENUM",
|
|
17879
|
+
"name": "InternalJobType",
|
|
17880
|
+
"ofType": null
|
|
17881
|
+
}
|
|
17882
|
+
}
|
|
17883
|
+
},
|
|
17884
|
+
{
|
|
17885
|
+
"defaultValue": null,
|
|
17886
|
+
"description": "Connection type (e.g., snowflake, tableau).",
|
|
17887
|
+
"name": "connectionType",
|
|
17888
|
+
"type": {
|
|
17889
|
+
"kind": "NON_NULL",
|
|
17890
|
+
"name": null,
|
|
17891
|
+
"ofType": {
|
|
17892
|
+
"kind": "ENUM",
|
|
17893
|
+
"name": "ConnectionTypeEnum",
|
|
17894
|
+
"ofType": null
|
|
17895
|
+
}
|
|
17896
|
+
}
|
|
17897
|
+
},
|
|
17898
|
+
{
|
|
17899
|
+
"defaultValue": null,
|
|
17900
|
+
"description": "Optional, for transactional DB subtype (e.g., sap-hana). When provided, it will be used instead of connection_type.",
|
|
17901
|
+
"name": "connectionSubtype",
|
|
17902
|
+
"type": {
|
|
17903
|
+
"kind": "ENUM",
|
|
17904
|
+
"name": "ConnectionSubtypeEnum",
|
|
17905
|
+
"ofType": null
|
|
17906
|
+
}
|
|
17907
|
+
}
|
|
17908
|
+
],
|
|
17909
|
+
"deprecationReason": null,
|
|
17910
|
+
"description": "(experimental) Get default job limits for a specific job type and connection type.",
|
|
17911
|
+
"isDeprecated": false,
|
|
17912
|
+
"name": "getCollectorJobLimits",
|
|
17913
|
+
"type": {
|
|
17914
|
+
"kind": "SCALAR",
|
|
17915
|
+
"name": "JSONString",
|
|
17916
|
+
"ofType": null
|
|
17917
|
+
}
|
|
17918
|
+
},
|
|
17854
17919
|
{
|
|
17855
17920
|
"args": [
|
|
17856
17921
|
{
|
pycarlo/lib/schema.py
CHANGED
|
@@ -43756,6 +43756,7 @@ class Query(sgqlc.types.Type):
|
|
|
43756
43756
|
"evaluate_comparisons",
|
|
43757
43757
|
"get_delta_logs",
|
|
43758
43758
|
"get_job_schedules",
|
|
43759
|
+
"get_collector_job_limits",
|
|
43759
43760
|
"get_data_assets_dashboard",
|
|
43760
43761
|
"get_incident_dashboard_data",
|
|
43761
43762
|
"get_incident_data_weekly",
|
|
@@ -53903,6 +53904,53 @@ class Query(sgqlc.types.Type):
|
|
|
53903
53904
|
(default: `false`)
|
|
53904
53905
|
"""
|
|
53905
53906
|
|
|
53907
|
+
get_collector_job_limits = sgqlc.types.Field(
|
|
53908
|
+
JSONString,
|
|
53909
|
+
graphql_name="getCollectorJobLimits",
|
|
53910
|
+
args=sgqlc.types.ArgDict(
|
|
53911
|
+
(
|
|
53912
|
+
(
|
|
53913
|
+
"dc_id",
|
|
53914
|
+
sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dcId", default=None),
|
|
53915
|
+
),
|
|
53916
|
+
(
|
|
53917
|
+
"job_type",
|
|
53918
|
+
sgqlc.types.Arg(
|
|
53919
|
+
sgqlc.types.non_null(InternalJobType), graphql_name="jobType", default=None
|
|
53920
|
+
),
|
|
53921
|
+
),
|
|
53922
|
+
(
|
|
53923
|
+
"connection_type",
|
|
53924
|
+
sgqlc.types.Arg(
|
|
53925
|
+
sgqlc.types.non_null(ConnectionTypeEnum),
|
|
53926
|
+
graphql_name="connectionType",
|
|
53927
|
+
default=None,
|
|
53928
|
+
),
|
|
53929
|
+
),
|
|
53930
|
+
(
|
|
53931
|
+
"connection_subtype",
|
|
53932
|
+
sgqlc.types.Arg(
|
|
53933
|
+
ConnectionSubtypeEnum, graphql_name="connectionSubtype", default=None
|
|
53934
|
+
),
|
|
53935
|
+
),
|
|
53936
|
+
)
|
|
53937
|
+
),
|
|
53938
|
+
)
|
|
53939
|
+
"""(experimental) Get default job limits for a specific job type and
|
|
53940
|
+
connection type.
|
|
53941
|
+
|
|
53942
|
+
Arguments:
|
|
53943
|
+
|
|
53944
|
+
* `dc_id` (`UUID!`): The UUID identifying the data collector.
|
|
53945
|
+
* `job_type` (`InternalJobType!`): The type of job (e.g.,
|
|
53946
|
+
METADATA, QUERY_LOGS, BI_REPORTS).
|
|
53947
|
+
* `connection_type` (`ConnectionTypeEnum!`): Connection type
|
|
53948
|
+
(e.g., snowflake, tableau).
|
|
53949
|
+
* `connection_subtype` (`ConnectionSubtypeEnum`): Optional, for
|
|
53950
|
+
transactional DB subtype (e.g., sap-hana). When provided, it
|
|
53951
|
+
will be used instead of connection_type.
|
|
53952
|
+
"""
|
|
53953
|
+
|
|
53906
53954
|
get_data_assets_dashboard = sgqlc.types.Field(
|
|
53907
53955
|
DataAssetDashboard,
|
|
53908
53956
|
graphql_name="getDataAssetsDashboard",
|
|
@@ -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=ScJ1AwUURrBC-cypHD9v5mcy0UBKix6i448uKT_Is-Q,6221443
|
|
39
|
+
pycarlo/lib/schema.py,sha256=D3ZTPkGZti15pTvLP9R49z2GEhTLSdBLNqZ_lBKzrVU,2700902
|
|
40
|
+
pycarlo-0.10.159.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.159.dist-info/METADATA,sha256=ilgY5xF6dz3Su2yEuXa-3w8-golqk58KrEP0ZYjoa7U,8742
|
|
42
|
+
pycarlo-0.10.159.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.159.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.159.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|