pycarlo 0.10.218__py3-none-any.whl → 0.10.219__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,
@@ -163459,6 +163489,16 @@
163459
163489
  "ofType": null
163460
163490
  }
163461
163491
  },
163492
+ {
163493
+ "defaultValue": null,
163494
+ "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",
163495
+ "name": "field",
163496
+ "type": {
163497
+ "kind": "SCALAR",
163498
+ "name": "String",
163499
+ "ofType": null
163500
+ }
163501
+ },
163462
163502
  {
163463
163503
  "defaultValue": null,
163464
163504
  "description": "ID of existing data maintenance entry for updating",
@@ -163489,6 +163529,16 @@
163489
163529
  "ofType": null
163490
163530
  }
163491
163531
  },
163532
+ {
163533
+ "defaultValue": null,
163534
+ "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",
163535
+ "name": "metric",
163536
+ "type": {
163537
+ "kind": "SCALAR",
163538
+ "name": "String",
163539
+ "ofType": null
163540
+ }
163541
+ },
163492
163542
  {
163493
163543
  "defaultValue": null,
163494
163544
  "description": "Monitor ID to set maintenance period for. If set, the maintenance windows will only apply to the given monitor.",
@@ -163548,6 +163598,16 @@
163548
163598
  "name": "UUID",
163549
163599
  "ofType": null
163550
163600
  }
163601
+ },
163602
+ {
163603
+ "defaultValue": null,
163604
+ "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",
163605
+ "name": "whereCondition",
163606
+ "type": {
163607
+ "kind": "SCALAR",
163608
+ "name": "String",
163609
+ "ofType": null
163610
+ }
163551
163611
  }
163552
163612
  ],
163553
163613
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -33917,6 +33917,7 @@ class Mutation(sgqlc.types.Type):
33917
33917
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33918
33918
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33919
33919
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
33920
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33920
33921
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33921
33922
  (
33922
33923
  "maintenance_type",
@@ -33925,6 +33926,7 @@ class Mutation(sgqlc.types.Type):
33925
33926
  ),
33926
33927
  ),
33927
33928
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
33929
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33928
33930
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33929
33931
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33930
33932
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33939,6 +33941,10 @@ class Mutation(sgqlc.types.Type):
33939
33941
  "time_series_uuid",
33940
33942
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33941
33943
  ),
33944
+ (
33945
+ "where_condition",
33946
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
33947
+ ),
33942
33948
  )
33943
33949
  ),
33944
33950
  )
@@ -33953,6 +33959,10 @@ class Mutation(sgqlc.types.Type):
33953
33959
  given
33954
33960
  * `end_time` (`DateTime`): Start period of data maintenance. If
33955
33961
  not set, all future data will be ignored until updated
33962
+ * `field` (`String`): Field to set maintenance period for. If set,
33963
+ the maintenance windows will only apply to the given field. Used
33964
+ for Monitor related windows only. Deprecated: Use
33965
+ time_series_uuid instead
33956
33966
  * `id` (`Int`): ID of existing data maintenance entry for updating
33957
33967
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33958
33968
  metrics for the object will be ignored
@@ -33961,6 +33971,10 @@ class Mutation(sgqlc.types.Type):
33961
33971
  'project', 'dataset' or any table type. Setting any type other
33962
33972
  than a table type will set the maintenance window for all
33963
33973
  matching tables.
33974
+ * `metric` (`String`): Metric to set maintenance period for. If
33975
+ set, the maintenance windows will only apply to the given
33976
+ metric. Used for Monitor related windows only. Deprecated: Use
33977
+ time_series_uuid instead
33964
33978
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33965
33979
  If set, the maintenance windows will only apply to the given
33966
33980
  monitor.
@@ -33975,6 +33989,10 @@ class Mutation(sgqlc.types.Type):
33975
33989
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33976
33990
  period for. If set, the maintenance windows will only apply to
33977
33991
  the given time series. Used for Monitor related windows only.
33992
+ * `where_condition` (`String`): Where condition to set maintenance
33993
+ period for. If set, the maintenance windows will only apply to
33994
+ the given where condition. Used for Monitor related windows
33995
+ only. Deprecated: Use time_series_uuid instead
33978
33996
  """
33979
33997
 
33980
33998
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -51467,6 +51485,12 @@ class Query(sgqlc.types.Type):
51467
51485
  ),
51468
51486
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
51469
51487
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
51488
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
51489
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
51490
+ (
51491
+ "where_condition",
51492
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
51493
+ ),
51470
51494
  )
51471
51495
  ),
51472
51496
  )
@@ -51479,6 +51503,12 @@ class Query(sgqlc.types.Type):
51479
51503
  time series UUID
51480
51504
  * `start_time` (`DateTime`): Start time of maintenance period
51481
51505
  * `end_time` (`DateTime`): End time of maintenance period
51506
+ * `metric` (`String`): Metric to set maintenance period for.
51507
+ Deprecated: Use time_series_uuid instead
51508
+ * `field` (`String`): Field to set maintenance period for.
51509
+ Deprecated: Use time_series_uuid instead
51510
+ * `where_condition` (`String`): Where condition to set maintenance
51511
+ period for. Deprecated: Use time_series_uuid instead
51482
51512
  """
51483
51513
 
51484
51514
  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.219
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=ssXwOd-x4r3Wmmv4MJZzBC5pd7BFUQ7rEfI3SISMLko,6410141
39
+ pycarlo/lib/schema.py,sha256=xb4RSyA0RlGExG3f7_B5kjzcqL5tYyNgVcnx9OqZLaI,2788043
40
+ pycarlo-0.10.219.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.219.dist-info/METADATA,sha256=FQx-W_g0azc6tkjzpxzFF5CnMTJtPI_2JItTtFs3u68,8742
42
+ pycarlo-0.10.219.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.219.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.219.dist-info/RECORD,,