pycarlo 0.10.186__py3-none-any.whl → 0.10.188__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 -6
- pycarlo/lib/schema.py +10 -2
- {pycarlo-0.10.186.dist-info → pycarlo-0.10.188.dist-info}/METADATA +1 -1
- {pycarlo-0.10.186.dist-info → pycarlo-0.10.188.dist-info}/RECORD +7 -7
- {pycarlo-0.10.186.dist-info → pycarlo-0.10.188.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.186.dist-info → pycarlo-0.10.188.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.186.dist-info → pycarlo-0.10.188.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -11378,6 +11378,16 @@
|
|
|
11378
11378
|
"ofType": null
|
|
11379
11379
|
}
|
|
11380
11380
|
},
|
|
11381
|
+
{
|
|
11382
|
+
"defaultValue": null,
|
|
11383
|
+
"description": "UUID of consolidating job to filter by",
|
|
11384
|
+
"name": "consolidatingJobUuid",
|
|
11385
|
+
"type": {
|
|
11386
|
+
"kind": "SCALAR",
|
|
11387
|
+
"name": "String",
|
|
11388
|
+
"ofType": null
|
|
11389
|
+
}
|
|
11390
|
+
},
|
|
11381
11391
|
{
|
|
11382
11392
|
"defaultValue": null,
|
|
11383
11393
|
"description": null,
|
|
@@ -105785,6 +105795,18 @@
|
|
|
105785
105795
|
"name": "Float",
|
|
105786
105796
|
"ofType": null
|
|
105787
105797
|
}
|
|
105798
|
+
},
|
|
105799
|
+
{
|
|
105800
|
+
"args": [],
|
|
105801
|
+
"deprecationReason": null,
|
|
105802
|
+
"description": "UUID of the consolidating job execution",
|
|
105803
|
+
"isDeprecated": false,
|
|
105804
|
+
"name": "consolidatingJobUuid",
|
|
105805
|
+
"type": {
|
|
105806
|
+
"kind": "SCALAR",
|
|
105807
|
+
"name": "String",
|
|
105808
|
+
"ofType": null
|
|
105809
|
+
}
|
|
105788
105810
|
}
|
|
105789
105811
|
],
|
|
105790
105812
|
"inputFields": null,
|
|
@@ -126067,12 +126089,6 @@
|
|
|
126067
126089
|
"isDeprecated": false,
|
|
126068
126090
|
"name": "S3_QL_EVENTS"
|
|
126069
126091
|
},
|
|
126070
|
-
{
|
|
126071
|
-
"deprecationReason": null,
|
|
126072
|
-
"description": null,
|
|
126073
|
-
"isDeprecated": false,
|
|
126074
|
-
"name": "SLO"
|
|
126075
|
-
},
|
|
126076
126092
|
{
|
|
126077
126093
|
"deprecationReason": null,
|
|
126078
126094
|
"description": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -3178,7 +3178,6 @@ class InternalJobType(sgqlc.types.Enum):
|
|
|
3178
3178
|
* `REPORTS`None
|
|
3179
3179
|
* `S3_METADATA_EVENTS`None
|
|
3180
3180
|
* `S3_QL_EVENTS`None
|
|
3181
|
-
* `SLO`None
|
|
3182
3181
|
* `SQL_QUERY`None
|
|
3183
3182
|
* `STREAM_METADATA`None
|
|
3184
3183
|
* `TABLEAU_GQL`None
|
|
@@ -3196,7 +3195,6 @@ class InternalJobType(sgqlc.types.Enum):
|
|
|
3196
3195
|
"REPORTS",
|
|
3197
3196
|
"S3_METADATA_EVENTS",
|
|
3198
3197
|
"S3_QL_EVENTS",
|
|
3199
|
-
"SLO",
|
|
3200
3198
|
"SQL_QUERY",
|
|
3201
3199
|
"STREAM_METADATA",
|
|
3202
3200
|
"TABLEAU_GQL",
|
|
@@ -23033,6 +23031,7 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23033
23031
|
"total_invocations_count",
|
|
23034
23032
|
"total_result_count",
|
|
23035
23033
|
"total_execution_duration",
|
|
23034
|
+
"consolidating_job_uuid",
|
|
23036
23035
|
)
|
|
23037
23036
|
job_execution_uuid = sgqlc.types.Field(
|
|
23038
23037
|
sgqlc.types.non_null(String), graphql_name="jobExecutionUuid"
|
|
@@ -23083,6 +23082,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23083
23082
|
not completed.
|
|
23084
23083
|
"""
|
|
23085
23084
|
|
|
23085
|
+
consolidating_job_uuid = sgqlc.types.Field(String, graphql_name="consolidatingJobUuid")
|
|
23086
|
+
"""UUID of the consolidating job execution"""
|
|
23087
|
+
|
|
23086
23088
|
|
|
23087
23089
|
class JobExecutionHistoryLogConnection(sgqlc.types.relay.Connection):
|
|
23088
23090
|
"""Job history log entries"""
|
|
@@ -51297,6 +51299,10 @@ class Query(sgqlc.types.Type):
|
|
|
51297
51299
|
"include_bi_connections",
|
|
51298
51300
|
sgqlc.types.Arg(Boolean, graphql_name="includeBiConnections", default=False),
|
|
51299
51301
|
),
|
|
51302
|
+
(
|
|
51303
|
+
"consolidating_job_uuid",
|
|
51304
|
+
sgqlc.types.Arg(String, graphql_name="consolidatingJobUuid", default=None),
|
|
51305
|
+
),
|
|
51300
51306
|
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
51301
51307
|
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
51302
51308
|
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
@@ -51321,6 +51327,8 @@ class Query(sgqlc.types.Type):
|
|
|
51321
51327
|
collection only jobs (default: `false`)
|
|
51322
51328
|
* `include_bi_connections` (`Boolean`): Include BI connection
|
|
51323
51329
|
schedules (default: `false`)
|
|
51330
|
+
* `consolidating_job_uuid` (`String`): UUID of consolidating job
|
|
51331
|
+
to filter by
|
|
51324
51332
|
* `before` (`String`)None
|
|
51325
51333
|
* `after` (`String`)None
|
|
51326
51334
|
* `first` (`Int`)None
|
|
@@ -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=wf9D_vrZkyxGWAXIifZhFdTi6o10MoKQQFtpy5yawEc,6331963
|
|
39
|
+
pycarlo/lib/schema.py,sha256=g5eUMX8uLc2Ngcdnp4nKtSu40ABHWjYdEw5tHU9xteY,2757204
|
|
40
|
+
pycarlo-0.10.188.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.188.dist-info/METADATA,sha256=qv_rwX1G6Cx4XgwCF8W7zWd--HdS6wfy9WcGrvMNerc,8742
|
|
42
|
+
pycarlo-0.10.188.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.188.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.188.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|