pycarlo 0.10.217__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,
@@ -83380,6 +83410,12 @@
83380
83410
  "description": null,
83381
83411
  "isDeprecated": false,
83382
83412
  "name": "USERS"
83413
+ },
83414
+ {
83415
+ "deprecationReason": null,
83416
+ "description": null,
83417
+ "isDeprecated": false,
83418
+ "name": "AUTH_GROUP_CONNECTION_RESTRICTION"
83383
83419
  }
83384
83420
  ],
83385
83421
  "fields": null,
@@ -163453,6 +163489,16 @@
163453
163489
  "ofType": null
163454
163490
  }
163455
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
+ },
163456
163502
  {
163457
163503
  "defaultValue": null,
163458
163504
  "description": "ID of existing data maintenance entry for updating",
@@ -163483,6 +163529,16 @@
163483
163529
  "ofType": null
163484
163530
  }
163485
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
+ },
163486
163542
  {
163487
163543
  "defaultValue": null,
163488
163544
  "description": "Monitor ID to set maintenance period for. If set, the maintenance windows will only apply to the given monitor.",
@@ -163542,6 +163598,16 @@
163542
163598
  "name": "UUID",
163543
163599
  "ofType": null
163544
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
+ }
163545
163611
  }
163546
163612
  ],
163547
163613
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -1816,6 +1816,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1816
1816
  * `ADVANCED_SECURITY_V1_2`None
1817
1817
  * `API_CALLS`None
1818
1818
  * `AUDIT_LOGGING`None
1819
+ * `AUTH_GROUP_CONNECTION_RESTRICTION`None
1819
1820
  * `DATA_LAKES`None
1820
1821
  * `DATA_MESH`None
1821
1822
  * `EDW`None
@@ -1837,6 +1838,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1837
1838
  "ADVANCED_SECURITY_V1_2",
1838
1839
  "API_CALLS",
1839
1840
  "AUDIT_LOGGING",
1841
+ "AUTH_GROUP_CONNECTION_RESTRICTION",
1840
1842
  "DATA_LAKES",
1841
1843
  "DATA_MESH",
1842
1844
  "EDW",
@@ -33915,6 +33917,7 @@ class Mutation(sgqlc.types.Type):
33915
33917
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33916
33918
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33917
33919
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
33920
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33918
33921
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33919
33922
  (
33920
33923
  "maintenance_type",
@@ -33923,6 +33926,7 @@ class Mutation(sgqlc.types.Type):
33923
33926
  ),
33924
33927
  ),
33925
33928
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
33929
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33926
33930
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33927
33931
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33928
33932
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33937,6 +33941,10 @@ class Mutation(sgqlc.types.Type):
33937
33941
  "time_series_uuid",
33938
33942
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33939
33943
  ),
33944
+ (
33945
+ "where_condition",
33946
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
33947
+ ),
33940
33948
  )
33941
33949
  ),
33942
33950
  )
@@ -33951,6 +33959,10 @@ class Mutation(sgqlc.types.Type):
33951
33959
  given
33952
33960
  * `end_time` (`DateTime`): Start period of data maintenance. If
33953
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
33954
33966
  * `id` (`Int`): ID of existing data maintenance entry for updating
33955
33967
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33956
33968
  metrics for the object will be ignored
@@ -33959,6 +33971,10 @@ class Mutation(sgqlc.types.Type):
33959
33971
  'project', 'dataset' or any table type. Setting any type other
33960
33972
  than a table type will set the maintenance window for all
33961
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
33962
33978
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33963
33979
  If set, the maintenance windows will only apply to the given
33964
33980
  monitor.
@@ -33973,6 +33989,10 @@ class Mutation(sgqlc.types.Type):
33973
33989
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33974
33990
  period for. If set, the maintenance windows will only apply to
33975
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
33976
33996
  """
33977
33997
 
33978
33998
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -51465,6 +51485,12 @@ class Query(sgqlc.types.Type):
51465
51485
  ),
51466
51486
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
51467
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
+ ),
51468
51494
  )
51469
51495
  ),
51470
51496
  )
@@ -51477,6 +51503,12 @@ class Query(sgqlc.types.Type):
51477
51503
  time series UUID
51478
51504
  * `start_time` (`DateTime`): Start time of maintenance period
51479
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
51480
51512
  """
51481
51513
 
51482
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.217
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=t2NXHvyeXpDfb3rgU_2ZPHsAzSnn6TkwHQ_JLRRauOs,6407257
39
- pycarlo/lib/schema.py,sha256=TJFy7bTt59AJsfirry7OHgGmL52X_C3zJwAfz3Mu8hk,2786192
40
- pycarlo-0.10.217.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.217.dist-info/METADATA,sha256=DwdIkL6TZ3YDS1pESafAkEjthW3WZga1BJOFTE_WNXI,8742
42
- pycarlo-0.10.217.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.217.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.217.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,,