pycarlo 0.10.191__py3-none-any.whl → 0.10.193__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
@@ -22466,6 +22466,16 @@
22466
22466
  "ofType": null
22467
22467
  }
22468
22468
  },
22469
+ {
22470
+ "defaultValue": null,
22471
+ "description": "Project filter",
22472
+ "name": "projectFilter",
22473
+ "type": {
22474
+ "kind": "INPUT_OBJECT",
22475
+ "name": "ProjectFilterInput",
22476
+ "ofType": null
22477
+ }
22478
+ },
22469
22479
  {
22470
22480
  "defaultValue": null,
22471
22481
  "description": "Dataset filter",
@@ -32336,6 +32346,12 @@
32336
32346
  {
32337
32347
  "description": null,
32338
32348
  "enumValues": [
32349
+ {
32350
+ "deprecationReason": null,
32351
+ "description": null,
32352
+ "isDeprecated": false,
32353
+ "name": "PROJECTS"
32354
+ },
32339
32355
  {
32340
32356
  "deprecationReason": null,
32341
32357
  "description": null,
@@ -134747,6 +134763,31 @@
134747
134763
  "name": "TagFilterInput",
134748
134764
  "possibleTypes": null
134749
134765
  },
134766
+ {
134767
+ "description": null,
134768
+ "enumValues": null,
134769
+ "fields": null,
134770
+ "inputFields": [
134771
+ {
134772
+ "defaultValue": null,
134773
+ "description": "MCONs of projects to filter by.",
134774
+ "name": "projectMcons",
134775
+ "type": {
134776
+ "kind": "LIST",
134777
+ "name": null,
134778
+ "ofType": {
134779
+ "kind": "SCALAR",
134780
+ "name": "String",
134781
+ "ofType": null
134782
+ }
134783
+ }
134784
+ }
134785
+ ],
134786
+ "interfaces": null,
134787
+ "kind": "INPUT_OBJECT",
134788
+ "name": "ProjectFilterInput",
134789
+ "possibleTypes": null
134790
+ },
134750
134791
  {
134751
134792
  "description": null,
134752
134793
  "enumValues": null,
@@ -137936,6 +137977,18 @@
137936
137977
  "description": null,
137937
137978
  "enumValues": null,
137938
137979
  "fields": [
137980
+ {
137981
+ "args": [],
137982
+ "deprecationReason": null,
137983
+ "description": null,
137984
+ "isDeprecated": false,
137985
+ "name": "timeSeriesUuid",
137986
+ "type": {
137987
+ "kind": "SCALAR",
137988
+ "name": "UUID",
137989
+ "ofType": null
137990
+ }
137991
+ },
137939
137992
  {
137940
137993
  "args": [],
137941
137994
  "deprecationReason": null,
@@ -137971,6 +138024,30 @@
137971
138024
  "description": null,
137972
138025
  "enumValues": null,
137973
138026
  "fields": [
138027
+ {
138028
+ "args": [],
138029
+ "deprecationReason": null,
138030
+ "description": null,
138031
+ "isDeprecated": false,
138032
+ "name": "timeSeriesUuids",
138033
+ "type": {
138034
+ "kind": "NON_NULL",
138035
+ "name": null,
138036
+ "ofType": {
138037
+ "kind": "LIST",
138038
+ "name": null,
138039
+ "ofType": {
138040
+ "kind": "NON_NULL",
138041
+ "name": null,
138042
+ "ofType": {
138043
+ "kind": "SCALAR",
138044
+ "name": "UUID",
138045
+ "ofType": null
138046
+ }
138047
+ }
138048
+ }
138049
+ }
138050
+ },
137974
138051
  {
137975
138052
  "args": [],
137976
138053
  "deprecationReason": null,
@@ -138010,6 +138087,30 @@
138010
138087
  "description": null,
138011
138088
  "enumValues": null,
138012
138089
  "fields": [
138090
+ {
138091
+ "args": [],
138092
+ "deprecationReason": null,
138093
+ "description": null,
138094
+ "isDeprecated": false,
138095
+ "name": "timeSeriesUuids",
138096
+ "type": {
138097
+ "kind": "NON_NULL",
138098
+ "name": null,
138099
+ "ofType": {
138100
+ "kind": "LIST",
138101
+ "name": null,
138102
+ "ofType": {
138103
+ "kind": "NON_NULL",
138104
+ "name": null,
138105
+ "ofType": {
138106
+ "kind": "SCALAR",
138107
+ "name": "UUID",
138108
+ "ofType": null
138109
+ }
138110
+ }
138111
+ }
138112
+ }
138113
+ },
138013
138114
  {
138014
138115
  "args": [],
138015
138116
  "deprecationReason": null,
pycarlo/lib/schema.py CHANGED
@@ -2224,6 +2224,7 @@ class FacetType(sgqlc.types.Enum):
2224
2224
  * `DATASETS`None
2225
2225
  * `DATA_PRODUCTS`None
2226
2226
  * `ETL_TYPES`None
2227
+ * `PROJECTS`None
2227
2228
  * `RESOURCE_TYPES`None
2228
2229
  * `TAGS`None
2229
2230
  * `TAG_NAMES`None
@@ -2237,6 +2238,7 @@ class FacetType(sgqlc.types.Enum):
2237
2238
  "DATASETS",
2238
2239
  "DATA_PRODUCTS",
2239
2240
  "ETL_TYPES",
2241
+ "PROJECTS",
2240
2242
  "RESOURCE_TYPES",
2241
2243
  "TAGS",
2242
2244
  "TAG_NAMES",
@@ -8461,6 +8463,13 @@ class PowerBiUpdateConnectionDetails(sgqlc.types.Input):
8461
8463
  """
8462
8464
 
8463
8465
 
8466
+ class ProjectFilterInput(sgqlc.types.Input):
8467
+ __schema__ = schema
8468
+ __field_names__ = ("project_mcons",)
8469
+ project_mcons = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="projectMcons")
8470
+ """MCONs of projects to filter by."""
8471
+
8472
+
8464
8473
  class PullRequestFilterInput(sgqlc.types.Input):
8465
8474
  __schema__ = schema
8466
8475
  __field_names__ = ("filter_name", "values")
@@ -15183,7 +15192,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
15183
15192
 
15184
15193
  class CategoryLabelRank(sgqlc.types.Type):
15185
15194
  __schema__ = schema
15186
- __field_names__ = ("label", "rank")
15195
+ __field_names__ = ("time_series_uuid", "label", "rank")
15196
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
15197
+
15187
15198
  label = sgqlc.types.Field(String, graphql_name="label")
15188
15199
 
15189
15200
  rank = sgqlc.types.Field(Float, graphql_name="rank")
@@ -57255,6 +57266,10 @@ class Query(sgqlc.types.Type):
57255
57266
  "is_monitored",
57256
57267
  sgqlc.types.Arg(Boolean, graphql_name="isMonitored", default=None),
57257
57268
  ),
57269
+ (
57270
+ "project_filter",
57271
+ sgqlc.types.Arg(ProjectFilterInput, graphql_name="projectFilter", default=None),
57272
+ ),
57258
57273
  (
57259
57274
  "dataset_filter",
57260
57275
  sgqlc.types.Arg(DatasetFilterInput, graphql_name="datasetFilter", default=None),
@@ -57331,6 +57346,7 @@ class Query(sgqlc.types.Type):
57331
57346
  not support this monitor type
57332
57347
  * `is_monitored` (`Boolean`): Filter by is_monitored status. Only
57333
57348
  applicable to tables
57349
+ * `project_filter` (`ProjectFilterInput`): Project filter
57334
57350
  * `dataset_filter` (`DatasetFilterInput`): Dataset filter
57335
57351
  * `data_product_ids` (`[UUID!]`): Filter by data product IDs
57336
57352
  * `resource_types` (`[String]`): Filter by resource types
@@ -63333,7 +63349,12 @@ class SegmentCountQuery(sgqlc.types.Type):
63333
63349
 
63334
63350
  class SegmentLabels(sgqlc.types.Type):
63335
63351
  __schema__ = schema
63336
- __field_names__ = ("labels", "last_label")
63352
+ __field_names__ = ("time_series_uuids", "labels", "last_label")
63353
+ time_series_uuids = sgqlc.types.Field(
63354
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))),
63355
+ graphql_name="timeSeriesUuids",
63356
+ )
63357
+
63337
63358
  labels = sgqlc.types.Field(
63338
63359
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
63339
63360
  graphql_name="labels",
@@ -69533,7 +69554,12 @@ class WebhookHeader(sgqlc.types.Type):
69533
69554
 
69534
69555
  class WhereConditionSegments(sgqlc.types.Type):
69535
69556
  __schema__ = schema
69536
- __field_names__ = ("where_conditions", "last_where_condition")
69557
+ __field_names__ = ("time_series_uuids", "where_conditions", "last_where_condition")
69558
+ time_series_uuids = sgqlc.types.Field(
69559
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(UUID))),
69560
+ graphql_name="timeSeriesUuids",
69561
+ )
69562
+
69537
69563
  where_conditions = sgqlc.types.Field(
69538
69564
  sgqlc.types.list_of(String), graphql_name="whereConditions"
69539
69565
  )
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.191
3
+ Version: 0.10.193
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=jeSxN_Ux9U9Gr_790SpOal3WV_nNBUmEGJTHZn5j4eM,6332824
39
- pycarlo/lib/schema.py,sha256=kSe4zi6cJmgXc5REd2hn-CpQJQK002norBWhtHFdwkQ,2757789
40
- pycarlo-0.10.191.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.191.dist-info/METADATA,sha256=Nd_aNd7a0fg0t8USE60mCLvZVuWcoIKKsKiky2pg6ZE,8742
42
- pycarlo-0.10.191.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.191.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.191.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=S7Fqjxjz2icO16WUuL7vCaY_h1EQIlJWGtmNt2mQBCg,6335835
39
+ pycarlo/lib/schema.py,sha256=oCGNulk6OIBSRz3ToW6lbPccyh37mUoscEibLfnHOEk,2758797
40
+ pycarlo-0.10.193.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.193.dist-info/METADATA,sha256=-gmrgVjk2D9XQYlT2PIHKuZOWLiccYlv7kaGvLmvsoU,8742
42
+ pycarlo-0.10.193.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.193.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.193.dist-info/RECORD,,