pycarlo 0.10.88__py3-none-any.whl → 0.10.89__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
@@ -10875,6 +10875,20 @@
10875
10875
  }
10876
10876
  }
10877
10877
  },
10878
+ {
10879
+ "defaultValue": null,
10880
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
10881
+ "name": "excludeMcons",
10882
+ "type": {
10883
+ "kind": "LIST",
10884
+ "name": null,
10885
+ "ofType": {
10886
+ "kind": "SCALAR",
10887
+ "name": "String",
10888
+ "ofType": null
10889
+ }
10890
+ }
10891
+ },
10878
10892
  {
10879
10893
  "defaultValue": null,
10880
10894
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
@@ -11246,6 +11260,20 @@
11246
11260
  }
11247
11261
  }
11248
11262
  },
11263
+ {
11264
+ "defaultValue": null,
11265
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
11266
+ "name": "excludeMcons",
11267
+ "type": {
11268
+ "kind": "LIST",
11269
+ "name": null,
11270
+ "ofType": {
11271
+ "kind": "SCALAR",
11272
+ "name": "String",
11273
+ "ofType": null
11274
+ }
11275
+ }
11276
+ },
11249
11277
  {
11250
11278
  "defaultValue": null,
11251
11279
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
@@ -11613,6 +11641,20 @@
11613
11641
  }
11614
11642
  }
11615
11643
  },
11644
+ {
11645
+ "defaultValue": null,
11646
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
11647
+ "name": "excludeMcons",
11648
+ "type": {
11649
+ "kind": "LIST",
11650
+ "name": null,
11651
+ "ofType": {
11652
+ "kind": "SCALAR",
11653
+ "name": "String",
11654
+ "ofType": null
11655
+ }
11656
+ }
11657
+ },
11616
11658
  {
11617
11659
  "defaultValue": null,
11618
11660
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
@@ -11988,6 +12030,20 @@
11988
12030
  }
11989
12031
  }
11990
12032
  },
12033
+ {
12034
+ "defaultValue": null,
12035
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
12036
+ "name": "excludeMcons",
12037
+ "type": {
12038
+ "kind": "LIST",
12039
+ "name": null,
12040
+ "ofType": {
12041
+ "kind": "SCALAR",
12042
+ "name": "String",
12043
+ "ofType": null
12044
+ }
12045
+ }
12046
+ },
11991
12047
  {
11992
12048
  "defaultValue": null,
11993
12049
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
@@ -12359,6 +12415,20 @@
12359
12415
  }
12360
12416
  }
12361
12417
  },
12418
+ {
12419
+ "defaultValue": null,
12420
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
12421
+ "name": "excludeMcons",
12422
+ "type": {
12423
+ "kind": "LIST",
12424
+ "name": null,
12425
+ "ofType": {
12426
+ "kind": "SCALAR",
12427
+ "name": "String",
12428
+ "ofType": null
12429
+ }
12430
+ }
12431
+ },
12362
12432
  {
12363
12433
  "defaultValue": null,
12364
12434
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
@@ -41109,6 +41179,20 @@
41109
41179
  }
41110
41180
  }
41111
41181
  },
41182
+ {
41183
+ "defaultValue": null,
41184
+ "description": "Exclude monitors associated with these warehouses, projects, datasets, or tables (MCON)",
41185
+ "name": "excludeMcons",
41186
+ "type": {
41187
+ "kind": "LIST",
41188
+ "name": null,
41189
+ "ofType": {
41190
+ "kind": "SCALAR",
41191
+ "name": "String",
41192
+ "ofType": null
41193
+ }
41194
+ }
41195
+ },
41112
41196
  {
41113
41197
  "defaultValue": null,
41114
41198
  "description": "EXPERIMENTAL. Filter monitors to only the ones that are breached.",
pycarlo/lib/schema.py CHANGED
@@ -23861,6 +23861,12 @@ class MonitorLabelObject(sgqlc.types.Type):
23861
23861
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
23862
23862
  ),
23863
23863
  ),
23864
+ (
23865
+ "exclude_mcons",
23866
+ sgqlc.types.Arg(
23867
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
23868
+ ),
23869
+ ),
23864
23870
  (
23865
23871
  "alerted_only",
23866
23872
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -23932,6 +23938,8 @@ class MonitorLabelObject(sgqlc.types.Type):
23932
23938
  monitors will be included in result (default: `false`)
23933
23939
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
23934
23940
  or tables (MCON)
23941
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
23942
+ these warehouses, projects, datasets, or tables (MCON)
23935
23943
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
23936
23944
  only the ones that are breached.
23937
23945
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -48937,6 +48945,12 @@ class Query(sgqlc.types.Type):
48937
48945
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
48938
48946
  ),
48939
48947
  ),
48948
+ (
48949
+ "exclude_mcons",
48950
+ sgqlc.types.Arg(
48951
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
48952
+ ),
48953
+ ),
48940
48954
  (
48941
48955
  "alerted_only",
48942
48956
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -49008,6 +49022,8 @@ class Query(sgqlc.types.Type):
49008
49022
  monitors will be included in result (default: `false`)
49009
49023
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
49010
49024
  or tables (MCON)
49025
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
49026
+ these warehouses, projects, datasets, or tables (MCON)
49011
49027
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
49012
49028
  only the ones that are breached.
49013
49029
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -49150,6 +49166,12 @@ class Query(sgqlc.types.Type):
49150
49166
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
49151
49167
  ),
49152
49168
  ),
49169
+ (
49170
+ "exclude_mcons",
49171
+ sgqlc.types.Arg(
49172
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
49173
+ ),
49174
+ ),
49153
49175
  (
49154
49176
  "alerted_only",
49155
49177
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -49221,6 +49243,8 @@ class Query(sgqlc.types.Type):
49221
49243
  monitors will be included in result (default: `false`)
49222
49244
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
49223
49245
  or tables (MCON)
49246
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
49247
+ these warehouses, projects, datasets, or tables (MCON)
49224
49248
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
49225
49249
  only the ones that are breached.
49226
49250
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -49363,6 +49387,12 @@ class Query(sgqlc.types.Type):
49363
49387
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
49364
49388
  ),
49365
49389
  ),
49390
+ (
49391
+ "exclude_mcons",
49392
+ sgqlc.types.Arg(
49393
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
49394
+ ),
49395
+ ),
49366
49396
  (
49367
49397
  "alerted_only",
49368
49398
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -49434,6 +49464,8 @@ class Query(sgqlc.types.Type):
49434
49464
  monitors will be included in result (default: `false`)
49435
49465
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
49436
49466
  or tables (MCON)
49467
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
49468
+ these warehouses, projects, datasets, or tables (MCON)
49437
49469
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
49438
49470
  only the ones that are breached.
49439
49471
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -49576,6 +49608,12 @@ class Query(sgqlc.types.Type):
49576
49608
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
49577
49609
  ),
49578
49610
  ),
49611
+ (
49612
+ "exclude_mcons",
49613
+ sgqlc.types.Arg(
49614
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
49615
+ ),
49616
+ ),
49579
49617
  (
49580
49618
  "alerted_only",
49581
49619
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -49647,6 +49685,8 @@ class Query(sgqlc.types.Type):
49647
49685
  monitors will be included in result (default: `false`)
49648
49686
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
49649
49687
  or tables (MCON)
49688
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
49689
+ these warehouses, projects, datasets, or tables (MCON)
49650
49690
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
49651
49691
  only the ones that are breached.
49652
49692
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -49789,6 +49829,12 @@ class Query(sgqlc.types.Type):
49789
49829
  sgqlc.types.list_of(String), graphql_name="mcons", default=None
49790
49830
  ),
49791
49831
  ),
49832
+ (
49833
+ "exclude_mcons",
49834
+ sgqlc.types.Arg(
49835
+ sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
49836
+ ),
49837
+ ),
49792
49838
  (
49793
49839
  "alerted_only",
49794
49840
  sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
@@ -49860,6 +49906,8 @@ class Query(sgqlc.types.Type):
49860
49906
  monitors will be included in result (default: `false`)
49861
49907
  * `mcons` (`[String]`): Filter by warehouses, projects, datasets,
49862
49908
  or tables (MCON)
49909
+ * `exclude_mcons` (`[String]`): Exclude monitors associated with
49910
+ these warehouses, projects, datasets, or tables (MCON)
49863
49911
  * `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
49864
49912
  only the ones that are breached.
49865
49913
  * `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pycarlo
3
- Version: 0.10.88
3
+ Version: 0.10.89
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=2nhpFo88Zfered07w2XzCssn_BC8-J7kcnVtKg0WNok,6019078
39
- pycarlo/lib/schema.py,sha256=YvuAYG35pnK8ffgCU74u6T8AdkrXkspRlIgq6RLNlV8,2599666
40
- pycarlo-0.10.88.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
- pycarlo-0.10.88.dist-info/METADATA,sha256=vONB6OCybbWsj3rIJB90M3IDtq8vQd5nJU0uBKEKCa4,8741
42
- pycarlo-0.10.88.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
- pycarlo-0.10.88.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
- pycarlo-0.10.88.dist-info/RECORD,,
38
+ pycarlo/lib/schema.json,sha256=xnXAuHG2MQ6MpG6E9ArTqE1U49ImKOYwMa6to8sI4xU,6022270
39
+ pycarlo/lib/schema.py,sha256=kmPSW43YuJ0DhnU5URRvbPX5hL8qMuC-yLh6ZHE-wT8,2601820
40
+ pycarlo-0.10.89.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
41
+ pycarlo-0.10.89.dist-info/METADATA,sha256=VhZ7Cahcuj1H_m9dXPEY47DnkrGfFO5tPMsWGtPDxTM,8741
42
+ pycarlo-0.10.89.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
43
+ pycarlo-0.10.89.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
44
+ pycarlo-0.10.89.dist-info/RECORD,,