pycarlo 0.10.122__py3-none-any.whl → 0.10.124__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
@@ -63899,6 +63899,18 @@
63899
63899
  "ofType": null
63900
63900
  }
63901
63901
  }
63902
+ },
63903
+ {
63904
+ "args": [],
63905
+ "deprecationReason": null,
63906
+ "description": "URL of the alert",
63907
+ "isDeprecated": false,
63908
+ "name": "url",
63909
+ "type": {
63910
+ "kind": "SCALAR",
63911
+ "name": "String",
63912
+ "ofType": null
63913
+ }
63902
63914
  }
63903
63915
  ],
63904
63916
  "inputFields": null,
@@ -88089,6 +88101,11 @@
88089
88101
  "kind": "OBJECT",
88090
88102
  "name": "AssetFilterActivityReadWrite",
88091
88103
  "ofType": null
88104
+ },
88105
+ {
88106
+ "kind": "OBJECT",
88107
+ "name": "AssetFilterActivityVolumeChange",
88108
+ "ofType": null
88092
88109
  }
88093
88110
  ]
88094
88111
  },
@@ -88130,6 +88147,12 @@
88130
88147
  "description": null,
88131
88148
  "isDeprecated": false,
88132
88149
  "name": "ACTIVITY_WRITE"
88150
+ },
88151
+ {
88152
+ "deprecationReason": null,
88153
+ "description": null,
88154
+ "isDeprecated": false,
88155
+ "name": "ACTIVITY_VOLUME_CHANGE"
88133
88156
  }
88134
88157
  ],
88135
88158
  "fields": null,
@@ -92098,6 +92121,18 @@
92098
92121
  "ofType": null
92099
92122
  }
92100
92123
  },
92124
+ {
92125
+ "args": [],
92126
+ "deprecationReason": null,
92127
+ "description": "The last time a significant write was executed on the table",
92128
+ "isDeprecated": false,
92129
+ "name": "lastVolumeChange",
92130
+ "type": {
92131
+ "kind": "SCALAR",
92132
+ "name": "DateTime",
92133
+ "ofType": null
92134
+ }
92135
+ },
92101
92136
  {
92102
92137
  "args": [],
92103
92138
  "deprecationReason": null,
@@ -142620,6 +142655,16 @@
142620
142655
  "ofType": null
142621
142656
  }
142622
142657
  },
142658
+ {
142659
+ "defaultValue": null,
142660
+ "description": null,
142661
+ "name": "volumeChangeDays",
142662
+ "type": {
142663
+ "kind": "SCALAR",
142664
+ "name": "Int",
142665
+ "ofType": null
142666
+ }
142667
+ },
142623
142668
  {
142624
142669
  "defaultValue": null,
142625
142670
  "description": null,
@@ -194745,6 +194790,71 @@
194745
194790
  "kind": "OBJECT",
194746
194791
  "name": "AssetFilterActivityReadWrite",
194747
194792
  "possibleTypes": null
194793
+ },
194794
+ {
194795
+ "description": null,
194796
+ "enumValues": null,
194797
+ "fields": [
194798
+ {
194799
+ "args": [],
194800
+ "deprecationReason": null,
194801
+ "description": null,
194802
+ "isDeprecated": false,
194803
+ "name": "type",
194804
+ "type": {
194805
+ "kind": "NON_NULL",
194806
+ "name": null,
194807
+ "ofType": {
194808
+ "kind": "ENUM",
194809
+ "name": "AssetFilterType",
194810
+ "ofType": null
194811
+ }
194812
+ }
194813
+ },
194814
+ {
194815
+ "args": [],
194816
+ "deprecationReason": null,
194817
+ "description": null,
194818
+ "isDeprecated": false,
194819
+ "name": "negated",
194820
+ "type": {
194821
+ "kind": "NON_NULL",
194822
+ "name": null,
194823
+ "ofType": {
194824
+ "kind": "SCALAR",
194825
+ "name": "Boolean",
194826
+ "ofType": null
194827
+ }
194828
+ }
194829
+ },
194830
+ {
194831
+ "args": [],
194832
+ "deprecationReason": null,
194833
+ "description": null,
194834
+ "isDeprecated": false,
194835
+ "name": "volumeChangeDays",
194836
+ "type": {
194837
+ "kind": "NON_NULL",
194838
+ "name": null,
194839
+ "ofType": {
194840
+ "kind": "SCALAR",
194841
+ "name": "Int",
194842
+ "ofType": null
194843
+ }
194844
+ }
194845
+ }
194846
+ ],
194847
+ "inputFields": null,
194848
+ "interfaces": [
194849
+ {
194850
+ "kind": "INTERFACE",
194851
+ "name": "AssetFilterInterface",
194852
+ "ofType": null
194853
+ }
194854
+ ],
194855
+ "kind": "OBJECT",
194856
+ "name": "AssetFilterActivityVolumeChange",
194857
+ "possibleTypes": null
194748
194858
  }
194749
194859
  ]
194750
194860
  }
pycarlo/lib/schema.py CHANGED
@@ -647,6 +647,7 @@ class AssetFilterType(sgqlc.types.Enum):
647
647
 
648
648
  * `ACTIVITY_READ`None
649
649
  * `ACTIVITY_READ_WRITE`None
650
+ * `ACTIVITY_VOLUME_CHANGE`None
650
651
  * `ACTIVITY_WRITE`None
651
652
  * `TABLE_NAME`None
652
653
  * `TABLE_TAG`None
@@ -657,6 +658,7 @@ class AssetFilterType(sgqlc.types.Enum):
657
658
  __choices__ = (
658
659
  "ACTIVITY_READ",
659
660
  "ACTIVITY_READ_WRITE",
661
+ "ACTIVITY_VOLUME_CHANGE",
660
662
  "ACTIVITY_WRITE",
661
663
  "TABLE_NAME",
662
664
  "TABLE_TAG",
@@ -5818,6 +5820,7 @@ class AssetFilterUnionInput(sgqlc.types.Input):
5818
5820
  "read_days",
5819
5821
  "write_days",
5820
5822
  "read_write_days",
5823
+ "volume_change_days",
5821
5824
  "type",
5822
5825
  "negated",
5823
5826
  )
@@ -5843,6 +5846,8 @@ class AssetFilterUnionInput(sgqlc.types.Input):
5843
5846
 
5844
5847
  read_write_days = sgqlc.types.Field(Int, graphql_name="readWriteDays")
5845
5848
 
5849
+ volume_change_days = sgqlc.types.Field(Int, graphql_name="volumeChangeDays")
5850
+
5846
5851
  type = sgqlc.types.Field(sgqlc.types.non_null(AssetFilterType), graphql_name="type")
5847
5852
 
5848
5853
  negated = sgqlc.types.Field(Boolean, graphql_name="negated")
@@ -13044,6 +13049,7 @@ class AssetUsageNode(sgqlc.types.Type):
13044
13049
  "last_activity",
13045
13050
  "last_read",
13046
13051
  "last_write",
13052
+ "last_volume_change",
13047
13053
  "object_properties",
13048
13054
  "table_type",
13049
13055
  )
@@ -13112,6 +13118,9 @@ class AssetUsageNode(sgqlc.types.Type):
13112
13118
  was written to .
13113
13119
  """
13114
13120
 
13121
+ last_volume_change = sgqlc.types.Field(DateTime, graphql_name="lastVolumeChange")
13122
+ """The last time a significant write was executed on the table"""
13123
+
13115
13124
  object_properties = sgqlc.types.Field(
13116
13125
  sgqlc.types.list_of("PartialObjectProperty"), graphql_name="objectProperties"
13117
13126
  )
@@ -67916,6 +67925,7 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
67916
67925
  "feedback",
67917
67926
  "name",
67918
67927
  "uuid",
67928
+ "url",
67919
67929
  )
67920
67930
  title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="title")
67921
67931
 
@@ -67975,6 +67985,9 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
67975
67985
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
67976
67986
  """DEPRECATED. Use id instead"""
67977
67987
 
67988
+ url = sgqlc.types.Field(String, graphql_name="url")
67989
+ """URL of the alert"""
67990
+
67978
67991
 
67979
67992
  class AssetFilterActivityRead(sgqlc.types.Type, AssetFilterInterface):
67980
67993
  __schema__ = schema
@@ -67988,6 +68001,14 @@ class AssetFilterActivityReadWrite(sgqlc.types.Type, AssetFilterInterface):
67988
68001
  read_write_days = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="readWriteDays")
67989
68002
 
67990
68003
 
68004
+ class AssetFilterActivityVolumeChange(sgqlc.types.Type, AssetFilterInterface):
68005
+ __schema__ = schema
68006
+ __field_names__ = ("volume_change_days",)
68007
+ volume_change_days = sgqlc.types.Field(
68008
+ sgqlc.types.non_null(Int), graphql_name="volumeChangeDays"
68009
+ )
68010
+
68011
+
67991
68012
  class AssetFilterActivityWrite(sgqlc.types.Type, AssetFilterInterface):
67992
68013
  __schema__ = schema
67993
68014
  __field_names__ = ("write_days",)
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.122
3
+ Version: 0.10.124
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=UrAfcDob22uknCmICqdi0IQ8aACUDqRMzSISRRv93Dw,6145596
39
- pycarlo/lib/schema.py,sha256=QcG-fgVjEl0laB6-4AIajSR_SSVlQQulAIm0cqH7OLY,2668394
40
- pycarlo-0.10.122.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.122.dist-info/METADATA,sha256=Ng8023GjQ0Ci4icbLq_MoAmmKrMBam2IIyRA-frANu8,8742
42
- pycarlo-0.10.122.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.122.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.122.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=MwF5HCJKA75WySvhAAEXJ_nv_hqoTqijBICSv-pFVhg,6148790
39
+ pycarlo/lib/schema.py,sha256=qWyLNHmkd1Jrci1AS3eUztFqOttWtwM8UwhgI8SlnDU,2669129
40
+ pycarlo-0.10.124.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.124.dist-info/METADATA,sha256=r6do9B0E7pbWcxlq073NhGnU3i2L_5GqVJyvgQbNV8I,8742
42
+ pycarlo-0.10.124.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.124.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.124.dist-info/RECORD,,