pycarlo 0.10.226__py3-none-any.whl → 0.10.229__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
@@ -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,
@@ -146186,12 +146208,6 @@
146186
146208
  {
146187
146209
  "description": null,
146188
146210
  "enumValues": [
146189
- {
146190
- "deprecationReason": null,
146191
- "description": null,
146192
- "isDeprecated": false,
146193
- "name": "AI_FEATURES_OFF"
146194
- },
146195
146211
  {
146196
146212
  "deprecationReason": null,
146197
146213
  "description": null,
pycarlo/lib/schema.py CHANGED
@@ -1764,7 +1764,6 @@ class DecryptionServiceUpdateTypeEnum(sgqlc.types.Enum):
1764
1764
  class DenialReason(sgqlc.types.Enum):
1765
1765
  """Enumeration Choices:
1766
1766
 
1767
- * `AI_FEATURES_OFF`None
1768
1767
  * `ENTITLEMENTS`None
1769
1768
  * `INVALID_USER`None
1770
1769
  * `TROUBLESHOOTING_AGENT_OFF`None
@@ -1773,7 +1772,6 @@ class DenialReason(sgqlc.types.Enum):
1773
1772
 
1774
1773
  __schema__ = schema
1775
1774
  __choices__ = (
1776
- "AI_FEATURES_OFF",
1777
1775
  "ENTITLEMENTS",
1778
1776
  "INVALID_USER",
1779
1777
  "TROUBLESHOOTING_AGENT_OFF",
@@ -4867,10 +4865,11 @@ class Status(sgqlc.types.Enum):
4867
4865
 
4868
4866
  * `NOTIFIED`None
4869
4867
  * `PENDING`None
4868
+ * `RESOLVED`None
4870
4869
  """
4871
4870
 
4872
4871
  __schema__ = schema
4873
- __choices__ = ("NOTIFIED", "PENDING")
4872
+ __choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
4874
4873
 
4875
4874
 
4876
4875
  class StorageEncryptionType(sgqlc.types.Enum):
@@ -23448,6 +23447,7 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23448
23447
  "comparison_data_source_type",
23449
23448
  "table_monitor_warning",
23450
23449
  "size_collection_table_mcon",
23450
+ "size_collection_enabled",
23451
23451
  "total_invocations_count",
23452
23452
  "total_result_count",
23453
23453
  "total_execution_duration",
@@ -23495,6 +23495,11 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23495
23495
  size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
23496
23496
  """MCON of the table for size collection executions in table monitors"""
23497
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
+
23498
23503
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23499
23504
  """Total number of invocations for the job execution. May be null if
23500
23505
  execution has not completed.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.226
3
+ Version: 0.10.229
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=ZsY34vD6QHeuq9w2-pOPejJNFEHo3E1r6xh1mp9L3Hk,6447198
39
- pycarlo/lib/schema.py,sha256=jy08RSmu6u3viouglW8JKIwHjxCKWUdaMpxc6K9K900,2801801
40
- pycarlo-0.10.226.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.226.dist-info/METADATA,sha256=bvsW3ptj3Tkaij-bpL4N2RNXA1NWiT5G9-5n8Kk5hHs,8742
42
- pycarlo-0.10.226.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.226.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.226.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=9N0_TuQqpr89iCA55oSYWG4b4TDWERMoWoOpouCdUQQ,6447710
39
+ pycarlo/lib/schema.py,sha256=o2sfJN7aypZ7y1tznio5UJ9vW5bY2lHJgLWoDAnauWo,2802005
40
+ pycarlo-0.10.229.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.229.dist-info/METADATA,sha256=zM1YEvDSoI32ZQGf4SplkxDxf5LomS6YMfXKr-aBOC0,8742
42
+ pycarlo-0.10.229.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.229.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.229.dist-info/RECORD,,