pycarlo 0.10.227__py3-none-any.whl → 0.10.230__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
@@ -61263,7 +61263,7 @@
61263
61263
  "name": "invalidRows",
61264
61264
  "type": {
61265
61265
  "kind": "SCALAR",
61266
- "name": "Int",
61266
+ "name": "String",
61267
61267
  "ofType": null
61268
61268
  }
61269
61269
  },
@@ -112050,6 +112050,22 @@
112050
112050
  "ofType": null
112051
112051
  }
112052
112052
  },
112053
+ {
112054
+ "args": [],
112055
+ "deprecationReason": null,
112056
+ "description": "True if size collection is enabled for the asset",
112057
+ "isDeprecated": false,
112058
+ "name": "sizeCollectionEnabled",
112059
+ "type": {
112060
+ "kind": "NON_NULL",
112061
+ "name": null,
112062
+ "ofType": {
112063
+ "kind": "SCALAR",
112064
+ "name": "Boolean",
112065
+ "ofType": null
112066
+ }
112067
+ }
112068
+ },
112053
112069
  {
112054
112070
  "args": [],
112055
112071
  "deprecationReason": null,
@@ -137996,6 +138012,12 @@
137996
138012
  "description": null,
137997
138013
  "isDeprecated": false,
137998
138014
  "name": "NOTIFIED"
138015
+ },
138016
+ {
138017
+ "deprecationReason": null,
138018
+ "description": null,
138019
+ "isDeprecated": false,
138020
+ "name": "RESOLVED"
137999
138021
  }
138000
138022
  ],
138001
138023
  "fields": null,
pycarlo/lib/schema.py CHANGED
@@ -4865,10 +4865,11 @@ class Status(sgqlc.types.Enum):
4865
4865
 
4866
4866
  * `NOTIFIED`None
4867
4867
  * `PENDING`None
4868
+ * `RESOLVED`None
4868
4869
  """
4869
4870
 
4870
4871
  __schema__ = schema
4871
- __choices__ = ("NOTIFIED", "PENDING")
4872
+ __choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
4872
4873
 
4873
4874
 
4874
4875
  class StorageEncryptionType(sgqlc.types.Enum):
@@ -23446,6 +23447,7 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23446
23447
  "comparison_data_source_type",
23447
23448
  "table_monitor_warning",
23448
23449
  "size_collection_table_mcon",
23450
+ "size_collection_enabled",
23449
23451
  "total_invocations_count",
23450
23452
  "total_result_count",
23451
23453
  "total_execution_duration",
@@ -23493,6 +23495,11 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23493
23495
  size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
23494
23496
  """MCON of the table for size collection executions in table monitors"""
23495
23497
 
23498
+ size_collection_enabled = sgqlc.types.Field(
23499
+ sgqlc.types.non_null(Boolean), graphql_name="sizeCollectionEnabled"
23500
+ )
23501
+ """True if size collection is enabled for the asset"""
23502
+
23496
23503
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23497
23504
  """Total number of invocations for the job execution. May be null if
23498
23505
  execution has not completed.
@@ -71298,7 +71305,7 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
71298
71305
  )
71299
71306
  """Monitor tags associated with the alert"""
71300
71307
 
71301
- invalid_rows = sgqlc.types.Field(Int, graphql_name="invalidRows")
71308
+ invalid_rows = sgqlc.types.Field(String, graphql_name="invalidRows")
71302
71309
  """Number of invalid rows of a breached monitor if available"""
71303
71310
 
71304
71311
  domains = sgqlc.types.Field(sgqlc.types.list_of(DomainRef), graphql_name="domains")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.227
3
+ Version: 0.10.230
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=_Q2Sn_p1UYI8-06Ndq7SaNsb5FsnoYJ-t_w3VAg2LNA,6447016
39
- pycarlo/lib/schema.py,sha256=7iOQrwybcIARW4WZbe3xvlwU7ckudK0OJjYisKaF2AM,2801746
40
- pycarlo-0.10.227.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.227.dist-info/METADATA,sha256=l4K07QpJ0dp-bZER2fEoSGpRQL7XHa47JeIHMG9c37M,8742
42
- pycarlo-0.10.227.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.227.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.227.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=TQpC64vne6ErWMxgbmUAtrKT0a1pqv61UvgAMIlWCD0,6447713
39
+ pycarlo/lib/schema.py,sha256=szw1Wr6tXIO4iKgx-BokXff0P_muPlMiDmtpFwKFr1Y,2802008
40
+ pycarlo-0.10.230.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.230.dist-info/METADATA,sha256=SvgLu7cVg-V2CVG3V0_GCJiwlRoJLYEJxNvsgKY0WKo,8742
42
+ pycarlo-0.10.230.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.230.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.230.dist-info/RECORD,,