pycarlo 0.10.108__py3-none-any.whl → 0.10.110__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 +2041 -253
- pycarlo/lib/schema.py +1291 -289
- {pycarlo-0.10.108.dist-info → pycarlo-0.10.110.dist-info}/METADATA +1 -1
- {pycarlo-0.10.108.dist-info → pycarlo-0.10.110.dist-info}/RECORD +7 -7
- {pycarlo-0.10.108.dist-info → pycarlo-0.10.110.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.108.dist-info → pycarlo-0.10.110.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.108.dist-info → pycarlo-0.10.110.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -23318,26 +23318,6 @@ class LookerDashboardTileRef(sgqlc.types.Type):
|
|
|
23318
23318
|
tile_title = sgqlc.types.Field(String, graphql_name="tileTitle")
|
|
23319
23319
|
|
|
23320
23320
|
|
|
23321
|
-
class MaintenanceWindow(sgqlc.types.Type):
|
|
23322
|
-
__schema__ = schema
|
|
23323
|
-
__field_names__ = ("id", "start_time", "end_time", "reason", "reason_type")
|
|
23324
|
-
id = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="id")
|
|
23325
|
-
"""Unique identifier for the maintenance window"""
|
|
23326
|
-
|
|
23327
|
-
start_time = sgqlc.types.Field(DateTime, graphql_name="startTime")
|
|
23328
|
-
"""Start of maintenance window"""
|
|
23329
|
-
|
|
23330
|
-
end_time = sgqlc.types.Field(DateTime, graphql_name="endTime")
|
|
23331
|
-
"""End of maintenance window"""
|
|
23332
|
-
|
|
23333
|
-
reason = sgqlc.types.Field(String, graphql_name="reason")
|
|
23334
|
-
"""Reason for maintenance window"""
|
|
23335
|
-
|
|
23336
|
-
reason_type = sgqlc.types.Field(
|
|
23337
|
-
sgqlc.types.non_null(DataMaintenanceReasonType), graphql_name="reasonType"
|
|
23338
|
-
)
|
|
23339
|
-
|
|
23340
|
-
|
|
23341
23321
|
class ManyToManyChange(sgqlc.types.Type):
|
|
23342
23322
|
__schema__ = schema
|
|
23343
23323
|
__field_names__ = ("operation", "object_names")
|
|
@@ -23805,6 +23785,21 @@ class MonitorDataSource(sgqlc.types.Type):
|
|
|
23805
23785
|
transforms = sgqlc.types.Field(sgqlc.types.list_of("Transform"), graphql_name="transforms")
|
|
23806
23786
|
|
|
23807
23787
|
|
|
23788
|
+
class MonitorDataset(sgqlc.types.Type):
|
|
23789
|
+
"""Datasets referenced by monitors, grouped by dataset name"""
|
|
23790
|
+
|
|
23791
|
+
__schema__ = schema
|
|
23792
|
+
__field_names__ = ("display_name", "mcons")
|
|
23793
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
23794
|
+
"""Dataset name"""
|
|
23795
|
+
|
|
23796
|
+
mcons = sgqlc.types.Field(
|
|
23797
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
23798
|
+
graphql_name="mcons",
|
|
23799
|
+
)
|
|
23800
|
+
"""List of MCONs for the datasets with this name"""
|
|
23801
|
+
|
|
23802
|
+
|
|
23808
23803
|
class MonitorLabel(sgqlc.types.Type):
|
|
23809
23804
|
__schema__ = schema
|
|
23810
23805
|
__field_names__ = ("label",)
|
|
@@ -23992,6 +23987,14 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
23992
23987
|
default=None,
|
|
23993
23988
|
),
|
|
23994
23989
|
),
|
|
23990
|
+
(
|
|
23991
|
+
"exclude_asset_tags",
|
|
23992
|
+
sgqlc.types.Arg(
|
|
23993
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
23994
|
+
graphql_name="excludeAssetTags",
|
|
23995
|
+
default=None,
|
|
23996
|
+
),
|
|
23997
|
+
),
|
|
23995
23998
|
(
|
|
23996
23999
|
"data_quality_dimensions",
|
|
23997
24000
|
sgqlc.types.Arg(
|
|
@@ -24052,8 +24055,12 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
24052
24055
|
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
24053
24056
|
can include null to include monitors without tags
|
|
24054
24057
|
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
24055
|
-
Returns monitors
|
|
24058
|
+
Returns monitors with at least one linked table that has any of
|
|
24056
24059
|
the provided tags
|
|
24060
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
24061
|
+
monitors that have any linked table whose tags consist only of
|
|
24062
|
+
the provided tags. Tables with additional tags or no tags are
|
|
24063
|
+
included
|
|
24057
24064
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
24058
24065
|
dimensions
|
|
24059
24066
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -24104,6 +24111,21 @@ class MonitorLimits(sgqlc.types.Type):
|
|
|
24104
24111
|
"""Monthly time series limit"""
|
|
24105
24112
|
|
|
24106
24113
|
|
|
24114
|
+
class MonitorProject(sgqlc.types.Type):
|
|
24115
|
+
"""Projects referenced by monitors, grouped by project name"""
|
|
24116
|
+
|
|
24117
|
+
__schema__ = schema
|
|
24118
|
+
__field_names__ = ("display_name", "mcons")
|
|
24119
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
24120
|
+
"""Project name"""
|
|
24121
|
+
|
|
24122
|
+
mcons = sgqlc.types.Field(
|
|
24123
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
24124
|
+
graphql_name="mcons",
|
|
24125
|
+
)
|
|
24126
|
+
"""List of MCONs for the projects with this name"""
|
|
24127
|
+
|
|
24128
|
+
|
|
24107
24129
|
class MonitorQueries(sgqlc.types.Type):
|
|
24108
24130
|
"""A monitor query"""
|
|
24109
24131
|
|
|
@@ -24210,6 +24232,36 @@ class MonitorSummary(sgqlc.types.Type):
|
|
|
24210
24232
|
table_metric = sgqlc.types.Field(Int, graphql_name="tableMetric")
|
|
24211
24233
|
|
|
24212
24234
|
|
|
24235
|
+
class MonitorTable(sgqlc.types.Type):
|
|
24236
|
+
"""Tables referenced by monitors, grouped by table identifier"""
|
|
24237
|
+
|
|
24238
|
+
__schema__ = schema
|
|
24239
|
+
__field_names__ = ("display_name", "mcons")
|
|
24240
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
24241
|
+
"""Table identifier"""
|
|
24242
|
+
|
|
24243
|
+
mcons = sgqlc.types.Field(
|
|
24244
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
24245
|
+
graphql_name="mcons",
|
|
24246
|
+
)
|
|
24247
|
+
"""List of MCONs for the tables with this identifier"""
|
|
24248
|
+
|
|
24249
|
+
|
|
24250
|
+
class MonitorWarehouse(sgqlc.types.Type):
|
|
24251
|
+
"""Warehouse assets referenced by monitors, grouped by name"""
|
|
24252
|
+
|
|
24253
|
+
__schema__ = schema
|
|
24254
|
+
__field_names__ = ("display_name", "mcons")
|
|
24255
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
24256
|
+
"""Warehouse name"""
|
|
24257
|
+
|
|
24258
|
+
mcons = sgqlc.types.Field(
|
|
24259
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
24260
|
+
graphql_name="mcons",
|
|
24261
|
+
)
|
|
24262
|
+
"""List of MCONs for the warehouses with this name"""
|
|
24263
|
+
|
|
24264
|
+
|
|
24213
24265
|
class MonitoredTableRuleJobStatusObject(sgqlc.types.Type):
|
|
24214
24266
|
"""Job status for updating monitored table rules"""
|
|
24215
24267
|
|
|
@@ -43130,6 +43182,10 @@ class Query(sgqlc.types.Type):
|
|
|
43130
43182
|
"get_monitors",
|
|
43131
43183
|
"get_monitors_count",
|
|
43132
43184
|
"get_monitor_namespaces",
|
|
43185
|
+
"get_monitor_warehouses",
|
|
43186
|
+
"get_monitor_projects",
|
|
43187
|
+
"get_monitor_datasets",
|
|
43188
|
+
"get_monitor_tables",
|
|
43133
43189
|
"get_monitor_creators",
|
|
43134
43190
|
"get_monitor_updaters",
|
|
43135
43191
|
"get_monitor_queries",
|
|
@@ -49448,6 +49504,14 @@ class Query(sgqlc.types.Type):
|
|
|
49448
49504
|
default=None,
|
|
49449
49505
|
),
|
|
49450
49506
|
),
|
|
49507
|
+
(
|
|
49508
|
+
"exclude_asset_tags",
|
|
49509
|
+
sgqlc.types.Arg(
|
|
49510
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
49511
|
+
graphql_name="excludeAssetTags",
|
|
49512
|
+
default=None,
|
|
49513
|
+
),
|
|
49514
|
+
),
|
|
49451
49515
|
(
|
|
49452
49516
|
"data_quality_dimensions",
|
|
49453
49517
|
sgqlc.types.Arg(
|
|
@@ -49508,8 +49572,12 @@ class Query(sgqlc.types.Type):
|
|
|
49508
49572
|
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
49509
49573
|
can include null to include monitors without tags
|
|
49510
49574
|
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
49511
|
-
Returns monitors
|
|
49575
|
+
Returns monitors with at least one linked table that has any of
|
|
49512
49576
|
the provided tags
|
|
49577
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
49578
|
+
monitors that have any linked table whose tags consist only of
|
|
49579
|
+
the provided tags. Tables with additional tags or no tags are
|
|
49580
|
+
included
|
|
49513
49581
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
49514
49582
|
dimensions
|
|
49515
49583
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -49669,6 +49737,14 @@ class Query(sgqlc.types.Type):
|
|
|
49669
49737
|
default=None,
|
|
49670
49738
|
),
|
|
49671
49739
|
),
|
|
49740
|
+
(
|
|
49741
|
+
"exclude_asset_tags",
|
|
49742
|
+
sgqlc.types.Arg(
|
|
49743
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
49744
|
+
graphql_name="excludeAssetTags",
|
|
49745
|
+
default=None,
|
|
49746
|
+
),
|
|
49747
|
+
),
|
|
49672
49748
|
(
|
|
49673
49749
|
"data_quality_dimensions",
|
|
49674
49750
|
sgqlc.types.Arg(
|
|
@@ -49729,8 +49805,1177 @@ class Query(sgqlc.types.Type):
|
|
|
49729
49805
|
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
49730
49806
|
can include null to include monitors without tags
|
|
49731
49807
|
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
49732
|
-
Returns monitors
|
|
49808
|
+
Returns monitors with at least one linked table that has any of
|
|
49809
|
+
the provided tags
|
|
49810
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
49811
|
+
monitors that have any linked table whose tags consist only of
|
|
49812
|
+
the provided tags. Tables with additional tags or no tags are
|
|
49813
|
+
included
|
|
49814
|
+
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
49815
|
+
dimensions
|
|
49816
|
+
* `order_by` (`String`): Field and direction to order monitors by
|
|
49817
|
+
* `limit` (`Int`): Number of monitors to return
|
|
49818
|
+
* `offset` (`Int`): From which monitor to return the next results
|
|
49819
|
+
"""
|
|
49820
|
+
|
|
49821
|
+
get_monitor_namespaces = sgqlc.types.Field(
|
|
49822
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
49823
|
+
graphql_name="getMonitorNamespaces",
|
|
49824
|
+
args=sgqlc.types.ArgDict(
|
|
49825
|
+
(
|
|
49826
|
+
(
|
|
49827
|
+
"monitor_types",
|
|
49828
|
+
sgqlc.types.Arg(
|
|
49829
|
+
sgqlc.types.list_of(UserDefinedMonitors),
|
|
49830
|
+
graphql_name="monitorTypes",
|
|
49831
|
+
default=None,
|
|
49832
|
+
),
|
|
49833
|
+
),
|
|
49834
|
+
(
|
|
49835
|
+
"status_types",
|
|
49836
|
+
sgqlc.types.Arg(
|
|
49837
|
+
sgqlc.types.list_of(MonitorStatusType),
|
|
49838
|
+
graphql_name="statusTypes",
|
|
49839
|
+
default=None,
|
|
49840
|
+
),
|
|
49841
|
+
),
|
|
49842
|
+
(
|
|
49843
|
+
"consolidated_status_types",
|
|
49844
|
+
sgqlc.types.Arg(
|
|
49845
|
+
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
49846
|
+
graphql_name="consolidatedStatusTypes",
|
|
49847
|
+
default=None,
|
|
49848
|
+
),
|
|
49849
|
+
),
|
|
49850
|
+
(
|
|
49851
|
+
"description_field_or_table",
|
|
49852
|
+
sgqlc.types.Arg(
|
|
49853
|
+
sgqlc.types.list_of(String),
|
|
49854
|
+
graphql_name="descriptionFieldOrTable",
|
|
49855
|
+
default=None,
|
|
49856
|
+
),
|
|
49857
|
+
),
|
|
49858
|
+
(
|
|
49859
|
+
"created_by",
|
|
49860
|
+
sgqlc.types.Arg(
|
|
49861
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
49862
|
+
graphql_name="createdBy",
|
|
49863
|
+
default=None,
|
|
49864
|
+
),
|
|
49865
|
+
),
|
|
49866
|
+
(
|
|
49867
|
+
"updated_by",
|
|
49868
|
+
sgqlc.types.Arg(
|
|
49869
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
49870
|
+
graphql_name="updatedBy",
|
|
49871
|
+
default=None,
|
|
49872
|
+
),
|
|
49873
|
+
),
|
|
49874
|
+
(
|
|
49875
|
+
"priorities",
|
|
49876
|
+
sgqlc.types.Arg(
|
|
49877
|
+
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
49878
|
+
),
|
|
49879
|
+
),
|
|
49880
|
+
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
49881
|
+
(
|
|
49882
|
+
"domain_ids",
|
|
49883
|
+
sgqlc.types.Arg(
|
|
49884
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
49885
|
+
graphql_name="domainIds",
|
|
49886
|
+
default=None,
|
|
49887
|
+
),
|
|
49888
|
+
),
|
|
49889
|
+
(
|
|
49890
|
+
"uuids",
|
|
49891
|
+
sgqlc.types.Arg(
|
|
49892
|
+
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
49893
|
+
),
|
|
49894
|
+
),
|
|
49895
|
+
(
|
|
49896
|
+
"created_by_filters",
|
|
49897
|
+
sgqlc.types.Arg(
|
|
49898
|
+
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
49899
|
+
),
|
|
49900
|
+
),
|
|
49901
|
+
(
|
|
49902
|
+
"labels",
|
|
49903
|
+
sgqlc.types.Arg(
|
|
49904
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
49905
|
+
),
|
|
49906
|
+
),
|
|
49907
|
+
(
|
|
49908
|
+
"search",
|
|
49909
|
+
sgqlc.types.Arg(
|
|
49910
|
+
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
49911
|
+
),
|
|
49912
|
+
),
|
|
49913
|
+
(
|
|
49914
|
+
"search_fields",
|
|
49915
|
+
sgqlc.types.Arg(
|
|
49916
|
+
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
49917
|
+
graphql_name="searchFields",
|
|
49918
|
+
default=None,
|
|
49919
|
+
),
|
|
49920
|
+
),
|
|
49921
|
+
(
|
|
49922
|
+
"namespaces",
|
|
49923
|
+
sgqlc.types.Arg(
|
|
49924
|
+
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
49925
|
+
),
|
|
49926
|
+
),
|
|
49927
|
+
(
|
|
49928
|
+
"is_template_managed",
|
|
49929
|
+
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
49930
|
+
),
|
|
49931
|
+
(
|
|
49932
|
+
"is_ootb_replacement",
|
|
49933
|
+
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
49934
|
+
),
|
|
49935
|
+
(
|
|
49936
|
+
"include_ootb_monitors",
|
|
49937
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
49938
|
+
),
|
|
49939
|
+
(
|
|
49940
|
+
"include_ootb_replacement",
|
|
49941
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
49942
|
+
),
|
|
49943
|
+
(
|
|
49944
|
+
"mcons",
|
|
49945
|
+
sgqlc.types.Arg(
|
|
49946
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
49947
|
+
),
|
|
49948
|
+
),
|
|
49949
|
+
(
|
|
49950
|
+
"exclude_mcons",
|
|
49951
|
+
sgqlc.types.Arg(
|
|
49952
|
+
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
49953
|
+
),
|
|
49954
|
+
),
|
|
49955
|
+
(
|
|
49956
|
+
"alerted_only",
|
|
49957
|
+
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
49958
|
+
),
|
|
49959
|
+
(
|
|
49960
|
+
"tags",
|
|
49961
|
+
sgqlc.types.Arg(
|
|
49962
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
49963
|
+
),
|
|
49964
|
+
),
|
|
49965
|
+
(
|
|
49966
|
+
"asset_tags",
|
|
49967
|
+
sgqlc.types.Arg(
|
|
49968
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
49969
|
+
graphql_name="assetTags",
|
|
49970
|
+
default=None,
|
|
49971
|
+
),
|
|
49972
|
+
),
|
|
49973
|
+
(
|
|
49974
|
+
"exclude_asset_tags",
|
|
49975
|
+
sgqlc.types.Arg(
|
|
49976
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
49977
|
+
graphql_name="excludeAssetTags",
|
|
49978
|
+
default=None,
|
|
49979
|
+
),
|
|
49980
|
+
),
|
|
49981
|
+
(
|
|
49982
|
+
"data_quality_dimensions",
|
|
49983
|
+
sgqlc.types.Arg(
|
|
49984
|
+
sgqlc.types.list_of(String),
|
|
49985
|
+
graphql_name="dataQualityDimensions",
|
|
49986
|
+
default=None,
|
|
49987
|
+
),
|
|
49988
|
+
),
|
|
49989
|
+
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
49990
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
49991
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
49992
|
+
)
|
|
49993
|
+
),
|
|
49994
|
+
)
|
|
49995
|
+
"""(experimental) List of monitor namespaces
|
|
49996
|
+
|
|
49997
|
+
Arguments:
|
|
49998
|
+
|
|
49999
|
+
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
50000
|
+
filter by, default all
|
|
50001
|
+
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
50002
|
+
to filter by, default all
|
|
50003
|
+
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
50004
|
+
Type of consolidated monitor status to filter by, default all
|
|
50005
|
+
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
50006
|
+
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
50007
|
+
user emails
|
|
50008
|
+
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
50009
|
+
user emails
|
|
50010
|
+
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
50011
|
+
null to include monitors without a priority set
|
|
50012
|
+
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
50013
|
+
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
50014
|
+
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
50015
|
+
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
50016
|
+
* `labels` (`[String]`): List of labels to filter by
|
|
50017
|
+
* `search` (`[String]`): Search criteria for filtering the
|
|
50018
|
+
monitors list
|
|
50019
|
+
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
50020
|
+
fields to include during search
|
|
50021
|
+
* `namespaces` (`[String]`): filter by namespaces
|
|
50022
|
+
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
50023
|
+
code
|
|
50024
|
+
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
50025
|
+
a default ootb detector (default: `false`)
|
|
50026
|
+
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
50027
|
+
monitors will be returned. They will be the first few monitors
|
|
50028
|
+
in the first page of the results (default: `false`)
|
|
50029
|
+
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
50030
|
+
is_ootb_replacement is not specified or false, ootb_replacement
|
|
50031
|
+
monitors will be included in result (default: `false`)
|
|
50032
|
+
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
50033
|
+
or tables (MCON)
|
|
50034
|
+
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
50035
|
+
these warehouses, projects, datasets, or tables (MCON)
|
|
50036
|
+
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
50037
|
+
only the ones that are breached.
|
|
50038
|
+
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50039
|
+
can include null to include monitors without tags
|
|
50040
|
+
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50041
|
+
Returns monitors with at least one linked table that has any of
|
|
50042
|
+
the provided tags
|
|
50043
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
50044
|
+
monitors that have any linked table whose tags consist only of
|
|
50045
|
+
the provided tags. Tables with additional tags or no tags are
|
|
50046
|
+
included
|
|
50047
|
+
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50048
|
+
dimensions
|
|
50049
|
+
* `order_by` (`String`): Field and direction to order monitors by
|
|
50050
|
+
* `limit` (`Int`): Number of monitors to return
|
|
50051
|
+
* `offset` (`Int`): From which monitor to return the next results
|
|
50052
|
+
"""
|
|
50053
|
+
|
|
50054
|
+
get_monitor_warehouses = sgqlc.types.Field(
|
|
50055
|
+
sgqlc.types.list_of(sgqlc.types.non_null(MonitorWarehouse)),
|
|
50056
|
+
graphql_name="getMonitorWarehouses",
|
|
50057
|
+
args=sgqlc.types.ArgDict(
|
|
50058
|
+
(
|
|
50059
|
+
(
|
|
50060
|
+
"monitor_types",
|
|
50061
|
+
sgqlc.types.Arg(
|
|
50062
|
+
sgqlc.types.list_of(UserDefinedMonitors),
|
|
50063
|
+
graphql_name="monitorTypes",
|
|
50064
|
+
default=None,
|
|
50065
|
+
),
|
|
50066
|
+
),
|
|
50067
|
+
(
|
|
50068
|
+
"status_types",
|
|
50069
|
+
sgqlc.types.Arg(
|
|
50070
|
+
sgqlc.types.list_of(MonitorStatusType),
|
|
50071
|
+
graphql_name="statusTypes",
|
|
50072
|
+
default=None,
|
|
50073
|
+
),
|
|
50074
|
+
),
|
|
50075
|
+
(
|
|
50076
|
+
"consolidated_status_types",
|
|
50077
|
+
sgqlc.types.Arg(
|
|
50078
|
+
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
50079
|
+
graphql_name="consolidatedStatusTypes",
|
|
50080
|
+
default=None,
|
|
50081
|
+
),
|
|
50082
|
+
),
|
|
50083
|
+
(
|
|
50084
|
+
"description_field_or_table",
|
|
50085
|
+
sgqlc.types.Arg(
|
|
50086
|
+
sgqlc.types.list_of(String),
|
|
50087
|
+
graphql_name="descriptionFieldOrTable",
|
|
50088
|
+
default=None,
|
|
50089
|
+
),
|
|
50090
|
+
),
|
|
50091
|
+
(
|
|
50092
|
+
"created_by",
|
|
50093
|
+
sgqlc.types.Arg(
|
|
50094
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50095
|
+
graphql_name="createdBy",
|
|
50096
|
+
default=None,
|
|
50097
|
+
),
|
|
50098
|
+
),
|
|
50099
|
+
(
|
|
50100
|
+
"updated_by",
|
|
50101
|
+
sgqlc.types.Arg(
|
|
50102
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50103
|
+
graphql_name="updatedBy",
|
|
50104
|
+
default=None,
|
|
50105
|
+
),
|
|
50106
|
+
),
|
|
50107
|
+
(
|
|
50108
|
+
"priorities",
|
|
50109
|
+
sgqlc.types.Arg(
|
|
50110
|
+
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
50111
|
+
),
|
|
50112
|
+
),
|
|
50113
|
+
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
50114
|
+
(
|
|
50115
|
+
"domain_ids",
|
|
50116
|
+
sgqlc.types.Arg(
|
|
50117
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50118
|
+
graphql_name="domainIds",
|
|
50119
|
+
default=None,
|
|
50120
|
+
),
|
|
50121
|
+
),
|
|
50122
|
+
(
|
|
50123
|
+
"uuids",
|
|
50124
|
+
sgqlc.types.Arg(
|
|
50125
|
+
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
50126
|
+
),
|
|
50127
|
+
),
|
|
50128
|
+
(
|
|
50129
|
+
"created_by_filters",
|
|
50130
|
+
sgqlc.types.Arg(
|
|
50131
|
+
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
50132
|
+
),
|
|
50133
|
+
),
|
|
50134
|
+
(
|
|
50135
|
+
"labels",
|
|
50136
|
+
sgqlc.types.Arg(
|
|
50137
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
50138
|
+
),
|
|
50139
|
+
),
|
|
50140
|
+
(
|
|
50141
|
+
"search",
|
|
50142
|
+
sgqlc.types.Arg(
|
|
50143
|
+
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
50144
|
+
),
|
|
50145
|
+
),
|
|
50146
|
+
(
|
|
50147
|
+
"search_fields",
|
|
50148
|
+
sgqlc.types.Arg(
|
|
50149
|
+
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
50150
|
+
graphql_name="searchFields",
|
|
50151
|
+
default=None,
|
|
50152
|
+
),
|
|
50153
|
+
),
|
|
50154
|
+
(
|
|
50155
|
+
"namespaces",
|
|
50156
|
+
sgqlc.types.Arg(
|
|
50157
|
+
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
50158
|
+
),
|
|
50159
|
+
),
|
|
50160
|
+
(
|
|
50161
|
+
"is_template_managed",
|
|
50162
|
+
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
50163
|
+
),
|
|
50164
|
+
(
|
|
50165
|
+
"is_ootb_replacement",
|
|
50166
|
+
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
50167
|
+
),
|
|
50168
|
+
(
|
|
50169
|
+
"include_ootb_monitors",
|
|
50170
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
50171
|
+
),
|
|
50172
|
+
(
|
|
50173
|
+
"include_ootb_replacement",
|
|
50174
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
50175
|
+
),
|
|
50176
|
+
(
|
|
50177
|
+
"mcons",
|
|
50178
|
+
sgqlc.types.Arg(
|
|
50179
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
50180
|
+
),
|
|
50181
|
+
),
|
|
50182
|
+
(
|
|
50183
|
+
"exclude_mcons",
|
|
50184
|
+
sgqlc.types.Arg(
|
|
50185
|
+
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
50186
|
+
),
|
|
50187
|
+
),
|
|
50188
|
+
(
|
|
50189
|
+
"alerted_only",
|
|
50190
|
+
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
50191
|
+
),
|
|
50192
|
+
(
|
|
50193
|
+
"tags",
|
|
50194
|
+
sgqlc.types.Arg(
|
|
50195
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
50196
|
+
),
|
|
50197
|
+
),
|
|
50198
|
+
(
|
|
50199
|
+
"asset_tags",
|
|
50200
|
+
sgqlc.types.Arg(
|
|
50201
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50202
|
+
graphql_name="assetTags",
|
|
50203
|
+
default=None,
|
|
50204
|
+
),
|
|
50205
|
+
),
|
|
50206
|
+
(
|
|
50207
|
+
"exclude_asset_tags",
|
|
50208
|
+
sgqlc.types.Arg(
|
|
50209
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50210
|
+
graphql_name="excludeAssetTags",
|
|
50211
|
+
default=None,
|
|
50212
|
+
),
|
|
50213
|
+
),
|
|
50214
|
+
(
|
|
50215
|
+
"data_quality_dimensions",
|
|
50216
|
+
sgqlc.types.Arg(
|
|
50217
|
+
sgqlc.types.list_of(String),
|
|
50218
|
+
graphql_name="dataQualityDimensions",
|
|
50219
|
+
default=None,
|
|
50220
|
+
),
|
|
50221
|
+
),
|
|
50222
|
+
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
50223
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
50224
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
50225
|
+
)
|
|
50226
|
+
),
|
|
50227
|
+
)
|
|
50228
|
+
"""(experimental) List of monitor warehouses
|
|
50229
|
+
|
|
50230
|
+
Arguments:
|
|
50231
|
+
|
|
50232
|
+
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
50233
|
+
filter by, default all
|
|
50234
|
+
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
50235
|
+
to filter by, default all
|
|
50236
|
+
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
50237
|
+
Type of consolidated monitor status to filter by, default all
|
|
50238
|
+
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
50239
|
+
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
50240
|
+
user emails
|
|
50241
|
+
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
50242
|
+
user emails
|
|
50243
|
+
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
50244
|
+
null to include monitors without a priority set
|
|
50245
|
+
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
50246
|
+
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
50247
|
+
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
50248
|
+
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
50249
|
+
* `labels` (`[String]`): List of labels to filter by
|
|
50250
|
+
* `search` (`[String]`): Search criteria for filtering the
|
|
50251
|
+
monitors list
|
|
50252
|
+
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
50253
|
+
fields to include during search
|
|
50254
|
+
* `namespaces` (`[String]`): filter by namespaces
|
|
50255
|
+
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
50256
|
+
code
|
|
50257
|
+
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
50258
|
+
a default ootb detector (default: `false`)
|
|
50259
|
+
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
50260
|
+
monitors will be returned. They will be the first few monitors
|
|
50261
|
+
in the first page of the results (default: `false`)
|
|
50262
|
+
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
50263
|
+
is_ootb_replacement is not specified or false, ootb_replacement
|
|
50264
|
+
monitors will be included in result (default: `false`)
|
|
50265
|
+
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
50266
|
+
or tables (MCON)
|
|
50267
|
+
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
50268
|
+
these warehouses, projects, datasets, or tables (MCON)
|
|
50269
|
+
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
50270
|
+
only the ones that are breached.
|
|
50271
|
+
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50272
|
+
can include null to include monitors without tags
|
|
50273
|
+
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50274
|
+
Returns monitors with at least one linked table that has any of
|
|
50275
|
+
the provided tags
|
|
50276
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
50277
|
+
monitors that have any linked table whose tags consist only of
|
|
50278
|
+
the provided tags. Tables with additional tags or no tags are
|
|
50279
|
+
included
|
|
50280
|
+
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50281
|
+
dimensions
|
|
50282
|
+
* `order_by` (`String`): Field and direction to order monitors by
|
|
50283
|
+
* `limit` (`Int`): Number of monitors to return
|
|
50284
|
+
* `offset` (`Int`): From which monitor to return the next results
|
|
50285
|
+
"""
|
|
50286
|
+
|
|
50287
|
+
get_monitor_projects = sgqlc.types.Field(
|
|
50288
|
+
sgqlc.types.list_of(sgqlc.types.non_null(MonitorProject)),
|
|
50289
|
+
graphql_name="getMonitorProjects",
|
|
50290
|
+
args=sgqlc.types.ArgDict(
|
|
50291
|
+
(
|
|
50292
|
+
(
|
|
50293
|
+
"monitor_types",
|
|
50294
|
+
sgqlc.types.Arg(
|
|
50295
|
+
sgqlc.types.list_of(UserDefinedMonitors),
|
|
50296
|
+
graphql_name="monitorTypes",
|
|
50297
|
+
default=None,
|
|
50298
|
+
),
|
|
50299
|
+
),
|
|
50300
|
+
(
|
|
50301
|
+
"status_types",
|
|
50302
|
+
sgqlc.types.Arg(
|
|
50303
|
+
sgqlc.types.list_of(MonitorStatusType),
|
|
50304
|
+
graphql_name="statusTypes",
|
|
50305
|
+
default=None,
|
|
50306
|
+
),
|
|
50307
|
+
),
|
|
50308
|
+
(
|
|
50309
|
+
"consolidated_status_types",
|
|
50310
|
+
sgqlc.types.Arg(
|
|
50311
|
+
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
50312
|
+
graphql_name="consolidatedStatusTypes",
|
|
50313
|
+
default=None,
|
|
50314
|
+
),
|
|
50315
|
+
),
|
|
50316
|
+
(
|
|
50317
|
+
"description_field_or_table",
|
|
50318
|
+
sgqlc.types.Arg(
|
|
50319
|
+
sgqlc.types.list_of(String),
|
|
50320
|
+
graphql_name="descriptionFieldOrTable",
|
|
50321
|
+
default=None,
|
|
50322
|
+
),
|
|
50323
|
+
),
|
|
50324
|
+
(
|
|
50325
|
+
"created_by",
|
|
50326
|
+
sgqlc.types.Arg(
|
|
50327
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50328
|
+
graphql_name="createdBy",
|
|
50329
|
+
default=None,
|
|
50330
|
+
),
|
|
50331
|
+
),
|
|
50332
|
+
(
|
|
50333
|
+
"updated_by",
|
|
50334
|
+
sgqlc.types.Arg(
|
|
50335
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50336
|
+
graphql_name="updatedBy",
|
|
50337
|
+
default=None,
|
|
50338
|
+
),
|
|
50339
|
+
),
|
|
50340
|
+
(
|
|
50341
|
+
"priorities",
|
|
50342
|
+
sgqlc.types.Arg(
|
|
50343
|
+
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
50344
|
+
),
|
|
50345
|
+
),
|
|
50346
|
+
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
50347
|
+
(
|
|
50348
|
+
"domain_ids",
|
|
50349
|
+
sgqlc.types.Arg(
|
|
50350
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50351
|
+
graphql_name="domainIds",
|
|
50352
|
+
default=None,
|
|
50353
|
+
),
|
|
50354
|
+
),
|
|
50355
|
+
(
|
|
50356
|
+
"uuids",
|
|
50357
|
+
sgqlc.types.Arg(
|
|
50358
|
+
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
50359
|
+
),
|
|
50360
|
+
),
|
|
50361
|
+
(
|
|
50362
|
+
"created_by_filters",
|
|
50363
|
+
sgqlc.types.Arg(
|
|
50364
|
+
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
50365
|
+
),
|
|
50366
|
+
),
|
|
50367
|
+
(
|
|
50368
|
+
"labels",
|
|
50369
|
+
sgqlc.types.Arg(
|
|
50370
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
50371
|
+
),
|
|
50372
|
+
),
|
|
50373
|
+
(
|
|
50374
|
+
"search",
|
|
50375
|
+
sgqlc.types.Arg(
|
|
50376
|
+
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
50377
|
+
),
|
|
50378
|
+
),
|
|
50379
|
+
(
|
|
50380
|
+
"search_fields",
|
|
50381
|
+
sgqlc.types.Arg(
|
|
50382
|
+
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
50383
|
+
graphql_name="searchFields",
|
|
50384
|
+
default=None,
|
|
50385
|
+
),
|
|
50386
|
+
),
|
|
50387
|
+
(
|
|
50388
|
+
"namespaces",
|
|
50389
|
+
sgqlc.types.Arg(
|
|
50390
|
+
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
50391
|
+
),
|
|
50392
|
+
),
|
|
50393
|
+
(
|
|
50394
|
+
"is_template_managed",
|
|
50395
|
+
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
50396
|
+
),
|
|
50397
|
+
(
|
|
50398
|
+
"is_ootb_replacement",
|
|
50399
|
+
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
50400
|
+
),
|
|
50401
|
+
(
|
|
50402
|
+
"include_ootb_monitors",
|
|
50403
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
50404
|
+
),
|
|
50405
|
+
(
|
|
50406
|
+
"include_ootb_replacement",
|
|
50407
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
50408
|
+
),
|
|
50409
|
+
(
|
|
50410
|
+
"mcons",
|
|
50411
|
+
sgqlc.types.Arg(
|
|
50412
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
50413
|
+
),
|
|
50414
|
+
),
|
|
50415
|
+
(
|
|
50416
|
+
"exclude_mcons",
|
|
50417
|
+
sgqlc.types.Arg(
|
|
50418
|
+
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
50419
|
+
),
|
|
50420
|
+
),
|
|
50421
|
+
(
|
|
50422
|
+
"alerted_only",
|
|
50423
|
+
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
50424
|
+
),
|
|
50425
|
+
(
|
|
50426
|
+
"tags",
|
|
50427
|
+
sgqlc.types.Arg(
|
|
50428
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
50429
|
+
),
|
|
50430
|
+
),
|
|
50431
|
+
(
|
|
50432
|
+
"asset_tags",
|
|
50433
|
+
sgqlc.types.Arg(
|
|
50434
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50435
|
+
graphql_name="assetTags",
|
|
50436
|
+
default=None,
|
|
50437
|
+
),
|
|
50438
|
+
),
|
|
50439
|
+
(
|
|
50440
|
+
"exclude_asset_tags",
|
|
50441
|
+
sgqlc.types.Arg(
|
|
50442
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50443
|
+
graphql_name="excludeAssetTags",
|
|
50444
|
+
default=None,
|
|
50445
|
+
),
|
|
50446
|
+
),
|
|
50447
|
+
(
|
|
50448
|
+
"data_quality_dimensions",
|
|
50449
|
+
sgqlc.types.Arg(
|
|
50450
|
+
sgqlc.types.list_of(String),
|
|
50451
|
+
graphql_name="dataQualityDimensions",
|
|
50452
|
+
default=None,
|
|
50453
|
+
),
|
|
50454
|
+
),
|
|
50455
|
+
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
50456
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
50457
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
50458
|
+
)
|
|
50459
|
+
),
|
|
50460
|
+
)
|
|
50461
|
+
"""(experimental) List of monitor projects
|
|
50462
|
+
|
|
50463
|
+
Arguments:
|
|
50464
|
+
|
|
50465
|
+
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
50466
|
+
filter by, default all
|
|
50467
|
+
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
50468
|
+
to filter by, default all
|
|
50469
|
+
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
50470
|
+
Type of consolidated monitor status to filter by, default all
|
|
50471
|
+
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
50472
|
+
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
50473
|
+
user emails
|
|
50474
|
+
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
50475
|
+
user emails
|
|
50476
|
+
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
50477
|
+
null to include monitors without a priority set
|
|
50478
|
+
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
50479
|
+
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
50480
|
+
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
50481
|
+
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
50482
|
+
* `labels` (`[String]`): List of labels to filter by
|
|
50483
|
+
* `search` (`[String]`): Search criteria for filtering the
|
|
50484
|
+
monitors list
|
|
50485
|
+
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
50486
|
+
fields to include during search
|
|
50487
|
+
* `namespaces` (`[String]`): filter by namespaces
|
|
50488
|
+
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
50489
|
+
code
|
|
50490
|
+
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
50491
|
+
a default ootb detector (default: `false`)
|
|
50492
|
+
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
50493
|
+
monitors will be returned. They will be the first few monitors
|
|
50494
|
+
in the first page of the results (default: `false`)
|
|
50495
|
+
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
50496
|
+
is_ootb_replacement is not specified or false, ootb_replacement
|
|
50497
|
+
monitors will be included in result (default: `false`)
|
|
50498
|
+
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
50499
|
+
or tables (MCON)
|
|
50500
|
+
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
50501
|
+
these warehouses, projects, datasets, or tables (MCON)
|
|
50502
|
+
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
50503
|
+
only the ones that are breached.
|
|
50504
|
+
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50505
|
+
can include null to include monitors without tags
|
|
50506
|
+
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50507
|
+
Returns monitors with at least one linked table that has any of
|
|
50508
|
+
the provided tags
|
|
50509
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
50510
|
+
monitors that have any linked table whose tags consist only of
|
|
50511
|
+
the provided tags. Tables with additional tags or no tags are
|
|
50512
|
+
included
|
|
50513
|
+
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50514
|
+
dimensions
|
|
50515
|
+
* `order_by` (`String`): Field and direction to order monitors by
|
|
50516
|
+
* `limit` (`Int`): Number of monitors to return
|
|
50517
|
+
* `offset` (`Int`): From which monitor to return the next results
|
|
50518
|
+
"""
|
|
50519
|
+
|
|
50520
|
+
get_monitor_datasets = sgqlc.types.Field(
|
|
50521
|
+
sgqlc.types.list_of(sgqlc.types.non_null(MonitorDataset)),
|
|
50522
|
+
graphql_name="getMonitorDatasets",
|
|
50523
|
+
args=sgqlc.types.ArgDict(
|
|
50524
|
+
(
|
|
50525
|
+
(
|
|
50526
|
+
"monitor_types",
|
|
50527
|
+
sgqlc.types.Arg(
|
|
50528
|
+
sgqlc.types.list_of(UserDefinedMonitors),
|
|
50529
|
+
graphql_name="monitorTypes",
|
|
50530
|
+
default=None,
|
|
50531
|
+
),
|
|
50532
|
+
),
|
|
50533
|
+
(
|
|
50534
|
+
"status_types",
|
|
50535
|
+
sgqlc.types.Arg(
|
|
50536
|
+
sgqlc.types.list_of(MonitorStatusType),
|
|
50537
|
+
graphql_name="statusTypes",
|
|
50538
|
+
default=None,
|
|
50539
|
+
),
|
|
50540
|
+
),
|
|
50541
|
+
(
|
|
50542
|
+
"consolidated_status_types",
|
|
50543
|
+
sgqlc.types.Arg(
|
|
50544
|
+
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
50545
|
+
graphql_name="consolidatedStatusTypes",
|
|
50546
|
+
default=None,
|
|
50547
|
+
),
|
|
50548
|
+
),
|
|
50549
|
+
(
|
|
50550
|
+
"description_field_or_table",
|
|
50551
|
+
sgqlc.types.Arg(
|
|
50552
|
+
sgqlc.types.list_of(String),
|
|
50553
|
+
graphql_name="descriptionFieldOrTable",
|
|
50554
|
+
default=None,
|
|
50555
|
+
),
|
|
50556
|
+
),
|
|
50557
|
+
(
|
|
50558
|
+
"created_by",
|
|
50559
|
+
sgqlc.types.Arg(
|
|
50560
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50561
|
+
graphql_name="createdBy",
|
|
50562
|
+
default=None,
|
|
50563
|
+
),
|
|
50564
|
+
),
|
|
50565
|
+
(
|
|
50566
|
+
"updated_by",
|
|
50567
|
+
sgqlc.types.Arg(
|
|
50568
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50569
|
+
graphql_name="updatedBy",
|
|
50570
|
+
default=None,
|
|
50571
|
+
),
|
|
50572
|
+
),
|
|
50573
|
+
(
|
|
50574
|
+
"priorities",
|
|
50575
|
+
sgqlc.types.Arg(
|
|
50576
|
+
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
50577
|
+
),
|
|
50578
|
+
),
|
|
50579
|
+
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
50580
|
+
(
|
|
50581
|
+
"domain_ids",
|
|
50582
|
+
sgqlc.types.Arg(
|
|
50583
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50584
|
+
graphql_name="domainIds",
|
|
50585
|
+
default=None,
|
|
50586
|
+
),
|
|
50587
|
+
),
|
|
50588
|
+
(
|
|
50589
|
+
"uuids",
|
|
50590
|
+
sgqlc.types.Arg(
|
|
50591
|
+
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
50592
|
+
),
|
|
50593
|
+
),
|
|
50594
|
+
(
|
|
50595
|
+
"created_by_filters",
|
|
50596
|
+
sgqlc.types.Arg(
|
|
50597
|
+
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
50598
|
+
),
|
|
50599
|
+
),
|
|
50600
|
+
(
|
|
50601
|
+
"labels",
|
|
50602
|
+
sgqlc.types.Arg(
|
|
50603
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
50604
|
+
),
|
|
50605
|
+
),
|
|
50606
|
+
(
|
|
50607
|
+
"search",
|
|
50608
|
+
sgqlc.types.Arg(
|
|
50609
|
+
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
50610
|
+
),
|
|
50611
|
+
),
|
|
50612
|
+
(
|
|
50613
|
+
"search_fields",
|
|
50614
|
+
sgqlc.types.Arg(
|
|
50615
|
+
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
50616
|
+
graphql_name="searchFields",
|
|
50617
|
+
default=None,
|
|
50618
|
+
),
|
|
50619
|
+
),
|
|
50620
|
+
(
|
|
50621
|
+
"namespaces",
|
|
50622
|
+
sgqlc.types.Arg(
|
|
50623
|
+
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
50624
|
+
),
|
|
50625
|
+
),
|
|
50626
|
+
(
|
|
50627
|
+
"is_template_managed",
|
|
50628
|
+
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
50629
|
+
),
|
|
50630
|
+
(
|
|
50631
|
+
"is_ootb_replacement",
|
|
50632
|
+
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
50633
|
+
),
|
|
50634
|
+
(
|
|
50635
|
+
"include_ootb_monitors",
|
|
50636
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
50637
|
+
),
|
|
50638
|
+
(
|
|
50639
|
+
"include_ootb_replacement",
|
|
50640
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
50641
|
+
),
|
|
50642
|
+
(
|
|
50643
|
+
"mcons",
|
|
50644
|
+
sgqlc.types.Arg(
|
|
50645
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
50646
|
+
),
|
|
50647
|
+
),
|
|
50648
|
+
(
|
|
50649
|
+
"exclude_mcons",
|
|
50650
|
+
sgqlc.types.Arg(
|
|
50651
|
+
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
50652
|
+
),
|
|
50653
|
+
),
|
|
50654
|
+
(
|
|
50655
|
+
"alerted_only",
|
|
50656
|
+
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
50657
|
+
),
|
|
50658
|
+
(
|
|
50659
|
+
"tags",
|
|
50660
|
+
sgqlc.types.Arg(
|
|
50661
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
50662
|
+
),
|
|
50663
|
+
),
|
|
50664
|
+
(
|
|
50665
|
+
"asset_tags",
|
|
50666
|
+
sgqlc.types.Arg(
|
|
50667
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50668
|
+
graphql_name="assetTags",
|
|
50669
|
+
default=None,
|
|
50670
|
+
),
|
|
50671
|
+
),
|
|
50672
|
+
(
|
|
50673
|
+
"exclude_asset_tags",
|
|
50674
|
+
sgqlc.types.Arg(
|
|
50675
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50676
|
+
graphql_name="excludeAssetTags",
|
|
50677
|
+
default=None,
|
|
50678
|
+
),
|
|
50679
|
+
),
|
|
50680
|
+
(
|
|
50681
|
+
"data_quality_dimensions",
|
|
50682
|
+
sgqlc.types.Arg(
|
|
50683
|
+
sgqlc.types.list_of(String),
|
|
50684
|
+
graphql_name="dataQualityDimensions",
|
|
50685
|
+
default=None,
|
|
50686
|
+
),
|
|
50687
|
+
),
|
|
50688
|
+
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
50689
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
50690
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
50691
|
+
)
|
|
50692
|
+
),
|
|
50693
|
+
)
|
|
50694
|
+
"""(experimental) List of monitor datasets
|
|
50695
|
+
|
|
50696
|
+
Arguments:
|
|
50697
|
+
|
|
50698
|
+
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
50699
|
+
filter by, default all
|
|
50700
|
+
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
50701
|
+
to filter by, default all
|
|
50702
|
+
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
50703
|
+
Type of consolidated monitor status to filter by, default all
|
|
50704
|
+
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
50705
|
+
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
50706
|
+
user emails
|
|
50707
|
+
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
50708
|
+
user emails
|
|
50709
|
+
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
50710
|
+
null to include monitors without a priority set
|
|
50711
|
+
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
50712
|
+
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
50713
|
+
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
50714
|
+
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
50715
|
+
* `labels` (`[String]`): List of labels to filter by
|
|
50716
|
+
* `search` (`[String]`): Search criteria for filtering the
|
|
50717
|
+
monitors list
|
|
50718
|
+
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
50719
|
+
fields to include during search
|
|
50720
|
+
* `namespaces` (`[String]`): filter by namespaces
|
|
50721
|
+
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
50722
|
+
code
|
|
50723
|
+
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
50724
|
+
a default ootb detector (default: `false`)
|
|
50725
|
+
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
50726
|
+
monitors will be returned. They will be the first few monitors
|
|
50727
|
+
in the first page of the results (default: `false`)
|
|
50728
|
+
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
50729
|
+
is_ootb_replacement is not specified or false, ootb_replacement
|
|
50730
|
+
monitors will be included in result (default: `false`)
|
|
50731
|
+
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
50732
|
+
or tables (MCON)
|
|
50733
|
+
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
50734
|
+
these warehouses, projects, datasets, or tables (MCON)
|
|
50735
|
+
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
50736
|
+
only the ones that are breached.
|
|
50737
|
+
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50738
|
+
can include null to include monitors without tags
|
|
50739
|
+
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50740
|
+
Returns monitors with at least one linked table that has any of
|
|
50741
|
+
the provided tags
|
|
50742
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
50743
|
+
monitors that have any linked table whose tags consist only of
|
|
50744
|
+
the provided tags. Tables with additional tags or no tags are
|
|
50745
|
+
included
|
|
50746
|
+
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50747
|
+
dimensions
|
|
50748
|
+
* `order_by` (`String`): Field and direction to order monitors by
|
|
50749
|
+
* `limit` (`Int`): Number of monitors to return
|
|
50750
|
+
* `offset` (`Int`): From which monitor to return the next results
|
|
50751
|
+
"""
|
|
50752
|
+
|
|
50753
|
+
get_monitor_tables = sgqlc.types.Field(
|
|
50754
|
+
sgqlc.types.list_of(sgqlc.types.non_null(MonitorTable)),
|
|
50755
|
+
graphql_name="getMonitorTables",
|
|
50756
|
+
args=sgqlc.types.ArgDict(
|
|
50757
|
+
(
|
|
50758
|
+
(
|
|
50759
|
+
"monitor_types",
|
|
50760
|
+
sgqlc.types.Arg(
|
|
50761
|
+
sgqlc.types.list_of(UserDefinedMonitors),
|
|
50762
|
+
graphql_name="monitorTypes",
|
|
50763
|
+
default=None,
|
|
50764
|
+
),
|
|
50765
|
+
),
|
|
50766
|
+
(
|
|
50767
|
+
"status_types",
|
|
50768
|
+
sgqlc.types.Arg(
|
|
50769
|
+
sgqlc.types.list_of(MonitorStatusType),
|
|
50770
|
+
graphql_name="statusTypes",
|
|
50771
|
+
default=None,
|
|
50772
|
+
),
|
|
50773
|
+
),
|
|
50774
|
+
(
|
|
50775
|
+
"consolidated_status_types",
|
|
50776
|
+
sgqlc.types.Arg(
|
|
50777
|
+
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
50778
|
+
graphql_name="consolidatedStatusTypes",
|
|
50779
|
+
default=None,
|
|
50780
|
+
),
|
|
50781
|
+
),
|
|
50782
|
+
(
|
|
50783
|
+
"description_field_or_table",
|
|
50784
|
+
sgqlc.types.Arg(
|
|
50785
|
+
sgqlc.types.list_of(String),
|
|
50786
|
+
graphql_name="descriptionFieldOrTable",
|
|
50787
|
+
default=None,
|
|
50788
|
+
),
|
|
50789
|
+
),
|
|
50790
|
+
(
|
|
50791
|
+
"created_by",
|
|
50792
|
+
sgqlc.types.Arg(
|
|
50793
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50794
|
+
graphql_name="createdBy",
|
|
50795
|
+
default=None,
|
|
50796
|
+
),
|
|
50797
|
+
),
|
|
50798
|
+
(
|
|
50799
|
+
"updated_by",
|
|
50800
|
+
sgqlc.types.Arg(
|
|
50801
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50802
|
+
graphql_name="updatedBy",
|
|
50803
|
+
default=None,
|
|
50804
|
+
),
|
|
50805
|
+
),
|
|
50806
|
+
(
|
|
50807
|
+
"priorities",
|
|
50808
|
+
sgqlc.types.Arg(
|
|
50809
|
+
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
50810
|
+
),
|
|
50811
|
+
),
|
|
50812
|
+
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
50813
|
+
(
|
|
50814
|
+
"domain_ids",
|
|
50815
|
+
sgqlc.types.Arg(
|
|
50816
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50817
|
+
graphql_name="domainIds",
|
|
50818
|
+
default=None,
|
|
50819
|
+
),
|
|
50820
|
+
),
|
|
50821
|
+
(
|
|
50822
|
+
"uuids",
|
|
50823
|
+
sgqlc.types.Arg(
|
|
50824
|
+
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
50825
|
+
),
|
|
50826
|
+
),
|
|
50827
|
+
(
|
|
50828
|
+
"created_by_filters",
|
|
50829
|
+
sgqlc.types.Arg(
|
|
50830
|
+
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
50831
|
+
),
|
|
50832
|
+
),
|
|
50833
|
+
(
|
|
50834
|
+
"labels",
|
|
50835
|
+
sgqlc.types.Arg(
|
|
50836
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
50837
|
+
),
|
|
50838
|
+
),
|
|
50839
|
+
(
|
|
50840
|
+
"search",
|
|
50841
|
+
sgqlc.types.Arg(
|
|
50842
|
+
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
50843
|
+
),
|
|
50844
|
+
),
|
|
50845
|
+
(
|
|
50846
|
+
"search_fields",
|
|
50847
|
+
sgqlc.types.Arg(
|
|
50848
|
+
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
50849
|
+
graphql_name="searchFields",
|
|
50850
|
+
default=None,
|
|
50851
|
+
),
|
|
50852
|
+
),
|
|
50853
|
+
(
|
|
50854
|
+
"namespaces",
|
|
50855
|
+
sgqlc.types.Arg(
|
|
50856
|
+
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
50857
|
+
),
|
|
50858
|
+
),
|
|
50859
|
+
(
|
|
50860
|
+
"is_template_managed",
|
|
50861
|
+
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
50862
|
+
),
|
|
50863
|
+
(
|
|
50864
|
+
"is_ootb_replacement",
|
|
50865
|
+
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
50866
|
+
),
|
|
50867
|
+
(
|
|
50868
|
+
"include_ootb_monitors",
|
|
50869
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
50870
|
+
),
|
|
50871
|
+
(
|
|
50872
|
+
"include_ootb_replacement",
|
|
50873
|
+
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
50874
|
+
),
|
|
50875
|
+
(
|
|
50876
|
+
"mcons",
|
|
50877
|
+
sgqlc.types.Arg(
|
|
50878
|
+
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
50879
|
+
),
|
|
50880
|
+
),
|
|
50881
|
+
(
|
|
50882
|
+
"exclude_mcons",
|
|
50883
|
+
sgqlc.types.Arg(
|
|
50884
|
+
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
50885
|
+
),
|
|
50886
|
+
),
|
|
50887
|
+
(
|
|
50888
|
+
"alerted_only",
|
|
50889
|
+
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
50890
|
+
),
|
|
50891
|
+
(
|
|
50892
|
+
"tags",
|
|
50893
|
+
sgqlc.types.Arg(
|
|
50894
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
50895
|
+
),
|
|
50896
|
+
),
|
|
50897
|
+
(
|
|
50898
|
+
"asset_tags",
|
|
50899
|
+
sgqlc.types.Arg(
|
|
50900
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50901
|
+
graphql_name="assetTags",
|
|
50902
|
+
default=None,
|
|
50903
|
+
),
|
|
50904
|
+
),
|
|
50905
|
+
(
|
|
50906
|
+
"exclude_asset_tags",
|
|
50907
|
+
sgqlc.types.Arg(
|
|
50908
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50909
|
+
graphql_name="excludeAssetTags",
|
|
50910
|
+
default=None,
|
|
50911
|
+
),
|
|
50912
|
+
),
|
|
50913
|
+
(
|
|
50914
|
+
"data_quality_dimensions",
|
|
50915
|
+
sgqlc.types.Arg(
|
|
50916
|
+
sgqlc.types.list_of(String),
|
|
50917
|
+
graphql_name="dataQualityDimensions",
|
|
50918
|
+
default=None,
|
|
50919
|
+
),
|
|
50920
|
+
),
|
|
50921
|
+
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
50922
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
50923
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
50924
|
+
)
|
|
50925
|
+
),
|
|
50926
|
+
)
|
|
50927
|
+
"""(experimental) List of monitor tables
|
|
50928
|
+
|
|
50929
|
+
Arguments:
|
|
50930
|
+
|
|
50931
|
+
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
50932
|
+
filter by, default all
|
|
50933
|
+
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
50934
|
+
to filter by, default all
|
|
50935
|
+
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
50936
|
+
Type of consolidated monitor status to filter by, default all
|
|
50937
|
+
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
50938
|
+
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
50939
|
+
user emails
|
|
50940
|
+
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
50941
|
+
user emails
|
|
50942
|
+
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
50943
|
+
null to include monitors without a priority set
|
|
50944
|
+
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
50945
|
+
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
50946
|
+
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
50947
|
+
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
50948
|
+
* `labels` (`[String]`): List of labels to filter by
|
|
50949
|
+
* `search` (`[String]`): Search criteria for filtering the
|
|
50950
|
+
monitors list
|
|
50951
|
+
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
50952
|
+
fields to include during search
|
|
50953
|
+
* `namespaces` (`[String]`): filter by namespaces
|
|
50954
|
+
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
50955
|
+
code
|
|
50956
|
+
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
50957
|
+
a default ootb detector (default: `false`)
|
|
50958
|
+
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
50959
|
+
monitors will be returned. They will be the first few monitors
|
|
50960
|
+
in the first page of the results (default: `false`)
|
|
50961
|
+
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
50962
|
+
is_ootb_replacement is not specified or false, ootb_replacement
|
|
50963
|
+
monitors will be included in result (default: `false`)
|
|
50964
|
+
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
50965
|
+
or tables (MCON)
|
|
50966
|
+
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
50967
|
+
these warehouses, projects, datasets, or tables (MCON)
|
|
50968
|
+
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
50969
|
+
only the ones that are breached.
|
|
50970
|
+
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50971
|
+
can include null to include monitors without tags
|
|
50972
|
+
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50973
|
+
Returns monitors with at least one linked table that has any of
|
|
49733
50974
|
the provided tags
|
|
50975
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
50976
|
+
monitors that have any linked table whose tags consist only of
|
|
50977
|
+
the provided tags. Tables with additional tags or no tags are
|
|
50978
|
+
included
|
|
49734
50979
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
49735
50980
|
dimensions
|
|
49736
50981
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -49738,9 +50983,9 @@ class Query(sgqlc.types.Type):
|
|
|
49738
50983
|
* `offset` (`Int`): From which monitor to return the next results
|
|
49739
50984
|
"""
|
|
49740
50985
|
|
|
49741
|
-
|
|
49742
|
-
sgqlc.types.list_of(
|
|
49743
|
-
graphql_name="
|
|
50986
|
+
get_monitor_creators = sgqlc.types.Field(
|
|
50987
|
+
sgqlc.types.list_of("User"),
|
|
50988
|
+
graphql_name="getMonitorCreators",
|
|
49744
50989
|
args=sgqlc.types.ArgDict(
|
|
49745
50990
|
(
|
|
49746
50991
|
(
|
|
@@ -49891,223 +51136,10 @@ class Query(sgqlc.types.Type):
|
|
|
49891
51136
|
),
|
|
49892
51137
|
),
|
|
49893
51138
|
(
|
|
49894
|
-
"
|
|
49895
|
-
sgqlc.types.Arg(
|
|
49896
|
-
sgqlc.types.list_of(String),
|
|
49897
|
-
graphql_name="dataQualityDimensions",
|
|
49898
|
-
default=None,
|
|
49899
|
-
),
|
|
49900
|
-
),
|
|
49901
|
-
("order_by", sgqlc.types.Arg(String, graphql_name="orderBy", default=None)),
|
|
49902
|
-
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
49903
|
-
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
49904
|
-
)
|
|
49905
|
-
),
|
|
49906
|
-
)
|
|
49907
|
-
"""(experimental) List of monitor namespaces
|
|
49908
|
-
|
|
49909
|
-
Arguments:
|
|
49910
|
-
|
|
49911
|
-
* `monitor_types` (`[UserDefinedMonitors]`): Type of monitors to
|
|
49912
|
-
filter by, default all
|
|
49913
|
-
* `status_types` (`[MonitorStatusType]`): Type of monitor status
|
|
49914
|
-
to filter by, default all
|
|
49915
|
-
* `consolidated_status_types` (`[ConsolidatedMonitorStatusType]`):
|
|
49916
|
-
Type of consolidated monitor status to filter by, default all
|
|
49917
|
-
* `description_field_or_table` (`[String]`): DEPRECATED
|
|
49918
|
-
* `created_by` (`[String!]`): Filter by creator using a list of
|
|
49919
|
-
user emails
|
|
49920
|
-
* `updated_by` (`[String!]`): Filter by updater using a list of
|
|
49921
|
-
user emails
|
|
49922
|
-
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
49923
|
-
null to include monitors without a priority set
|
|
49924
|
-
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
49925
|
-
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
49926
|
-
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
49927
|
-
* `created_by_filters` (`CreatedByFilters`): Deprecated
|
|
49928
|
-
* `labels` (`[String]`): List of labels to filter by
|
|
49929
|
-
* `search` (`[String]`): Search criteria for filtering the
|
|
49930
|
-
monitors list
|
|
49931
|
-
* `search_fields` (`[UserDefinedMonitorSearchFields]`): Which
|
|
49932
|
-
fields to include during search
|
|
49933
|
-
* `namespaces` (`[String]`): filter by namespaces
|
|
49934
|
-
* `is_template_managed` (`Boolean`): Filter monitors created by
|
|
49935
|
-
code
|
|
49936
|
-
* `is_ootb_replacement` (`Boolean`): Filter monitors which replace
|
|
49937
|
-
a default ootb detector (default: `false`)
|
|
49938
|
-
* `include_ootb_monitors` (`Boolean`): If set to true, OOTB
|
|
49939
|
-
monitors will be returned. They will be the first few monitors
|
|
49940
|
-
in the first page of the results (default: `false`)
|
|
49941
|
-
* `include_ootb_replacement` (`Boolean`): If set to true and
|
|
49942
|
-
is_ootb_replacement is not specified or false, ootb_replacement
|
|
49943
|
-
monitors will be included in result (default: `false`)
|
|
49944
|
-
* `mcons` (`[String]`): Filter by warehouses, projects, datasets,
|
|
49945
|
-
or tables (MCON)
|
|
49946
|
-
* `exclude_mcons` (`[String]`): Exclude monitors associated with
|
|
49947
|
-
these warehouses, projects, datasets, or tables (MCON)
|
|
49948
|
-
* `alerted_only` (`Boolean`): EXPERIMENTAL. Filter monitors to
|
|
49949
|
-
only the ones that are breached.
|
|
49950
|
-
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
49951
|
-
can include null to include monitors without tags
|
|
49952
|
-
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
49953
|
-
Returns monitors that have at least 1 linked table with all of
|
|
49954
|
-
the provided tags
|
|
49955
|
-
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
49956
|
-
dimensions
|
|
49957
|
-
* `order_by` (`String`): Field and direction to order monitors by
|
|
49958
|
-
* `limit` (`Int`): Number of monitors to return
|
|
49959
|
-
* `offset` (`Int`): From which monitor to return the next results
|
|
49960
|
-
"""
|
|
49961
|
-
|
|
49962
|
-
get_monitor_creators = sgqlc.types.Field(
|
|
49963
|
-
sgqlc.types.list_of("User"),
|
|
49964
|
-
graphql_name="getMonitorCreators",
|
|
49965
|
-
args=sgqlc.types.ArgDict(
|
|
49966
|
-
(
|
|
49967
|
-
(
|
|
49968
|
-
"monitor_types",
|
|
49969
|
-
sgqlc.types.Arg(
|
|
49970
|
-
sgqlc.types.list_of(UserDefinedMonitors),
|
|
49971
|
-
graphql_name="monitorTypes",
|
|
49972
|
-
default=None,
|
|
49973
|
-
),
|
|
49974
|
-
),
|
|
49975
|
-
(
|
|
49976
|
-
"status_types",
|
|
49977
|
-
sgqlc.types.Arg(
|
|
49978
|
-
sgqlc.types.list_of(MonitorStatusType),
|
|
49979
|
-
graphql_name="statusTypes",
|
|
49980
|
-
default=None,
|
|
49981
|
-
),
|
|
49982
|
-
),
|
|
49983
|
-
(
|
|
49984
|
-
"consolidated_status_types",
|
|
49985
|
-
sgqlc.types.Arg(
|
|
49986
|
-
sgqlc.types.list_of(ConsolidatedMonitorStatusType),
|
|
49987
|
-
graphql_name="consolidatedStatusTypes",
|
|
49988
|
-
default=None,
|
|
49989
|
-
),
|
|
49990
|
-
),
|
|
49991
|
-
(
|
|
49992
|
-
"description_field_or_table",
|
|
49993
|
-
sgqlc.types.Arg(
|
|
49994
|
-
sgqlc.types.list_of(String),
|
|
49995
|
-
graphql_name="descriptionFieldOrTable",
|
|
49996
|
-
default=None,
|
|
49997
|
-
),
|
|
49998
|
-
),
|
|
49999
|
-
(
|
|
50000
|
-
"created_by",
|
|
50001
|
-
sgqlc.types.Arg(
|
|
50002
|
-
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50003
|
-
graphql_name="createdBy",
|
|
50004
|
-
default=None,
|
|
50005
|
-
),
|
|
50006
|
-
),
|
|
50007
|
-
(
|
|
50008
|
-
"updated_by",
|
|
50009
|
-
sgqlc.types.Arg(
|
|
50010
|
-
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
50011
|
-
graphql_name="updatedBy",
|
|
50012
|
-
default=None,
|
|
50013
|
-
),
|
|
50014
|
-
),
|
|
50015
|
-
(
|
|
50016
|
-
"priorities",
|
|
50017
|
-
sgqlc.types.Arg(
|
|
50018
|
-
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
50019
|
-
),
|
|
50020
|
-
),
|
|
50021
|
-
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
50022
|
-
(
|
|
50023
|
-
"domain_ids",
|
|
50024
|
-
sgqlc.types.Arg(
|
|
50025
|
-
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
50026
|
-
graphql_name="domainIds",
|
|
50027
|
-
default=None,
|
|
50028
|
-
),
|
|
50029
|
-
),
|
|
50030
|
-
(
|
|
50031
|
-
"uuids",
|
|
50032
|
-
sgqlc.types.Arg(
|
|
50033
|
-
sgqlc.types.list_of(String), graphql_name="uuids", default=None
|
|
50034
|
-
),
|
|
50035
|
-
),
|
|
50036
|
-
(
|
|
50037
|
-
"created_by_filters",
|
|
50038
|
-
sgqlc.types.Arg(
|
|
50039
|
-
CreatedByFilters, graphql_name="createdByFilters", default=None
|
|
50040
|
-
),
|
|
50041
|
-
),
|
|
50042
|
-
(
|
|
50043
|
-
"labels",
|
|
50044
|
-
sgqlc.types.Arg(
|
|
50045
|
-
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
50046
|
-
),
|
|
50047
|
-
),
|
|
50048
|
-
(
|
|
50049
|
-
"search",
|
|
50050
|
-
sgqlc.types.Arg(
|
|
50051
|
-
sgqlc.types.list_of(String), graphql_name="search", default=None
|
|
50052
|
-
),
|
|
50053
|
-
),
|
|
50054
|
-
(
|
|
50055
|
-
"search_fields",
|
|
50056
|
-
sgqlc.types.Arg(
|
|
50057
|
-
sgqlc.types.list_of(UserDefinedMonitorSearchFields),
|
|
50058
|
-
graphql_name="searchFields",
|
|
50059
|
-
default=None,
|
|
50060
|
-
),
|
|
50061
|
-
),
|
|
50062
|
-
(
|
|
50063
|
-
"namespaces",
|
|
50064
|
-
sgqlc.types.Arg(
|
|
50065
|
-
sgqlc.types.list_of(String), graphql_name="namespaces", default=None
|
|
50066
|
-
),
|
|
50067
|
-
),
|
|
50068
|
-
(
|
|
50069
|
-
"is_template_managed",
|
|
50070
|
-
sgqlc.types.Arg(Boolean, graphql_name="isTemplateManaged", default=None),
|
|
50071
|
-
),
|
|
50072
|
-
(
|
|
50073
|
-
"is_ootb_replacement",
|
|
50074
|
-
sgqlc.types.Arg(Boolean, graphql_name="isOotbReplacement", default=False),
|
|
50075
|
-
),
|
|
50076
|
-
(
|
|
50077
|
-
"include_ootb_monitors",
|
|
50078
|
-
sgqlc.types.Arg(Boolean, graphql_name="includeOotbMonitors", default=False),
|
|
50079
|
-
),
|
|
50080
|
-
(
|
|
50081
|
-
"include_ootb_replacement",
|
|
50082
|
-
sgqlc.types.Arg(Boolean, graphql_name="includeOotbReplacement", default=False),
|
|
50083
|
-
),
|
|
50084
|
-
(
|
|
50085
|
-
"mcons",
|
|
50086
|
-
sgqlc.types.Arg(
|
|
50087
|
-
sgqlc.types.list_of(String), graphql_name="mcons", default=None
|
|
50088
|
-
),
|
|
50089
|
-
),
|
|
50090
|
-
(
|
|
50091
|
-
"exclude_mcons",
|
|
50092
|
-
sgqlc.types.Arg(
|
|
50093
|
-
sgqlc.types.list_of(String), graphql_name="excludeMcons", default=None
|
|
50094
|
-
),
|
|
50095
|
-
),
|
|
50096
|
-
(
|
|
50097
|
-
"alerted_only",
|
|
50098
|
-
sgqlc.types.Arg(Boolean, graphql_name="alertedOnly", default=None),
|
|
50099
|
-
),
|
|
50100
|
-
(
|
|
50101
|
-
"tags",
|
|
50102
|
-
sgqlc.types.Arg(
|
|
50103
|
-
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
50104
|
-
),
|
|
50105
|
-
),
|
|
50106
|
-
(
|
|
50107
|
-
"asset_tags",
|
|
51139
|
+
"exclude_asset_tags",
|
|
50108
51140
|
sgqlc.types.Arg(
|
|
50109
51141
|
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
50110
|
-
graphql_name="
|
|
51142
|
+
graphql_name="excludeAssetTags",
|
|
50111
51143
|
default=None,
|
|
50112
51144
|
),
|
|
50113
51145
|
),
|
|
@@ -50171,8 +51203,12 @@ class Query(sgqlc.types.Type):
|
|
|
50171
51203
|
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50172
51204
|
can include null to include monitors without tags
|
|
50173
51205
|
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50174
|
-
Returns monitors
|
|
51206
|
+
Returns monitors with at least one linked table that has any of
|
|
50175
51207
|
the provided tags
|
|
51208
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
51209
|
+
monitors that have any linked table whose tags consist only of
|
|
51210
|
+
the provided tags. Tables with additional tags or no tags are
|
|
51211
|
+
included
|
|
50176
51212
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50177
51213
|
dimensions
|
|
50178
51214
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -50332,6 +51368,14 @@ class Query(sgqlc.types.Type):
|
|
|
50332
51368
|
default=None,
|
|
50333
51369
|
),
|
|
50334
51370
|
),
|
|
51371
|
+
(
|
|
51372
|
+
"exclude_asset_tags",
|
|
51373
|
+
sgqlc.types.Arg(
|
|
51374
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TagKeyValuePairInput)),
|
|
51375
|
+
graphql_name="excludeAssetTags",
|
|
51376
|
+
default=None,
|
|
51377
|
+
),
|
|
51378
|
+
),
|
|
50335
51379
|
(
|
|
50336
51380
|
"data_quality_dimensions",
|
|
50337
51381
|
sgqlc.types.Arg(
|
|
@@ -50392,8 +51436,12 @@ class Query(sgqlc.types.Type):
|
|
|
50392
51436
|
* `tags` (`[TagKeyValuePairInput]`): Filter by monitor tags. It
|
|
50393
51437
|
can include null to include monitors without tags
|
|
50394
51438
|
* `asset_tags` (`[TagKeyValuePairInput!]`): Filter by asset tags.
|
|
50395
|
-
Returns monitors
|
|
51439
|
+
Returns monitors with at least one linked table that has any of
|
|
50396
51440
|
the provided tags
|
|
51441
|
+
* `exclude_asset_tags` (`[TagKeyValuePairInput!]`): Exclude
|
|
51442
|
+
monitors that have any linked table whose tags consist only of
|
|
51443
|
+
the provided tags. Tables with additional tags or no tags are
|
|
51444
|
+
included
|
|
50397
51445
|
* `data_quality_dimensions` (`[String]`): Filter by data quality
|
|
50398
51446
|
dimensions
|
|
50399
51447
|
* `order_by` (`String`): Field and direction to order monitors by
|
|
@@ -74588,7 +75636,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
74588
75636
|
"node_id",
|
|
74589
75637
|
"is_partial_date_range",
|
|
74590
75638
|
"freshness",
|
|
74591
|
-
"maintenance_windows",
|
|
74592
75639
|
"freshness_collection_status",
|
|
74593
75640
|
"volume_collection_status",
|
|
74594
75641
|
"is_muted",
|
|
@@ -75049,51 +76096,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
75049
76096
|
* `end_time` (`DateTime`)None
|
|
75050
76097
|
"""
|
|
75051
76098
|
|
|
75052
|
-
maintenance_windows = sgqlc.types.Field(
|
|
75053
|
-
sgqlc.types.list_of(MaintenanceWindow),
|
|
75054
|
-
graphql_name="maintenanceWindows",
|
|
75055
|
-
args=sgqlc.types.ArgDict(
|
|
75056
|
-
(
|
|
75057
|
-
(
|
|
75058
|
-
"start_time",
|
|
75059
|
-
sgqlc.types.Arg(
|
|
75060
|
-
sgqlc.types.non_null(DateTime), graphql_name="startTime", default=None
|
|
75061
|
-
),
|
|
75062
|
-
),
|
|
75063
|
-
(
|
|
75064
|
-
"end_time",
|
|
75065
|
-
sgqlc.types.Arg(
|
|
75066
|
-
sgqlc.types.non_null(DateTime), graphql_name="endTime", default=None
|
|
75067
|
-
),
|
|
75068
|
-
),
|
|
75069
|
-
(
|
|
75070
|
-
"mcon",
|
|
75071
|
-
sgqlc.types.Arg(
|
|
75072
|
-
sgqlc.types.non_null(String), graphql_name="mcon", default=None
|
|
75073
|
-
),
|
|
75074
|
-
),
|
|
75075
|
-
(
|
|
75076
|
-
"metric_type",
|
|
75077
|
-
sgqlc.types.Arg(
|
|
75078
|
-
sgqlc.types.non_null(DataMaintenanceMetric),
|
|
75079
|
-
graphql_name="metricType",
|
|
75080
|
-
default=None,
|
|
75081
|
-
),
|
|
75082
|
-
),
|
|
75083
|
-
)
|
|
75084
|
-
),
|
|
75085
|
-
)
|
|
75086
|
-
"""List of exclusion windows. No anomalies will be created during
|
|
75087
|
-
these periods and data points will be ignored for training.
|
|
75088
|
-
|
|
75089
|
-
Arguments:
|
|
75090
|
-
|
|
75091
|
-
* `start_time` (`DateTime!`): Start time of maintenance period
|
|
75092
|
-
* `end_time` (`DateTime!`): End time of maintenance period
|
|
75093
|
-
* `mcon` (`String!`): MC object identifier
|
|
75094
|
-
* `metric_type` (`DataMaintenanceMetric!`)None
|
|
75095
|
-
"""
|
|
75096
|
-
|
|
75097
76099
|
freshness_collection_status = sgqlc.types.Field(
|
|
75098
76100
|
TableCollectionStatus, graphql_name="freshnessCollectionStatus"
|
|
75099
76101
|
)
|