pycarlo 0.10.218__py3-none-any.whl → 0.10.220__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 CHANGED
@@ -11105,6 +11105,36 @@
11105
11105
  "name": "DateTime",
11106
11106
  "ofType": null
11107
11107
  }
11108
+ },
11109
+ {
11110
+ "defaultValue": null,
11111
+ "description": "Metric to set maintenance period for. Deprecated: Use time_series_uuid instead",
11112
+ "name": "metric",
11113
+ "type": {
11114
+ "kind": "SCALAR",
11115
+ "name": "String",
11116
+ "ofType": null
11117
+ }
11118
+ },
11119
+ {
11120
+ "defaultValue": null,
11121
+ "description": "Field to set maintenance period for. Deprecated: Use time_series_uuid instead",
11122
+ "name": "field",
11123
+ "type": {
11124
+ "kind": "SCALAR",
11125
+ "name": "String",
11126
+ "ofType": null
11127
+ }
11128
+ },
11129
+ {
11130
+ "defaultValue": null,
11131
+ "description": "Where condition to set maintenance period for. Deprecated: Use time_series_uuid instead",
11132
+ "name": "whereCondition",
11133
+ "type": {
11134
+ "kind": "SCALAR",
11135
+ "name": "String",
11136
+ "ofType": null
11137
+ }
11108
11138
  }
11109
11139
  ],
11110
11140
  "deprecationReason": null,
@@ -107666,6 +107696,30 @@
107666
107696
  "ofType": null
107667
107697
  }
107668
107698
  },
107699
+ {
107700
+ "args": [],
107701
+ "deprecationReason": null,
107702
+ "description": "True if this table monitor execution failure was treated as a warning and no failure notification was sent.",
107703
+ "isDeprecated": false,
107704
+ "name": "tableMonitorWarning",
107705
+ "type": {
107706
+ "kind": "SCALAR",
107707
+ "name": "Boolean",
107708
+ "ofType": null
107709
+ }
107710
+ },
107711
+ {
107712
+ "args": [],
107713
+ "deprecationReason": null,
107714
+ "description": "MCON of the table for size collection executions in table monitors",
107715
+ "isDeprecated": false,
107716
+ "name": "sizeCollectionTableMcon",
107717
+ "type": {
107718
+ "kind": "SCALAR",
107719
+ "name": "String",
107720
+ "ofType": null
107721
+ }
107722
+ },
107669
107723
  {
107670
107724
  "args": [],
107671
107725
  "deprecationReason": null,
@@ -163459,6 +163513,16 @@
163459
163513
  "ofType": null
163460
163514
  }
163461
163515
  },
163516
+ {
163517
+ "defaultValue": null,
163518
+ "description": "Field to set maintenance period for. If set, the maintenance windows will only apply to the given field. Used for Monitor related windows only. Deprecated: Use time_series_uuid instead",
163519
+ "name": "field",
163520
+ "type": {
163521
+ "kind": "SCALAR",
163522
+ "name": "String",
163523
+ "ofType": null
163524
+ }
163525
+ },
163462
163526
  {
163463
163527
  "defaultValue": null,
163464
163528
  "description": "ID of existing data maintenance entry for updating",
@@ -163489,6 +163553,16 @@
163489
163553
  "ofType": null
163490
163554
  }
163491
163555
  },
163556
+ {
163557
+ "defaultValue": null,
163558
+ "description": "Metric to set maintenance period for. If set, the maintenance windows will only apply to the given metric. Used for Monitor related windows only. Deprecated: Use time_series_uuid instead",
163559
+ "name": "metric",
163560
+ "type": {
163561
+ "kind": "SCALAR",
163562
+ "name": "String",
163563
+ "ofType": null
163564
+ }
163565
+ },
163492
163566
  {
163493
163567
  "defaultValue": null,
163494
163568
  "description": "Monitor ID to set maintenance period for. If set, the maintenance windows will only apply to the given monitor.",
@@ -163548,6 +163622,16 @@
163548
163622
  "name": "UUID",
163549
163623
  "ofType": null
163550
163624
  }
163625
+ },
163626
+ {
163627
+ "defaultValue": null,
163628
+ "description": "Where condition to set maintenance period for. If set, the maintenance windows will only apply to the given where condition. Used for Monitor related windows only. Deprecated: Use time_series_uuid instead",
163629
+ "name": "whereCondition",
163630
+ "type": {
163631
+ "kind": "SCALAR",
163632
+ "name": "String",
163633
+ "ofType": null
163634
+ }
163551
163635
  }
163552
163636
  ],
163553
163637
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -23300,6 +23300,8 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23300
23300
  "exceptions_detail",
23301
23301
  "runtime_variables",
23302
23302
  "comparison_data_source_type",
23303
+ "table_monitor_warning",
23304
+ "size_collection_table_mcon",
23303
23305
  "total_invocations_count",
23304
23306
  "total_result_count",
23305
23307
  "total_execution_duration",
@@ -23339,6 +23341,14 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23339
23341
  )
23340
23342
  """Comparison Source type in the job execution"""
23341
23343
 
23344
+ table_monitor_warning = sgqlc.types.Field(Boolean, graphql_name="tableMonitorWarning")
23345
+ """True if this table monitor execution failure was treated as a
23346
+ warning and no failure notification was sent.
23347
+ """
23348
+
23349
+ size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
23350
+ """MCON of the table for size collection executions in table monitors"""
23351
+
23342
23352
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23343
23353
  """Total number of invocations for the job execution. May be null if
23344
23354
  execution has not completed.
@@ -33917,6 +33927,7 @@ class Mutation(sgqlc.types.Type):
33917
33927
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33918
33928
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33919
33929
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
33930
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33920
33931
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33921
33932
  (
33922
33933
  "maintenance_type",
@@ -33925,6 +33936,7 @@ class Mutation(sgqlc.types.Type):
33925
33936
  ),
33926
33937
  ),
33927
33938
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
33939
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33928
33940
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33929
33941
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33930
33942
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33939,6 +33951,10 @@ class Mutation(sgqlc.types.Type):
33939
33951
  "time_series_uuid",
33940
33952
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33941
33953
  ),
33954
+ (
33955
+ "where_condition",
33956
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
33957
+ ),
33942
33958
  )
33943
33959
  ),
33944
33960
  )
@@ -33953,6 +33969,10 @@ class Mutation(sgqlc.types.Type):
33953
33969
  given
33954
33970
  * `end_time` (`DateTime`): Start period of data maintenance. If
33955
33971
  not set, all future data will be ignored until updated
33972
+ * `field` (`String`): Field to set maintenance period for. If set,
33973
+ the maintenance windows will only apply to the given field. Used
33974
+ for Monitor related windows only. Deprecated: Use
33975
+ time_series_uuid instead
33956
33976
  * `id` (`Int`): ID of existing data maintenance entry for updating
33957
33977
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33958
33978
  metrics for the object will be ignored
@@ -33961,6 +33981,10 @@ class Mutation(sgqlc.types.Type):
33961
33981
  'project', 'dataset' or any table type. Setting any type other
33962
33982
  than a table type will set the maintenance window for all
33963
33983
  matching tables.
33984
+ * `metric` (`String`): Metric to set maintenance period for. If
33985
+ set, the maintenance windows will only apply to the given
33986
+ metric. Used for Monitor related windows only. Deprecated: Use
33987
+ time_series_uuid instead
33964
33988
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33965
33989
  If set, the maintenance windows will only apply to the given
33966
33990
  monitor.
@@ -33975,6 +33999,10 @@ class Mutation(sgqlc.types.Type):
33975
33999
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33976
34000
  period for. If set, the maintenance windows will only apply to
33977
34001
  the given time series. Used for Monitor related windows only.
34002
+ * `where_condition` (`String`): Where condition to set maintenance
34003
+ period for. If set, the maintenance windows will only apply to
34004
+ the given where condition. Used for Monitor related windows
34005
+ only. Deprecated: Use time_series_uuid instead
33978
34006
  """
33979
34007
 
33980
34008
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -51467,6 +51495,12 @@ class Query(sgqlc.types.Type):
51467
51495
  ),
51468
51496
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
51469
51497
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
51498
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
51499
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
51500
+ (
51501
+ "where_condition",
51502
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
51503
+ ),
51470
51504
  )
51471
51505
  ),
51472
51506
  )
@@ -51479,6 +51513,12 @@ class Query(sgqlc.types.Type):
51479
51513
  time series UUID
51480
51514
  * `start_time` (`DateTime`): Start time of maintenance period
51481
51515
  * `end_time` (`DateTime`): End time of maintenance period
51516
+ * `metric` (`String`): Metric to set maintenance period for.
51517
+ Deprecated: Use time_series_uuid instead
51518
+ * `field` (`String`): Field to set maintenance period for.
51519
+ Deprecated: Use time_series_uuid instead
51520
+ * `where_condition` (`String`): Where condition to set maintenance
51521
+ period for. Deprecated: Use time_series_uuid instead
51482
51522
  """
51483
51523
 
51484
51524
  get_data_maintenance_entries_by_mcon = sgqlc.types.Field(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.218
3
+ Version: 0.10.220
4
4
  Summary: Monte Carlo's Python SDK
5
5
  Home-page: https://www.montecarlodata.com/
6
6
  Author: Monte Carlo Data, Inc
@@ -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=6M2YVJpAFDjCF5FAFUdbAs27RHL_gHj13ilpWL6T4zc,6407457
39
- pycarlo/lib/schema.py,sha256=GAGWSSW3KItBiygw34bInn7qbSHKPz0CNke7B8n7MNY,2786283
40
- pycarlo-0.10.218.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.218.dist-info/METADATA,sha256=KlUmmSfWgwDFdIXZ5a1DT_PW_usuD5PW0p0533SBvl0,8742
42
- pycarlo-0.10.218.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.218.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.218.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=zXn7YcKyc4TLqhDHEAjYGZcKMSdPZ8ZL57wKiwPADKk,6411019
39
+ pycarlo/lib/schema.py,sha256=u6h7WENYE-cd2r0uKK3Cc5cPCEDdPbBNEejCcS82QgU,2788510
40
+ pycarlo-0.10.220.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.220.dist-info/METADATA,sha256=zrIx_pNQHXO5zuQ5hNVROQxISLCGJqhuCg8JwhA0iok,8742
42
+ pycarlo-0.10.220.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.220.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.220.dist-info/RECORD,,