pycarlo 0.10.187__py3-none-any.whl → 0.10.189__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 +42 -0
- pycarlo/lib/schema.py +23 -0
- {pycarlo-0.10.187.dist-info → pycarlo-0.10.189.dist-info}/METADATA +1 -1
- {pycarlo-0.10.187.dist-info → pycarlo-0.10.189.dist-info}/RECORD +7 -7
- {pycarlo-0.10.187.dist-info → pycarlo-0.10.189.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.187.dist-info → pycarlo-0.10.189.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.187.dist-info → pycarlo-0.10.189.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.json
CHANGED
|
@@ -10636,6 +10636,16 @@
|
|
|
10636
10636
|
}
|
|
10637
10637
|
}
|
|
10638
10638
|
},
|
|
10639
|
+
{
|
|
10640
|
+
"defaultValue": null,
|
|
10641
|
+
"description": "Only return windows for a specific time series UUID",
|
|
10642
|
+
"name": "timeSeriesUuid",
|
|
10643
|
+
"type": {
|
|
10644
|
+
"kind": "SCALAR",
|
|
10645
|
+
"name": "UUID",
|
|
10646
|
+
"ofType": null
|
|
10647
|
+
}
|
|
10648
|
+
},
|
|
10639
10649
|
{
|
|
10640
10650
|
"defaultValue": null,
|
|
10641
10651
|
"description": "Start time of maintenance period",
|
|
@@ -11378,6 +11388,16 @@
|
|
|
11378
11388
|
"ofType": null
|
|
11379
11389
|
}
|
|
11380
11390
|
},
|
|
11391
|
+
{
|
|
11392
|
+
"defaultValue": null,
|
|
11393
|
+
"description": "UUID of consolidating job to filter by",
|
|
11394
|
+
"name": "consolidatingJobUuid",
|
|
11395
|
+
"type": {
|
|
11396
|
+
"kind": "SCALAR",
|
|
11397
|
+
"name": "String",
|
|
11398
|
+
"ofType": null
|
|
11399
|
+
}
|
|
11400
|
+
},
|
|
11381
11401
|
{
|
|
11382
11402
|
"defaultValue": null,
|
|
11383
11403
|
"description": null,
|
|
@@ -105785,6 +105805,18 @@
|
|
|
105785
105805
|
"name": "Float",
|
|
105786
105806
|
"ofType": null
|
|
105787
105807
|
}
|
|
105808
|
+
},
|
|
105809
|
+
{
|
|
105810
|
+
"args": [],
|
|
105811
|
+
"deprecationReason": null,
|
|
105812
|
+
"description": "UUID of the consolidating job execution",
|
|
105813
|
+
"isDeprecated": false,
|
|
105814
|
+
"name": "consolidatingJobUuid",
|
|
105815
|
+
"type": {
|
|
105816
|
+
"kind": "SCALAR",
|
|
105817
|
+
"name": "String",
|
|
105818
|
+
"ofType": null
|
|
105819
|
+
}
|
|
105788
105820
|
}
|
|
105789
105821
|
],
|
|
105790
105822
|
"inputFields": null,
|
|
@@ -161023,6 +161055,16 @@
|
|
|
161023
161055
|
"name": "DateTime",
|
|
161024
161056
|
"ofType": null
|
|
161025
161057
|
}
|
|
161058
|
+
},
|
|
161059
|
+
{
|
|
161060
|
+
"defaultValue": null,
|
|
161061
|
+
"description": "Time series UUID to set maintenance period for. If set, the maintenance windows will only apply to the given time series. Used for Monitor related windows only.",
|
|
161062
|
+
"name": "timeSeriesUuid",
|
|
161063
|
+
"type": {
|
|
161064
|
+
"kind": "SCALAR",
|
|
161065
|
+
"name": "UUID",
|
|
161066
|
+
"ofType": null
|
|
161067
|
+
}
|
|
161026
161068
|
}
|
|
161027
161069
|
],
|
|
161028
161070
|
"deprecationReason": null,
|
pycarlo/lib/schema.py
CHANGED
|
@@ -23031,6 +23031,7 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23031
23031
|
"total_invocations_count",
|
|
23032
23032
|
"total_result_count",
|
|
23033
23033
|
"total_execution_duration",
|
|
23034
|
+
"consolidating_job_uuid",
|
|
23034
23035
|
)
|
|
23035
23036
|
job_execution_uuid = sgqlc.types.Field(
|
|
23036
23037
|
sgqlc.types.non_null(String), graphql_name="jobExecutionUuid"
|
|
@@ -23081,6 +23082,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23081
23082
|
not completed.
|
|
23082
23083
|
"""
|
|
23083
23084
|
|
|
23085
|
+
consolidating_job_uuid = sgqlc.types.Field(String, graphql_name="consolidatingJobUuid")
|
|
23086
|
+
"""UUID of the consolidating job execution"""
|
|
23087
|
+
|
|
23084
23088
|
|
|
23085
23089
|
class JobExecutionHistoryLogConnection(sgqlc.types.relay.Connection):
|
|
23086
23090
|
"""Job history log entries"""
|
|
@@ -33604,6 +33608,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
33604
33608
|
),
|
|
33605
33609
|
),
|
|
33606
33610
|
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
33611
|
+
(
|
|
33612
|
+
"time_series_uuid",
|
|
33613
|
+
sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
|
|
33614
|
+
),
|
|
33607
33615
|
)
|
|
33608
33616
|
),
|
|
33609
33617
|
)
|
|
@@ -33637,6 +33645,9 @@ class Mutation(sgqlc.types.Type):
|
|
|
33637
33645
|
maintenance window
|
|
33638
33646
|
* `start_time` (`DateTime`): Start period of data maintenance. If
|
|
33639
33647
|
not set, all previous data will be ignored.
|
|
33648
|
+
* `time_series_uuid` (`UUID`): Time series UUID to set maintenance
|
|
33649
|
+
period for. If set, the maintenance windows will only apply to
|
|
33650
|
+
the given time series. Used for Monitor related windows only.
|
|
33640
33651
|
"""
|
|
33641
33652
|
|
|
33642
33653
|
create_data_maintenance_window_from_holidays = sgqlc.types.Field(
|
|
@@ -50897,6 +50908,10 @@ class Query(sgqlc.types.Type):
|
|
|
50897
50908
|
sgqlc.types.non_null(UUID), graphql_name="monitorId", default=None
|
|
50898
50909
|
),
|
|
50899
50910
|
),
|
|
50911
|
+
(
|
|
50912
|
+
"time_series_uuid",
|
|
50913
|
+
sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
|
|
50914
|
+
),
|
|
50900
50915
|
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
50901
50916
|
("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
|
|
50902
50917
|
)
|
|
@@ -50907,6 +50922,8 @@ class Query(sgqlc.types.Type):
|
|
|
50907
50922
|
Arguments:
|
|
50908
50923
|
|
|
50909
50924
|
* `monitor_id` (`UUID!`): Monitor UUID
|
|
50925
|
+
* `time_series_uuid` (`UUID`): Only return windows for a specific
|
|
50926
|
+
time series UUID
|
|
50910
50927
|
* `start_time` (`DateTime`): Start time of maintenance period
|
|
50911
50928
|
* `end_time` (`DateTime`): End time of maintenance period
|
|
50912
50929
|
"""
|
|
@@ -51295,6 +51312,10 @@ class Query(sgqlc.types.Type):
|
|
|
51295
51312
|
"include_bi_connections",
|
|
51296
51313
|
sgqlc.types.Arg(Boolean, graphql_name="includeBiConnections", default=False),
|
|
51297
51314
|
),
|
|
51315
|
+
(
|
|
51316
|
+
"consolidating_job_uuid",
|
|
51317
|
+
sgqlc.types.Arg(String, graphql_name="consolidatingJobUuid", default=None),
|
|
51318
|
+
),
|
|
51298
51319
|
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
51299
51320
|
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
51300
51321
|
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
@@ -51319,6 +51340,8 @@ class Query(sgqlc.types.Type):
|
|
|
51319
51340
|
collection only jobs (default: `false`)
|
|
51320
51341
|
* `include_bi_connections` (`Boolean`): Include BI connection
|
|
51321
51342
|
schedules (default: `false`)
|
|
51343
|
+
* `consolidating_job_uuid` (`String`): UUID of consolidating job
|
|
51344
|
+
to filter by
|
|
51322
51345
|
* `before` (`String`)None
|
|
51323
51346
|
* `after` (`String`)None
|
|
51324
51347
|
* `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=7fXhW1GL66ediw0fgPa5-s3zeXuEHvxT6-QyHEzHndc,6332804
|
|
39
|
+
pycarlo/lib/schema.py,sha256=GOYCKVhXrfUZUyv3iEk0wfUD0gL6Iqgx4xyASG6G2Rg,2757835
|
|
40
|
+
pycarlo-0.10.189.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
41
|
+
pycarlo-0.10.189.dist-info/METADATA,sha256=vIT-kt-KcYmEH99vt25VoUm9jzw23lX9HyFoHRKDPoM,8742
|
|
42
|
+
pycarlo-0.10.189.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
43
|
+
pycarlo-0.10.189.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
44
|
+
pycarlo-0.10.189.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|