pycarlo 0.11.15__py3-none-any.whl → 0.12.2__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.
pycarlo/lib/schema.py CHANGED
@@ -1,4 +1,5 @@
1
1
  import sgqlc.types
2
+ import pycarlo.lib.types
2
3
  import sgqlc.types.datetime
3
4
  import sgqlc.types.relay
4
5
 
@@ -17,7 +18,7 @@ __docformat__ = "markdown"
17
18
  ########################################################################
18
19
  # Scalars and Enumerations
19
20
  ########################################################################
20
- class AccessKeyIndexEnum(sgqlc.types.Enum):
21
+ class AccessKeyIndexEnum(pycarlo.lib.types.Enum):
21
22
  """Enumeration Choices:
22
23
 
23
24
  * `account`None
@@ -28,7 +29,7 @@ class AccessKeyIndexEnum(sgqlc.types.Enum):
28
29
  __choices__ = ("account", "user")
29
30
 
30
31
 
31
- class AccountNotificationDigestSettingsModelDigestType(sgqlc.types.Enum):
32
+ class AccountNotificationDigestSettingsModelDigestType(pycarlo.lib.types.Enum):
32
33
  """Enumeration Choices:
33
34
 
34
35
  * `ANOMALIES_DIGEST`: anomalies based digest
@@ -40,7 +41,7 @@ class AccountNotificationDigestSettingsModelDigestType(sgqlc.types.Enum):
40
41
  __choices__ = ("ANOMALIES_DIGEST", "INACTIVE_DIGEST", "MISCONF_DIGEST")
41
42
 
42
43
 
43
- class AccountNotificationRoutingRulesModelMonitorLabelsMatchType(sgqlc.types.Enum):
44
+ class AccountNotificationRoutingRulesModelMonitorLabelsMatchType(pycarlo.lib.types.Enum):
44
45
  """Enumeration Choices:
45
46
 
46
47
  * `AND`: AND
@@ -51,7 +52,7 @@ class AccountNotificationRoutingRulesModelMonitorLabelsMatchType(sgqlc.types.Enu
51
52
  __choices__ = ("AND", "OR")
52
53
 
53
54
 
54
- class AccountNotificationSettingsModelNotificationScheduleType(sgqlc.types.Enum):
55
+ class AccountNotificationSettingsModelNotificationScheduleType(pycarlo.lib.types.Enum):
55
56
  """Enumeration Choices:
56
57
 
57
58
  * `BACKUP_OR_FAILURE`: Backup Or Failure
@@ -63,7 +64,7 @@ class AccountNotificationSettingsModelNotificationScheduleType(sgqlc.types.Enum)
63
64
  __choices__ = ("BACKUP_OR_FAILURE", "DIGEST", "REALTIME")
64
65
 
65
66
 
66
- class AccountNotificationSettingsModelType(sgqlc.types.Enum):
67
+ class AccountNotificationSettingsModelType(pycarlo.lib.types.Enum):
67
68
  """Enumeration Choices:
68
69
 
69
70
  * `ALATION`: Alation
@@ -105,7 +106,7 @@ class AccountNotificationSettingsModelType(sgqlc.types.Enum):
105
106
  )
106
107
 
107
108
 
108
- class ActorType(sgqlc.types.Enum):
109
+ class ActorType(pycarlo.lib.types.Enum):
109
110
  """Enumeration Choices:
110
111
 
111
112
  * `AI`None
@@ -119,7 +120,7 @@ class ActorType(sgqlc.types.Enum):
119
120
  __choices__ = ("AI", "HUMAN", "assistant", "system", "user")
120
121
 
121
122
 
122
- class AdfJobRunModelStatus(sgqlc.types.Enum):
123
+ class AdfJobRunModelStatus(pycarlo.lib.types.Enum):
123
124
  """Enumeration Choices:
124
125
 
125
126
  * `CANCELLED`: Cancelled
@@ -145,7 +146,7 @@ class AdfJobRunModelStatus(sgqlc.types.Enum):
145
146
  )
146
147
 
147
148
 
148
- class AdfTaskRunModelStatus(sgqlc.types.Enum):
149
+ class AdfTaskRunModelStatus(pycarlo.lib.types.Enum):
149
150
  """Enumeration Choices:
150
151
 
151
152
  * `CANCELLED`: Cancelled
@@ -171,7 +172,7 @@ class AdfTaskRunModelStatus(sgqlc.types.Enum):
171
172
  )
172
173
 
173
174
 
174
- class AgentModelAgentType(sgqlc.types.Enum):
175
+ class AgentModelAgentType(pycarlo.lib.types.Enum):
175
176
  """Enumeration Choices:
176
177
 
177
178
  * `DATA_STORE_AGENT`: Data Store Agent
@@ -182,7 +183,7 @@ class AgentModelAgentType(sgqlc.types.Enum):
182
183
  __choices__ = ("DATA_STORE_AGENT", "REMOTE_AGENT")
183
184
 
184
185
 
185
- class AgentModelAuthType(sgqlc.types.Enum):
186
+ class AgentModelAuthType(pycarlo.lib.types.Enum):
186
187
  """Enumeration Choices:
187
188
 
188
189
  * `AWS_ASSUMABLE_ROLE`: AWS Assumable Role
@@ -213,7 +214,7 @@ class AgentModelAuthType(sgqlc.types.Enum):
213
214
  )
214
215
 
215
216
 
216
- class AgentModelPlatform(sgqlc.types.Enum):
217
+ class AgentModelPlatform(pycarlo.lib.types.Enum):
217
218
  """Enumeration Choices:
218
219
 
219
220
  * `AWS`: AWS
@@ -227,7 +228,7 @@ class AgentModelPlatform(sgqlc.types.Enum):
227
228
  __choices__ = ("AWS", "AWS_GENERIC", "AZURE", "GCP", "SNOWFLAKE")
228
229
 
229
230
 
230
- class AgentModelStorageType(sgqlc.types.Enum):
231
+ class AgentModelStorageType(pycarlo.lib.types.Enum):
231
232
  """Enumeration Choices:
232
233
 
233
234
  * `AZURE_BLOB`: Azure Storage
@@ -240,7 +241,7 @@ class AgentModelStorageType(sgqlc.types.Enum):
240
241
  __choices__ = ("AZURE_BLOB", "GCS", "S3", "SNOWFLAKE_INTERNAL_STAGE")
241
242
 
242
243
 
243
- class AgentModelWrapperType(sgqlc.types.Enum):
244
+ class AgentModelWrapperType(pycarlo.lib.types.Enum):
244
245
  """Enumeration Choices:
245
246
 
246
247
  * `CLOUDFORMATION`: CloudFormation
@@ -252,7 +253,20 @@ class AgentModelWrapperType(sgqlc.types.Enum):
252
253
  __choices__ = ("CLOUDFORMATION", "SNA_CONTAINER", "TERRAFORM")
253
254
 
254
255
 
255
- class AgentTraceFormatEnum(sgqlc.types.Enum):
256
+ class AgentMonitorSelectExpressionType(pycarlo.lib.types.Enum):
257
+ """Enumeration Choices:
258
+
259
+ * `ALL`None
260
+ * `EVALUATION`None
261
+ * `SPAN_TREE`None
262
+ * `SPAN_VIEW`None
263
+ """
264
+
265
+ __schema__ = schema
266
+ __choices__ = ("ALL", "EVALUATION", "SPAN_TREE", "SPAN_VIEW")
267
+
268
+
269
+ class AgentTraceFormatEnum(pycarlo.lib.types.Enum):
256
270
  """Enum for agent trace format types.
257
271
 
258
272
  Enumeration Choices:
@@ -265,7 +279,7 @@ class AgentTraceFormatEnum(sgqlc.types.Enum):
265
279
  __choices__ = ("STANDARD", "STRANDS")
266
280
 
267
281
 
268
- class AgentTraceTableModelSpanFormat(sgqlc.types.Enum):
282
+ class AgentTraceTableModelSpanFormat(pycarlo.lib.types.Enum):
269
283
  """Enumeration Choices:
270
284
 
271
285
  * `STANDARD`: standard
@@ -276,7 +290,7 @@ class AgentTraceTableModelSpanFormat(sgqlc.types.Enum):
276
290
  __choices__ = ("STANDARD", "STRANDS")
277
291
 
278
292
 
279
- class AgentTypeEnum(sgqlc.types.Enum):
293
+ class AgentTypeEnum(pycarlo.lib.types.Enum):
280
294
  """Enumeration Choices:
281
295
 
282
296
  * `DATA_STORE_AGENT`None
@@ -287,7 +301,7 @@ class AgentTypeEnum(sgqlc.types.Enum):
287
301
  __choices__ = ("DATA_STORE_AGENT", "REMOTE_AGENT")
288
302
 
289
303
 
290
- class AggregateMetricType(sgqlc.types.Enum):
304
+ class AggregateMetricType(pycarlo.lib.types.Enum):
291
305
  """Enumeration Choices:
292
306
 
293
307
  * `MAX`None
@@ -315,7 +329,7 @@ class AggregateMetricType(sgqlc.types.Enum):
315
329
  )
316
330
 
317
331
 
318
- class AggregationFunction(sgqlc.types.Enum):
332
+ class AggregationFunction(pycarlo.lib.types.Enum):
319
333
  """Enumeration Choices:
320
334
 
321
335
  * `AVG`None
@@ -328,7 +342,7 @@ class AggregationFunction(sgqlc.types.Enum):
328
342
  __choices__ = ("AVG", "MAX", "MEDIAN", "MIN")
329
343
 
330
344
 
331
- class AiAgentType(sgqlc.types.Enum):
345
+ class AiAgentType(pycarlo.lib.types.Enum):
332
346
  """Types of AI agents available in the system.
333
347
 
334
348
  Enumeration Choices:
@@ -340,7 +354,7 @@ class AiAgentType(sgqlc.types.Enum):
340
354
  __choices__ = ("TROUBLESHOOTING",)
341
355
 
342
356
 
343
- class AirflowRunState(sgqlc.types.Enum):
357
+ class AirflowRunState(pycarlo.lib.types.Enum):
344
358
  """Enumeration Choices:
345
359
 
346
360
  * `deferred`None
@@ -376,7 +390,7 @@ class AirflowRunState(sgqlc.types.Enum):
376
390
  )
377
391
 
378
392
 
379
- class AlertAccessRequestStatus(sgqlc.types.Enum):
393
+ class AlertAccessRequestStatus(pycarlo.lib.types.Enum):
380
394
  """Enumeration Choices:
381
395
 
382
396
  * `EXPIRED`None
@@ -389,7 +403,7 @@ class AlertAccessRequestStatus(sgqlc.types.Enum):
389
403
  __choices__ = ("EXPIRED", "NOTIFIED", "PENDING", "RESOLVED")
390
404
 
391
405
 
392
- class AlertGroupBy(sgqlc.types.Enum):
406
+ class AlertGroupBy(pycarlo.lib.types.Enum):
393
407
  """Enumeration Choices:
394
408
 
395
409
  * `STATUS`None
@@ -400,7 +414,7 @@ class AlertGroupBy(sgqlc.types.Enum):
400
414
  __choices__ = ("STATUS", "TYPE")
401
415
 
402
416
 
403
- class AlertReactionReason(sgqlc.types.Enum):
417
+ class AlertReactionReason(pycarlo.lib.types.Enum):
404
418
  """Enumeration Choices:
405
419
 
406
420
  * `DETECTOR_TOO_SENSITIVE`None
@@ -416,7 +430,7 @@ class AlertReactionReason(sgqlc.types.Enum):
416
430
  )
417
431
 
418
432
 
419
- class AlertReactionType(sgqlc.types.Enum):
433
+ class AlertReactionType(pycarlo.lib.types.Enum):
420
434
  """Enumeration Choices:
421
435
 
422
436
  * `HELPFUL`None
@@ -427,7 +441,7 @@ class AlertReactionType(sgqlc.types.Enum):
427
441
  __choices__ = ("HELPFUL", "NOT_HELPFUL")
428
442
 
429
443
 
430
- class AlertStatus(sgqlc.types.Enum):
444
+ class AlertStatus(pycarlo.lib.types.Enum):
431
445
  """Enumeration Choices:
432
446
 
433
447
  * `ACKNOWLEDGED`None
@@ -449,7 +463,7 @@ class AlertStatus(sgqlc.types.Enum):
449
463
  )
450
464
 
451
465
 
452
- class AlertStatusInput(sgqlc.types.Enum):
466
+ class AlertStatusInput(pycarlo.lib.types.Enum):
453
467
  """Enumeration Choices:
454
468
 
455
469
  * `ACKNOWLEDGED`None
@@ -473,7 +487,7 @@ class AlertStatusInput(sgqlc.types.Enum):
473
487
  )
474
488
 
475
489
 
476
- class AlertSubType(sgqlc.types.Enum):
490
+ class AlertSubType(pycarlo.lib.types.Enum):
477
491
  """Enumeration Choices:
478
492
 
479
493
  * `ADF_JOB_FAILURE`None
@@ -573,7 +587,7 @@ class AlertSubType(sgqlc.types.Enum):
573
587
  )
574
588
 
575
589
 
576
- class AlertType(sgqlc.types.Enum):
590
+ class AlertType(pycarlo.lib.types.Enum):
577
591
  """Enumeration Choices:
578
592
 
579
593
  * `AGENT_ANOMALIES`None
@@ -611,7 +625,7 @@ class AlertType(sgqlc.types.Enum):
611
625
  )
612
626
 
613
627
 
614
- class AlertsFilterFieldName(sgqlc.types.Enum):
628
+ class AlertsFilterFieldName(pycarlo.lib.types.Enum):
615
629
  """Enumeration Choices:
616
630
 
617
631
  * `AUDIENCE`None
@@ -659,7 +673,7 @@ class AlertsFilterFieldName(sgqlc.types.Enum):
659
673
  )
660
674
 
661
675
 
662
- class AssetCollectionRuleEffect(sgqlc.types.Enum):
676
+ class AssetCollectionRuleEffect(pycarlo.lib.types.Enum):
663
677
  """Enumeration Choices:
664
678
 
665
679
  * `allow`None
@@ -670,7 +684,7 @@ class AssetCollectionRuleEffect(sgqlc.types.Enum):
670
684
  __choices__ = ("allow", "block")
671
685
 
672
686
 
673
- class AssetFilterTableNameOperator(sgqlc.types.Enum):
687
+ class AssetFilterTableNameOperator(pycarlo.lib.types.Enum):
674
688
  """Enumeration Choices:
675
689
 
676
690
  * `CONTAINS`None
@@ -683,7 +697,7 @@ class AssetFilterTableNameOperator(sgqlc.types.Enum):
683
697
  __choices__ = ("CONTAINS", "ENDS_WITH", "MATCH_PATTERN", "STARTS_WITH")
684
698
 
685
699
 
686
- class AssetFilterTableTagOperator(sgqlc.types.Enum):
700
+ class AssetFilterTableTagOperator(pycarlo.lib.types.Enum):
687
701
  """Enumeration Choices:
688
702
 
689
703
  * `HAS_ALL`None
@@ -694,7 +708,7 @@ class AssetFilterTableTagOperator(sgqlc.types.Enum):
694
708
  __choices__ = ("HAS_ALL", "HAS_ANY")
695
709
 
696
710
 
697
- class AssetFilterType(sgqlc.types.Enum):
711
+ class AssetFilterType(pycarlo.lib.types.Enum):
698
712
  """Enumeration Choices:
699
713
 
700
714
  * `ACTIVITY_READ`None
@@ -724,7 +738,7 @@ class AssetFilterType(sgqlc.types.Enum):
724
738
  )
725
739
 
726
740
 
727
- class AssetSelectionLevel(sgqlc.types.Enum):
741
+ class AssetSelectionLevel(pycarlo.lib.types.Enum):
728
742
  """Enumeration Choices:
729
743
 
730
744
  * `DATABASE`None
@@ -737,7 +751,7 @@ class AssetSelectionLevel(sgqlc.types.Enum):
737
751
  __choices__ = ("DATABASE", "SCHEMA", "TABLE", "WAREHOUSE")
738
752
 
739
753
 
740
- class AssetsSortDirection(sgqlc.types.Enum):
754
+ class AssetsSortDirection(pycarlo.lib.types.Enum):
741
755
  """Enumeration Choices:
742
756
 
743
757
  * `ASC`None
@@ -748,7 +762,7 @@ class AssetsSortDirection(sgqlc.types.Enum):
748
762
  __choices__ = ("ASC", "DESC")
749
763
 
750
764
 
751
- class AuthType(sgqlc.types.Enum):
765
+ class AuthType(pycarlo.lib.types.Enum):
752
766
  """Enumeration Choices:
753
767
 
754
768
  * `BASIC`None
@@ -760,7 +774,7 @@ class AuthType(sgqlc.types.Enum):
760
774
  __choices__ = ("BASIC", "BEARER", "NO_AUTH")
761
775
 
762
776
 
763
- class AuthTypeEnum(sgqlc.types.Enum):
777
+ class AuthTypeEnum(pycarlo.lib.types.Enum):
764
778
  """Enumeration Choices:
765
779
 
766
780
  * `AWS_ASSUMABLE_ROLE`None
@@ -790,7 +804,7 @@ class AuthTypeEnum(sgqlc.types.Enum):
790
804
  )
791
805
 
792
806
 
793
- class AuthorizationGroupSource(sgqlc.types.Enum):
807
+ class AuthorizationGroupSource(pycarlo.lib.types.Enum):
794
808
  """Enumeration Choices:
795
809
 
796
810
  * `AUTHORIZATION_PROVIDER`: Group is automatically created/managed
@@ -805,7 +819,7 @@ class AuthorizationGroupSource(sgqlc.types.Enum):
805
819
  __choices__ = ("AUTHORIZATION_PROVIDER", "BUILT_IN", "CUSTOM")
806
820
 
807
821
 
808
- class AutoOperator(sgqlc.types.Enum):
822
+ class AutoOperator(pycarlo.lib.types.Enum):
809
823
  """Enumeration Choices:
810
824
 
811
825
  * `AUTO`None
@@ -817,7 +831,7 @@ class AutoOperator(sgqlc.types.Enum):
817
831
  __choices__ = ("AUTO", "AUTO_HIGH", "AUTO_LOW")
818
832
 
819
833
 
820
- class AwsEnvConfiguration(sgqlc.types.Enum):
834
+ class AwsEnvConfiguration(pycarlo.lib.types.Enum):
821
835
  """Enumeration Choices:
822
836
 
823
837
  * `primary`None
@@ -828,7 +842,7 @@ class AwsEnvConfiguration(sgqlc.types.Enum):
828
842
  __choices__ = ("primary", "secondary")
829
843
 
830
844
 
831
- class BiContainerModelType(sgqlc.types.Enum):
845
+ class BiContainerModelType(pycarlo.lib.types.Enum):
832
846
  """Enumeration Choices:
833
847
 
834
848
  * `LOOKER`: Looker
@@ -852,7 +866,7 @@ class BigInt(sgqlc.types.Scalar):
852
866
  __schema__ = schema
853
867
 
854
868
 
855
- class BillingInvoiceStatus(sgqlc.types.Enum):
869
+ class BillingInvoiceStatus(pycarlo.lib.types.Enum):
856
870
  """Enumeration Choices:
857
871
 
858
872
  * `DRAFT`None
@@ -864,7 +878,7 @@ class BillingInvoiceStatus(sgqlc.types.Enum):
864
878
  __choices__ = ("DRAFT", "FINALIZED", "VOID")
865
879
 
866
880
 
867
- class BillingInvoicesSort(sgqlc.types.Enum):
881
+ class BillingInvoicesSort(pycarlo.lib.types.Enum):
868
882
  """Enumeration Choices:
869
883
 
870
884
  * `date_asc`None
@@ -875,7 +889,7 @@ class BillingInvoicesSort(sgqlc.types.Enum):
875
889
  __choices__ = ("date_asc", "date_desc")
876
890
 
877
891
 
878
- class BillingPlanType(sgqlc.types.Enum):
892
+ class BillingPlanType(pycarlo.lib.types.Enum):
879
893
  """Enumeration Choices:
880
894
 
881
895
  * `ENTERPRISE`None
@@ -898,7 +912,7 @@ class BillingPlanType(sgqlc.types.Enum):
898
912
  Boolean = sgqlc.types.Boolean
899
913
 
900
914
 
901
- class BooleanOperator(sgqlc.types.Enum):
915
+ class BooleanOperator(pycarlo.lib.types.Enum):
902
916
  """Enumeration Choices:
903
917
 
904
918
  * `AND`None
@@ -909,7 +923,7 @@ class BooleanOperator(sgqlc.types.Enum):
909
923
  __choices__ = ("AND", "OR")
910
924
 
911
925
 
912
- class CollectionNodeModelStatus(sgqlc.types.Enum):
926
+ class CollectionNodeModelStatus(pycarlo.lib.types.Enum):
913
927
  """Enumeration Choices:
914
928
 
915
929
  * `ASSIGNED`: Assigned
@@ -923,7 +937,7 @@ class CollectionNodeModelStatus(sgqlc.types.Enum):
923
937
  __choices__ = ("ASSIGNED", "AVAILABLE", "DELETED", "READY", "UNASSIGNED")
924
938
 
925
939
 
926
- class CollectionPreferenceEffectType(sgqlc.types.Enum):
940
+ class CollectionPreferenceEffectType(pycarlo.lib.types.Enum):
927
941
  """Enumeration Choices:
928
942
 
929
943
  * `allow`None
@@ -934,7 +948,7 @@ class CollectionPreferenceEffectType(sgqlc.types.Enum):
934
948
  __choices__ = ("allow", "block")
935
949
 
936
950
 
937
- class CollectionPreferenceMatchType(sgqlc.types.Enum):
951
+ class CollectionPreferenceMatchType(pycarlo.lib.types.Enum):
938
952
  """Enumeration Choices:
939
953
 
940
954
  * `exact_match`None
@@ -948,7 +962,7 @@ class CollectionPreferenceMatchType(sgqlc.types.Enum):
948
962
  __choices__ = ("exact_match", "prefix", "regexp", "substring", "suffix")
949
963
 
950
964
 
951
- class CollectionPreferenceTargetObjectType(sgqlc.types.Enum):
965
+ class CollectionPreferenceTargetObjectType(pycarlo.lib.types.Enum):
952
966
  """Enumeration Choices:
953
967
 
954
968
  * `dataset`None
@@ -960,7 +974,7 @@ class CollectionPreferenceTargetObjectType(sgqlc.types.Enum):
960
974
  __choices__ = ("dataset", "project", "table")
961
975
 
962
976
 
963
- class CollectionStorageModelStatus(sgqlc.types.Enum):
977
+ class CollectionStorageModelStatus(pycarlo.lib.types.Enum):
964
978
  """Enumeration Choices:
965
979
 
966
980
  * `ASSIGNED`: Assigned
@@ -974,7 +988,7 @@ class CollectionStorageModelStatus(sgqlc.types.Enum):
974
988
  __choices__ = ("ASSIGNED", "AVAILABLE", "DELETED", "READY", "UNASSIGNED")
975
989
 
976
990
 
977
- class ComparisonDataSourceType(sgqlc.types.Enum):
991
+ class ComparisonDataSourceType(pycarlo.lib.types.Enum):
978
992
  """Enumeration Choices:
979
993
 
980
994
  * `SOURCE`None
@@ -985,7 +999,7 @@ class ComparisonDataSourceType(sgqlc.types.Enum):
985
999
  __choices__ = ("SOURCE", "TARGET")
986
1000
 
987
1001
 
988
- class ComparisonType(sgqlc.types.Enum):
1002
+ class ComparisonType(pycarlo.lib.types.Enum):
989
1003
  """Enumeration Choices:
990
1004
 
991
1005
  * `ABSOLUTE_VOLUME`None
@@ -1015,7 +1029,7 @@ class ComparisonType(sgqlc.types.Enum):
1015
1029
  )
1016
1030
 
1017
1031
 
1018
- class ConnectionModelType(sgqlc.types.Enum):
1032
+ class ConnectionModelType(pycarlo.lib.types.Enum):
1019
1033
  """Enumeration Choices:
1020
1034
 
1021
1035
  * `AIRFLOW`: Airflow
@@ -1025,7 +1039,6 @@ class ConnectionModelType(sgqlc.types.Enum):
1025
1039
  * `CLICKHOUSE`: ClickHouse
1026
1040
  * `CONFLUENT_KAFKA`: Confluent Kafka
1027
1041
  * `CONFLUENT_KAFKA_CONNECT`: Confluent Kafka Connect
1028
- * `DATABRICKS_DELTA`: Databricks Delta
1029
1042
  * `DATABRICKS_METASTORE`: Databricks metastore
1030
1043
  * `DATABRICKS_METASTORE_SQL_WAREHOUSE`: Databricks Metastore Sql
1031
1044
  Warehouse
@@ -1077,7 +1090,6 @@ class ConnectionModelType(sgqlc.types.Enum):
1077
1090
  "CLICKHOUSE",
1078
1091
  "CONFLUENT_KAFKA",
1079
1092
  "CONFLUENT_KAFKA_CONNECT",
1080
- "DATABRICKS_DELTA",
1081
1093
  "DATABRICKS_METASTORE",
1082
1094
  "DATABRICKS_METASTORE_SQL_WAREHOUSE",
1083
1095
  "DATABRICKS_SQL_WAREHOUSE",
@@ -1120,7 +1132,7 @@ class ConnectionModelType(sgqlc.types.Enum):
1120
1132
  )
1121
1133
 
1122
1134
 
1123
- class ConnectionSubtypeEnum(sgqlc.types.Enum):
1135
+ class ConnectionSubtypeEnum(pycarlo.lib.types.Enum):
1124
1136
  """Enumeration Choices:
1125
1137
 
1126
1138
  * `AZURE_DEDICATED_SQL_POOL`None
@@ -1152,7 +1164,7 @@ class ConnectionSubtypeEnum(sgqlc.types.Enum):
1152
1164
  )
1153
1165
 
1154
1166
 
1155
- class ConnectionTypeEnum(sgqlc.types.Enum):
1167
+ class ConnectionTypeEnum(pycarlo.lib.types.Enum):
1156
1168
  """Enumeration Choices:
1157
1169
 
1158
1170
  * `AIRFLOW`None
@@ -1162,7 +1174,6 @@ class ConnectionTypeEnum(sgqlc.types.Enum):
1162
1174
  * `CLICKHOUSE`None
1163
1175
  * `CONFLUENT_KAFKA`None
1164
1176
  * `CONFLUENT_KAFKA_CONNECT`None
1165
- * `DATABRICKS_DELTA`None
1166
1177
  * `DATABRICKS_METASTORE`None
1167
1178
  * `DATABRICKS_METASTORE_SQL_WAREHOUSE`None
1168
1179
  * `DATABRICKS_SQL_WAREHOUSE`None
@@ -1213,7 +1224,6 @@ class ConnectionTypeEnum(sgqlc.types.Enum):
1213
1224
  "CLICKHOUSE",
1214
1225
  "CONFLUENT_KAFKA",
1215
1226
  "CONFLUENT_KAFKA_CONNECT",
1216
- "DATABRICKS_DELTA",
1217
1227
  "DATABRICKS_METASTORE",
1218
1228
  "DATABRICKS_METASTORE_SQL_WAREHOUSE",
1219
1229
  "DATABRICKS_SQL_WAREHOUSE",
@@ -1256,7 +1266,7 @@ class ConnectionTypeEnum(sgqlc.types.Enum):
1256
1266
  )
1257
1267
 
1258
1268
 
1259
- class ConsolidatedMonitorStatusType(sgqlc.types.Enum):
1269
+ class ConsolidatedMonitorStatusType(pycarlo.lib.types.Enum):
1260
1270
  """Enumeration Choices:
1261
1271
 
1262
1272
  * `DISABLED`None
@@ -1271,7 +1281,7 @@ class ConsolidatedMonitorStatusType(sgqlc.types.Enum):
1271
1281
  __choices__ = ("DISABLED", "ENABLED", "ERROR", "INSUFFICIENT_DATA", "SNOOZED", "TRAINING")
1272
1282
 
1273
1283
 
1274
- class CustomRuleComparisonOperator(sgqlc.types.Enum):
1284
+ class CustomRuleComparisonOperator(pycarlo.lib.types.Enum):
1275
1285
  """Enumeration Choices:
1276
1286
 
1277
1287
  * `AUTO`None
@@ -1307,7 +1317,7 @@ class CustomRuleComparisonOperator(sgqlc.types.Enum):
1307
1317
  )
1308
1318
 
1309
1319
 
1310
- class CustomRuleModelQueryResultType(sgqlc.types.Enum):
1320
+ class CustomRuleModelQueryResultType(pycarlo.lib.types.Enum):
1311
1321
  """Enumeration Choices:
1312
1322
 
1313
1323
  * `LABELED_NUMERICS`: LABELED_NUMERICS
@@ -1331,7 +1341,7 @@ class CustomRuleModelQueryResultType(sgqlc.types.Enum):
1331
1341
  )
1332
1342
 
1333
1343
 
1334
- class CustomRuleModelRuleType(sgqlc.types.Enum):
1344
+ class CustomRuleModelRuleType(pycarlo.lib.types.Enum):
1335
1345
  """Enumeration Choices:
1336
1346
 
1337
1347
  * `COMPARISON`: Comparison
@@ -1357,7 +1367,7 @@ class CustomRuleModelRuleType(sgqlc.types.Enum):
1357
1367
  )
1358
1368
 
1359
1369
 
1360
- class CustomSQLTemplateModelQueryResultType(sgqlc.types.Enum):
1370
+ class CustomSQLTemplateModelQueryResultType(pycarlo.lib.types.Enum):
1361
1371
  """Enumeration Choices:
1362
1372
 
1363
1373
  * `LABELED_NUMERICS`: LABELED_NUMERICS
@@ -1381,7 +1391,7 @@ class CustomSQLTemplateModelQueryResultType(sgqlc.types.Enum):
1381
1391
  )
1382
1392
 
1383
1393
 
1384
- class DashboardType(sgqlc.types.Enum):
1394
+ class DashboardType(pycarlo.lib.types.Enum):
1385
1395
  """Enumeration Choices:
1386
1396
 
1387
1397
  * `READ`None
@@ -1392,7 +1402,7 @@ class DashboardType(sgqlc.types.Enum):
1392
1402
  __choices__ = ("READ", "WRITE")
1393
1403
 
1394
1404
 
1395
- class DataAssetTypeEnum(sgqlc.types.Enum):
1405
+ class DataAssetTypeEnum(pycarlo.lib.types.Enum):
1396
1406
  """Enumeration Choices:
1397
1407
 
1398
1408
  * `ASSET_TYPE_EXTERNAL`None
@@ -1412,7 +1422,7 @@ class DataAssetTypeEnum(sgqlc.types.Enum):
1412
1422
  )
1413
1423
 
1414
1424
 
1415
- class DataCollectorDeploymentTypeExtendedEnum(sgqlc.types.Enum):
1425
+ class DataCollectorDeploymentTypeExtendedEnum(pycarlo.lib.types.Enum):
1416
1426
  """Enumeration Choices:
1417
1427
 
1418
1428
  * `CLOUD_V1`None
@@ -1436,7 +1446,7 @@ class DataCollectorDeploymentTypeExtendedEnum(sgqlc.types.Enum):
1436
1446
  )
1437
1447
 
1438
1448
 
1439
- class DataCollectorEventTypes(sgqlc.types.Enum):
1449
+ class DataCollectorEventTypes(pycarlo.lib.types.Enum):
1440
1450
  """Enumeration Choices:
1441
1451
 
1442
1452
  * `s3_metadata_events`None
@@ -1447,7 +1457,7 @@ class DataCollectorEventTypes(sgqlc.types.Enum):
1447
1457
  __choices__ = ("s3_metadata_events", "s3_ql_events")
1448
1458
 
1449
1459
 
1450
- class DataCollectorModelDeploymentTypeEnum(sgqlc.types.Enum):
1460
+ class DataCollectorModelDeploymentTypeEnum(pycarlo.lib.types.Enum):
1451
1461
  """Enumeration Choices:
1452
1462
 
1453
1463
  * `CLOUD_V1`None
@@ -1461,7 +1471,7 @@ class DataCollectorModelDeploymentTypeEnum(sgqlc.types.Enum):
1461
1471
  __choices__ = ("CLOUD_V1", "CLOUD_V2", "REMOTE_V1", "REMOTE_V1_5", "REMOTE_V2")
1462
1472
 
1463
1473
 
1464
- class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1474
+ class DataCollectorScheduleModelDeleteReason(pycarlo.lib.types.Enum):
1465
1475
  """Enumeration Choices:
1466
1476
 
1467
1477
  * `AGENT_TRACE_TABLE_DELETED`: agent_trace_table_deleted
@@ -1487,7 +1497,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1487
1497
  )
1488
1498
 
1489
1499
 
1490
- class DataCollectorScheduleModelScheduleType(sgqlc.types.Enum):
1500
+ class DataCollectorScheduleModelScheduleType(pycarlo.lib.types.Enum):
1491
1501
  """Enumeration Choices:
1492
1502
 
1493
1503
  * `DYNAMIC`: Dynamic
@@ -1500,7 +1510,7 @@ class DataCollectorScheduleModelScheduleType(sgqlc.types.Enum):
1500
1510
  __choices__ = ("DYNAMIC", "FIXED", "LOOSE", "MANUAL")
1501
1511
 
1502
1512
 
1503
- class DataCollectorScheduleModelSkipReason(sgqlc.types.Enum):
1513
+ class DataCollectorScheduleModelSkipReason(pycarlo.lib.types.Enum):
1504
1514
  """Enumeration Choices:
1505
1515
 
1506
1516
  * `MANUALLY_SKIPPED`: Manually skipped
@@ -1511,7 +1521,7 @@ class DataCollectorScheduleModelSkipReason(sgqlc.types.Enum):
1511
1521
  __choices__ = ("MANUALLY_SKIPPED", "NONE")
1512
1522
 
1513
1523
 
1514
- class DataColumnTypes(sgqlc.types.Enum):
1524
+ class DataColumnTypes(pycarlo.lib.types.Enum):
1515
1525
  """Available types for column values.
1516
1526
 
1517
1527
  Enumeration Choices:
@@ -1528,7 +1538,7 @@ class DataColumnTypes(sgqlc.types.Enum):
1528
1538
  __choices__ = ("CHART", "DATE_TIME", "HOURS", "NUMERIC", "PERCENTAGE", "TEXT")
1529
1539
 
1530
1540
 
1531
- class DataExplorerWidgetModelWidgetType(sgqlc.types.Enum):
1541
+ class DataExplorerWidgetModelWidgetType(pycarlo.lib.types.Enum):
1532
1542
  """Enumeration Choices:
1533
1543
 
1534
1544
  * `DISCRETE`: DISCRETE
@@ -1546,7 +1556,7 @@ class DataExplorerWidgetModelWidgetType(sgqlc.types.Enum):
1546
1556
  )
1547
1557
 
1548
1558
 
1549
- class DataExportNames(sgqlc.types.Enum):
1559
+ class DataExportNames(pycarlo.lib.types.Enum):
1550
1560
  """Available Data Exports.
1551
1561
 
1552
1562
  Enumeration Choices:
@@ -1574,7 +1584,7 @@ class DataExportNames(sgqlc.types.Enum):
1574
1584
  )
1575
1585
 
1576
1586
 
1577
- class DataMaintenanceMetric(sgqlc.types.Enum):
1587
+ class DataMaintenanceMetric(pycarlo.lib.types.Enum):
1578
1588
  """Enumeration Choices:
1579
1589
 
1580
1590
  * `ALL`None
@@ -1600,7 +1610,7 @@ class DataMaintenanceMetric(sgqlc.types.Enum):
1600
1610
  )
1601
1611
 
1602
1612
 
1603
- class DataMaintenanceReasonType(sgqlc.types.Enum):
1613
+ class DataMaintenanceReasonType(pycarlo.lib.types.Enum):
1604
1614
  """Enumeration Choices:
1605
1615
 
1606
1616
  * `CUSTOM`None
@@ -1612,7 +1622,7 @@ class DataMaintenanceReasonType(sgqlc.types.Enum):
1612
1622
  __choices__ = ("CUSTOM", "HOLIDAY", "TRAINING")
1613
1623
 
1614
1624
 
1615
- class DataProductMetric(sgqlc.types.Enum):
1625
+ class DataProductMetric(pycarlo.lib.types.Enum):
1616
1626
  """Metrics for data products
1617
1627
 
1618
1628
  Enumeration Choices:
@@ -1670,7 +1680,7 @@ class DataProductMetric(sgqlc.types.Enum):
1670
1680
  )
1671
1681
 
1672
1682
 
1673
- class DataShareType(sgqlc.types.Enum):
1683
+ class DataShareType(pycarlo.lib.types.Enum):
1674
1684
  """Enumeration Choices:
1675
1685
 
1676
1686
  * `SNOWFLAKE`None
@@ -1680,7 +1690,7 @@ class DataShareType(sgqlc.types.Enum):
1680
1690
  __choices__ = ("SNOWFLAKE",)
1681
1691
 
1682
1692
 
1683
- class DataSourceType(sgqlc.types.Enum):
1693
+ class DataSourceType(pycarlo.lib.types.Enum):
1684
1694
  """Enumeration Choices:
1685
1695
 
1686
1696
  * `SQL`None
@@ -1691,7 +1701,7 @@ class DataSourceType(sgqlc.types.Enum):
1691
1701
  __choices__ = ("SQL", "TABLE")
1692
1702
 
1693
1703
 
1694
- class DatabricksJobRunModelStatus(sgqlc.types.Enum):
1704
+ class DatabricksJobRunModelStatus(pycarlo.lib.types.Enum):
1695
1705
  """Enumeration Choices:
1696
1706
 
1697
1707
  * `BLOCKED`: BLOCKED
@@ -1707,7 +1717,7 @@ class DatabricksJobRunModelStatus(sgqlc.types.Enum):
1707
1717
  __choices__ = ("BLOCKED", "CANCELLED", "ERROR", "FAILED", "SKIPPED", "SUCCEEDED", "TIMED_OUT")
1708
1718
 
1709
1719
 
1710
- class DatabricksTaskRunModelStatus(sgqlc.types.Enum):
1720
+ class DatabricksTaskRunModelStatus(pycarlo.lib.types.Enum):
1711
1721
  """Enumeration Choices:
1712
1722
 
1713
1723
  * `BLOCKED`: BLOCKED
@@ -1728,7 +1738,7 @@ Date = sgqlc.types.datetime.Date
1728
1738
  DateTime = sgqlc.types.datetime.DateTime
1729
1739
 
1730
1740
 
1731
- class DbtJobExecutionStatuses(sgqlc.types.Enum):
1741
+ class DbtJobExecutionStatuses(pycarlo.lib.types.Enum):
1732
1742
  """Enumeration Choices:
1733
1743
 
1734
1744
  * `CANCELLED`None
@@ -1742,7 +1752,7 @@ class DbtJobExecutionStatuses(sgqlc.types.Enum):
1742
1752
  __choices__ = ("CANCELLED", "ERROR", "FAILED", "RUNNING", "SUCCESS")
1743
1753
 
1744
1754
 
1745
- class DbtProjectModelSource(sgqlc.types.Enum):
1755
+ class DbtProjectModelSource(pycarlo.lib.types.Enum):
1746
1756
  """Enumeration Choices:
1747
1757
 
1748
1758
  * `CLI`: CLI
@@ -1754,7 +1764,7 @@ class DbtProjectModelSource(sgqlc.types.Enum):
1754
1764
  __choices__ = ("CLI", "DBT_CLOUD", "DBT_CORE")
1755
1765
 
1756
1766
 
1757
- class DecryptionServiceTypeEnum(sgqlc.types.Enum):
1767
+ class DecryptionServiceTypeEnum(pycarlo.lib.types.Enum):
1758
1768
  """Enumeration Choices:
1759
1769
 
1760
1770
  * `KMS`None
@@ -1764,7 +1774,7 @@ class DecryptionServiceTypeEnum(sgqlc.types.Enum):
1764
1774
  __choices__ = ("KMS",)
1765
1775
 
1766
1776
 
1767
- class DecryptionServiceUpdateTypeEnum(sgqlc.types.Enum):
1777
+ class DecryptionServiceUpdateTypeEnum(pycarlo.lib.types.Enum):
1768
1778
  """Enumeration Choices:
1769
1779
 
1770
1780
  * `KMS`None
@@ -1774,7 +1784,7 @@ class DecryptionServiceUpdateTypeEnum(sgqlc.types.Enum):
1774
1784
  __choices__ = ("KMS",)
1775
1785
 
1776
1786
 
1777
- class DenialReason(sgqlc.types.Enum):
1787
+ class DenialReason(pycarlo.lib.types.Enum):
1778
1788
  """Enumeration Choices:
1779
1789
 
1780
1790
  * `ENTITLEMENTS`None
@@ -1792,7 +1802,7 @@ class DenialReason(sgqlc.types.Enum):
1792
1802
  )
1793
1803
 
1794
1804
 
1795
- class DetectorStatus(sgqlc.types.Enum):
1805
+ class DetectorStatus(pycarlo.lib.types.Enum):
1796
1806
  """Enumeration Choices:
1797
1807
 
1798
1808
  * `ACTIVE`None
@@ -1804,7 +1814,7 @@ class DetectorStatus(sgqlc.types.Enum):
1804
1814
  __choices__ = ("ACTIVE", "INACTIVE", "TRAINING")
1805
1815
 
1806
1816
 
1807
- class ETLAssetType(sgqlc.types.Enum):
1817
+ class ETLAssetType(pycarlo.lib.types.Enum):
1808
1818
  """Enum to distinguish between jobs and tasks
1809
1819
 
1810
1820
  Enumeration Choices:
@@ -1817,7 +1827,7 @@ class ETLAssetType(sgqlc.types.Enum):
1817
1827
  __choices__ = ("JOB", "TASK")
1818
1828
 
1819
1829
 
1820
- class EdgeType(sgqlc.types.Enum):
1830
+ class EdgeType(pycarlo.lib.types.Enum):
1821
1831
  """Enumeration Choices:
1822
1832
 
1823
1833
  * `IS_DOWNSTREAM`None
@@ -1829,7 +1839,7 @@ class EdgeType(sgqlc.types.Enum):
1829
1839
  __choices__ = ("IS_DOWNSTREAM", "IS_READ_BY", "MODIFIES")
1830
1840
 
1831
1841
 
1832
- class EntitlementLimits(sgqlc.types.Enum):
1842
+ class EntitlementLimits(pycarlo.lib.types.Enum):
1833
1843
  """Enumeration Choices:
1834
1844
 
1835
1845
  * `DAILY_API_CALLS`None
@@ -1843,7 +1853,7 @@ class EntitlementLimits(sgqlc.types.Enum):
1843
1853
  __choices__ = ("DAILY_API_CALLS", "DATA_PRODUCTS", "DOMAINS", "MONITORED_TABLES", "USERS")
1844
1854
 
1845
1855
 
1846
- class EntitlementTypes(sgqlc.types.Enum):
1856
+ class EntitlementTypes(pycarlo.lib.types.Enum):
1847
1857
  """Enumeration Choices:
1848
1858
 
1849
1859
  * `ADVANCED_NETWORKING`None
@@ -1889,7 +1899,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1889
1899
  )
1890
1900
 
1891
1901
 
1892
- class EtlDurationTrendIssue(sgqlc.types.Enum):
1902
+ class EtlDurationTrendIssue(pycarlo.lib.types.Enum):
1893
1903
  """Represents potential reasons why the duration trend cannot be
1894
1904
  calculated.
1895
1905
 
@@ -1911,7 +1921,7 @@ class EtlDurationTrendIssue(sgqlc.types.Enum):
1911
1921
  )
1912
1922
 
1913
1923
 
1914
- class EtlPerformanceSortDirection(sgqlc.types.Enum):
1924
+ class EtlPerformanceSortDirection(pycarlo.lib.types.Enum):
1915
1925
  """Enumeration Choices:
1916
1926
 
1917
1927
  * `ASC`None
@@ -1922,7 +1932,7 @@ class EtlPerformanceSortDirection(sgqlc.types.Enum):
1922
1932
  __choices__ = ("ASC", "DESC")
1923
1933
 
1924
1934
 
1925
- class EtlRunStatus(sgqlc.types.Enum):
1935
+ class EtlRunStatus(pycarlo.lib.types.Enum):
1926
1936
  """Enumeration Choices:
1927
1937
 
1928
1938
  * `BLOCKED`None
@@ -1978,7 +1988,7 @@ class EtlRunStatus(sgqlc.types.Enum):
1978
1988
  )
1979
1989
 
1980
1990
 
1981
- class EtlType(sgqlc.types.Enum):
1991
+ class EtlType(pycarlo.lib.types.Enum):
1982
1992
  """Enumeration Choices:
1983
1993
 
1984
1994
  * `AIRFLOW`None
@@ -1993,7 +2003,7 @@ class EtlType(sgqlc.types.Enum):
1993
2003
  __choices__ = ("AIRFLOW", "AZURE_DATA_FACTORY", "DATABRICKS", "DBT", "FIVETRAN", "INFORMATICA")
1994
2004
 
1995
2005
 
1996
- class EventDetectorFeedbackModelReason(sgqlc.types.Enum):
2006
+ class EventDetectorFeedbackModelReason(pycarlo.lib.types.Enum):
1997
2007
  """Enumeration Choices:
1998
2008
 
1999
2009
  * `DETECTOR_MARKED_AS_NORMAL`: detector_marked_as_normal
@@ -2005,7 +2015,7 @@ class EventDetectorFeedbackModelReason(sgqlc.types.Enum):
2005
2015
  __choices__ = ("DETECTOR_MARKED_AS_NORMAL", "USER_MARKED_AS_NORMAL", "USER_UNMARKED_AS_NORMAL")
2006
2016
 
2007
2017
 
2008
- class EventModelEventState(sgqlc.types.Enum):
2018
+ class EventModelEventState(pycarlo.lib.types.Enum):
2009
2019
  """Enumeration Choices:
2010
2020
 
2011
2021
  * `FALSE_POSITIVE`: FALSE POSITIVE
@@ -2035,7 +2045,7 @@ class EventModelEventState(sgqlc.types.Enum):
2035
2045
  )
2036
2046
 
2037
2047
 
2038
- class EventModelEventType(sgqlc.types.Enum):
2048
+ class EventModelEventType(pycarlo.lib.types.Enum):
2039
2049
  """Enumeration Choices:
2040
2050
 
2041
2051
  * `ADF_JOB_FAILURE`: Data Factory Pipeline Failure
@@ -2119,7 +2129,7 @@ class EventModelEventType(sgqlc.types.Enum):
2119
2129
  )
2120
2130
 
2121
2131
 
2122
- class EventMutingRuleModelRuleType(sgqlc.types.Enum):
2132
+ class EventMutingRuleModelRuleType(pycarlo.lib.types.Enum):
2123
2133
  """Enumeration Choices:
2124
2134
 
2125
2135
  * `EXACT_MATCH_RULE`None
@@ -2130,7 +2140,7 @@ class EventMutingRuleModelRuleType(sgqlc.types.Enum):
2130
2140
  __choices__ = ("EXACT_MATCH_RULE", "REGEX_RULE")
2131
2141
 
2132
2142
 
2133
- class EventRcaStatusModelReason(sgqlc.types.Enum):
2143
+ class EventRcaStatusModelReason(pycarlo.lib.types.Enum):
2134
2144
  """Enumeration Choices:
2135
2145
 
2136
2146
  * `BAD_METRIC_EXPRESSION`: Bad metric expression
@@ -2205,7 +2215,7 @@ class EventRcaStatusModelReason(sgqlc.types.Enum):
2205
2215
  )
2206
2216
 
2207
2217
 
2208
- class ExecDashboardMetrics(sgqlc.types.Enum):
2218
+ class ExecDashboardMetrics(pycarlo.lib.types.Enum):
2209
2219
  """Available executive dashboard metrics. For series, we
2210
2220
  use the plural. Ex: INCIDENTS_COUNTS, vs. singular for single. Ex:
2211
2221
  TABLES_COUNT
@@ -2265,7 +2275,7 @@ class ExecDashboardMetrics(sgqlc.types.Enum):
2265
2275
  )
2266
2276
 
2267
2277
 
2268
- class ExecDashboardTables(sgqlc.types.Enum):
2278
+ class ExecDashboardTables(pycarlo.lib.types.Enum):
2269
2279
  """Available executive dashboard tables.
2270
2280
 
2271
2281
  Enumeration Choices:
@@ -2279,7 +2289,7 @@ class ExecDashboardTables(sgqlc.types.Enum):
2279
2289
  __choices__ = ("DOMAINS_TABLE", "MONITORS_TABLE", "USERS_TABLE")
2280
2290
 
2281
2291
 
2282
- class FacetType(sgqlc.types.Enum):
2292
+ class FacetType(pycarlo.lib.types.Enum):
2283
2293
  """Enumeration Choices:
2284
2294
 
2285
2295
  * `BI_TYPES`None
@@ -2309,7 +2319,7 @@ class FacetType(sgqlc.types.Enum):
2309
2319
  )
2310
2320
 
2311
2321
 
2312
- class FieldConfigType(sgqlc.types.Enum):
2322
+ class FieldConfigType(pycarlo.lib.types.Enum):
2313
2323
  """Enumeration Choices:
2314
2324
 
2315
2325
  * `FIRST`None
@@ -2320,7 +2330,7 @@ class FieldConfigType(sgqlc.types.Enum):
2320
2330
  __choices__ = ("FIRST", "LAST")
2321
2331
 
2322
2332
 
2323
- class FieldHealthMetrics(sgqlc.types.Enum):
2333
+ class FieldHealthMetrics(pycarlo.lib.types.Enum):
2324
2334
  """Field Health monitor opt-in metrics.
2325
2335
 
2326
2336
  Enumeration Choices:
@@ -2404,7 +2414,7 @@ class FieldHealthMetrics(sgqlc.types.Enum):
2404
2414
  )
2405
2415
 
2406
2416
 
2407
- class FieldMetricCategory(sgqlc.types.Enum):
2417
+ class FieldMetricCategory(pycarlo.lib.types.Enum):
2408
2418
  """Enumeration Choices:
2409
2419
 
2410
2420
  * `COMPLETENESS`None
@@ -2419,7 +2429,7 @@ class FieldMetricCategory(sgqlc.types.Enum):
2419
2429
  __choices__ = ("COMPLETENESS", "CUSTOM", "DISTRIBUTION", "PIPELINE", "UNIQUENESS", "VALIDITY")
2420
2430
 
2421
2431
 
2422
- class FieldMetricType(sgqlc.types.Enum):
2432
+ class FieldMetricType(pycarlo.lib.types.Enum):
2423
2433
  """Enumeration Choices:
2424
2434
 
2425
2435
  * `APPROX_DISTINCTNESS`None
@@ -2587,7 +2597,7 @@ class FieldMetricType(sgqlc.types.Enum):
2587
2597
  )
2588
2598
 
2589
2599
 
2590
- class FieldMode(sgqlc.types.Enum):
2600
+ class FieldMode(pycarlo.lib.types.Enum):
2591
2601
  """Enumeration Choices:
2592
2602
 
2593
2603
  * `NULLABLE`None
@@ -2599,7 +2609,7 @@ class FieldMode(sgqlc.types.Enum):
2599
2609
  __choices__ = ("NULLABLE", "REPEATED", "REQUIRED")
2600
2610
 
2601
2611
 
2602
- class FieldQueryType(sgqlc.types.Enum):
2612
+ class FieldQueryType(pycarlo.lib.types.Enum):
2603
2613
  """Enumeration Choices:
2604
2614
 
2605
2615
  * `APPROX_DISTINCTNESS`None
@@ -2769,7 +2779,7 @@ class FieldQueryType(sgqlc.types.Enum):
2769
2779
  )
2770
2780
 
2771
2781
 
2772
- class FieldType(sgqlc.types.Enum):
2782
+ class FieldType(pycarlo.lib.types.Enum):
2773
2783
  """Enumeration Choices:
2774
2784
 
2775
2785
  * `BOOLEAN`None
@@ -2785,7 +2795,7 @@ class FieldType(sgqlc.types.Enum):
2785
2795
  __choices__ = ("BOOLEAN", "DATE", "NUMERIC", "TEXT", "TIME", "TIME_OF_DAY", "UNKNOWN")
2786
2796
 
2787
2797
 
2788
- class FieldValueFilterOperator(sgqlc.types.Enum):
2798
+ class FieldValueFilterOperator(pycarlo.lib.types.Enum):
2789
2799
  """Enumeration Choices:
2790
2800
 
2791
2801
  * `EXCLUDE`None
@@ -2796,7 +2806,7 @@ class FieldValueFilterOperator(sgqlc.types.Enum):
2796
2806
  __choices__ = ("EXCLUDE", "INCLUDE")
2797
2807
 
2798
2808
 
2799
- class FilterType(sgqlc.types.Enum):
2809
+ class FilterType(pycarlo.lib.types.Enum):
2800
2810
  """Enumeration Choices:
2801
2811
 
2802
2812
  * `BINARY`None
@@ -2809,7 +2819,7 @@ class FilterType(sgqlc.types.Enum):
2809
2819
  __choices__ = ("BINARY", "GROUP", "SQL", "UNARY")
2810
2820
 
2811
2821
 
2812
- class FilterValueType(sgqlc.types.Enum):
2822
+ class FilterValueType(pycarlo.lib.types.Enum):
2813
2823
  """Enumeration Choices:
2814
2824
 
2815
2825
  * `FIELD`None
@@ -2821,7 +2831,7 @@ class FilterValueType(sgqlc.types.Enum):
2821
2831
  __choices__ = ("FIELD", "LITERAL", "SQL")
2822
2832
 
2823
2833
 
2824
- class FivetranConnectorSetupStates(sgqlc.types.Enum):
2834
+ class FivetranConnectorSetupStates(pycarlo.lib.types.Enum):
2825
2835
  """Defines the current setup state of a Fivetran Connector
2826
2836
 
2827
2837
  Enumeration Choices:
@@ -2835,7 +2845,7 @@ class FivetranConnectorSetupStates(sgqlc.types.Enum):
2835
2845
  __choices__ = ("BROKEN", "CONNECTED", "INCOMPLETE")
2836
2846
 
2837
2847
 
2838
- class FivetranConnectorStatuses(sgqlc.types.Enum):
2848
+ class FivetranConnectorStatuses(pycarlo.lib.types.Enum):
2839
2849
  """Defines the user facing statues of Fivetran connectors.
2840
2850
  See: https://fivetran.com/docs/getting-started/fivetran-
2841
2851
  dashboard/connectors#connectorstatus
@@ -2853,7 +2863,7 @@ class FivetranConnectorStatuses(sgqlc.types.Enum):
2853
2863
  __choices__ = ("Active", "Broken", "Delayed", "Incomplete", "Paused")
2854
2864
 
2855
2865
 
2856
- class FivetranConnectorSyncStates(sgqlc.types.Enum):
2866
+ class FivetranConnectorSyncStates(pycarlo.lib.types.Enum):
2857
2867
  """Defines the current sync state of a Fivetran Connector
2858
2868
 
2859
2869
  Enumeration Choices:
@@ -2868,7 +2878,7 @@ class FivetranConnectorSyncStates(sgqlc.types.Enum):
2868
2878
  __choices__ = ("PAUSED", "RESCHEDULED", "SCHEDULED", "SYNCING")
2869
2879
 
2870
2880
 
2871
- class FivetranConnectorUpdateStates(sgqlc.types.Enum):
2881
+ class FivetranConnectorUpdateStates(pycarlo.lib.types.Enum):
2872
2882
  """Defines the current data update state of a Fivetran connector
2873
2883
 
2874
2884
  Enumeration Choices:
@@ -2896,7 +2906,7 @@ class GenericScalar(sgqlc.types.Scalar):
2896
2906
  ID = sgqlc.types.ID
2897
2907
 
2898
2908
 
2899
- class IdempotentStatus(sgqlc.types.Enum):
2909
+ class IdempotentStatus(pycarlo.lib.types.Enum):
2900
2910
  """Enumeration Choices:
2901
2911
 
2902
2912
  * `COMPLETED`None
@@ -2908,7 +2918,7 @@ class IdempotentStatus(sgqlc.types.Enum):
2908
2918
  __choices__ = ("COMPLETED", "ERROR", "IN_PROGRESS")
2909
2919
 
2910
2920
 
2911
- class ImportanceScoreOperator(sgqlc.types.Enum):
2921
+ class ImportanceScoreOperator(pycarlo.lib.types.Enum):
2912
2922
  """Enumeration Choices:
2913
2923
 
2914
2924
  * `EQ`None
@@ -2923,7 +2933,7 @@ class ImportanceScoreOperator(sgqlc.types.Enum):
2923
2933
  __choices__ = ("EQ", "GT", "GTE", "LT", "LTE", "RANGE")
2924
2934
 
2925
2935
 
2926
- class IncidentCategory(sgqlc.types.Enum):
2936
+ class IncidentCategory(pycarlo.lib.types.Enum):
2927
2937
  """Categories to classify incidents
2928
2938
 
2929
2939
  Enumeration Choices:
@@ -2953,7 +2963,7 @@ class IncidentCategory(sgqlc.types.Enum):
2953
2963
  )
2954
2964
 
2955
2965
 
2956
- class IncidentFeedback(sgqlc.types.Enum):
2966
+ class IncidentFeedback(pycarlo.lib.types.Enum):
2957
2967
  """Enumeration Choices:
2958
2968
 
2959
2969
  * `expected`None
@@ -2977,7 +2987,7 @@ class IncidentFeedback(sgqlc.types.Enum):
2977
2987
  )
2978
2988
 
2979
2989
 
2980
- class IncidentGroupBy(sgqlc.types.Enum):
2990
+ class IncidentGroupBy(pycarlo.lib.types.Enum):
2981
2991
  """Enumeration Choices:
2982
2992
 
2983
2993
  * `STATUS`None
@@ -2988,7 +2998,7 @@ class IncidentGroupBy(sgqlc.types.Enum):
2988
2998
  __choices__ = ("STATUS", "TYPE")
2989
2999
 
2990
3000
 
2991
- class IncidentModelFeedback(sgqlc.types.Enum):
3001
+ class IncidentModelFeedback(pycarlo.lib.types.Enum):
2992
3002
  """Enumeration Choices:
2993
3003
 
2994
3004
  * `ANOMALY_NORMALIZED`: Anomaly normalized
@@ -3016,7 +3026,7 @@ class IncidentModelFeedback(sgqlc.types.Enum):
3016
3026
  )
3017
3027
 
3018
3028
 
3019
- class IncidentModelIncidentType(sgqlc.types.Enum):
3029
+ class IncidentModelIncidentType(pycarlo.lib.types.Enum):
3020
3030
  """Enumeration Choices:
3021
3031
 
3022
3032
  * `AGENT_ANOMALIES`: Agent anomalies
@@ -3054,7 +3064,7 @@ class IncidentModelIncidentType(sgqlc.types.Enum):
3054
3064
  )
3055
3065
 
3056
3066
 
3057
- class IncidentModelPriority(sgqlc.types.Enum):
3067
+ class IncidentModelPriority(pycarlo.lib.types.Enum):
3058
3068
  """Enumeration Choices:
3059
3069
 
3060
3070
  * `P1`: P1
@@ -3068,7 +3078,7 @@ class IncidentModelPriority(sgqlc.types.Enum):
3068
3078
  __choices__ = ("P1", "P2", "P3", "P4", "P5")
3069
3079
 
3070
3080
 
3071
- class IncidentSubType(sgqlc.types.Enum):
3081
+ class IncidentSubType(pycarlo.lib.types.Enum):
3072
3082
  """Enumeration Choices:
3073
3083
 
3074
3084
  * `abnormal_size_change`None
@@ -3140,7 +3150,7 @@ class IncidentSubType(sgqlc.types.Enum):
3140
3150
  )
3141
3151
 
3142
3152
 
3143
- class IncidentsFilterFields(sgqlc.types.Enum):
3153
+ class IncidentsFilterFields(pycarlo.lib.types.Enum):
3144
3154
  """Enumeration Choices:
3145
3155
 
3146
3156
  * `audience`None
@@ -3182,7 +3192,7 @@ class IncidentsFilterFields(sgqlc.types.Enum):
3182
3192
  )
3183
3193
 
3184
3194
 
3185
- class InformaticaActivityType(sgqlc.types.Enum):
3195
+ class InformaticaActivityType(pycarlo.lib.types.Enum):
3186
3196
  """Enumeration Choices:
3187
3197
 
3188
3198
  * `TASK`None
@@ -3197,7 +3207,7 @@ class InformaticaActivityType(sgqlc.types.Enum):
3197
3207
  Int = sgqlc.types.Int
3198
3208
 
3199
3209
 
3200
- class IntegrationKeyScope(sgqlc.types.Enum):
3210
+ class IntegrationKeyScope(pycarlo.lib.types.Enum):
3201
3211
  """Enumeration Choices:
3202
3212
 
3203
3213
  * `Agent`None
@@ -3229,7 +3239,7 @@ class IntegrationKeyScope(sgqlc.types.Enum):
3229
3239
  )
3230
3240
 
3231
3241
 
3232
- class InternalJobType(sgqlc.types.Enum):
3242
+ class InternalJobType(pycarlo.lib.types.Enum):
3233
3243
  """Enumeration Choices:
3234
3244
 
3235
3245
  * `AGENT_REACHABILITY`None
@@ -3269,7 +3279,7 @@ class InternalJobType(sgqlc.types.Enum):
3269
3279
  )
3270
3280
 
3271
3281
 
3272
- class InvitationType(sgqlc.types.Enum):
3282
+ class InvitationType(pycarlo.lib.types.Enum):
3273
3283
  """Used to select the template to use for new user invites.
3274
3284
 
3275
3285
  Enumeration Choices:
@@ -3281,7 +3291,7 @@ class InvitationType(sgqlc.types.Enum):
3281
3291
  __choices__ = ("Observability",)
3282
3292
 
3283
3293
 
3284
- class IsNotMonitoredReason(sgqlc.types.Enum):
3294
+ class IsNotMonitoredReason(pycarlo.lib.types.Enum):
3285
3295
  """Enumeration Choices:
3286
3296
 
3287
3297
  * `ACCOUNT_NOT_BASED_ON_MONITORING`None
@@ -3317,7 +3327,7 @@ class JSONString(sgqlc.types.Scalar):
3317
3327
  __schema__ = schema
3318
3328
 
3319
3329
 
3320
- class JobExecutionStatus(sgqlc.types.Enum):
3330
+ class JobExecutionStatus(pycarlo.lib.types.Enum):
3321
3331
  """Enumeration Choices:
3322
3332
 
3323
3333
  * `CANCELLED`None
@@ -3332,7 +3342,7 @@ class JobExecutionStatus(sgqlc.types.Enum):
3332
3342
  __choices__ = ("CANCELLED", "EVALUATING", "FAILED", "IN_PROGRESS", "SUCCESS", "TIMEOUT")
3333
3343
 
3334
3344
 
3335
- class JobPerformanceFacet(sgqlc.types.Enum):
3345
+ class JobPerformanceFacet(pycarlo.lib.types.Enum):
3336
3346
  """Enumeration Choices:
3337
3347
 
3338
3348
  * `DBT_PROJECT`None
@@ -3356,7 +3366,7 @@ class JobPerformanceFacet(sgqlc.types.Enum):
3356
3366
  )
3357
3367
 
3358
3368
 
3359
- class JobsPerformanceSummarySort(sgqlc.types.Enum):
3369
+ class JobsPerformanceSummarySort(pycarlo.lib.types.Enum):
3360
3370
  """Enumeration Choices:
3361
3371
 
3362
3372
  * `AVG_RUN_DURATION`None
@@ -3388,7 +3398,7 @@ class JobsPerformanceSummarySort(sgqlc.types.Enum):
3388
3398
  )
3389
3399
 
3390
3400
 
3391
- class LineageFilterName(sgqlc.types.Enum):
3401
+ class LineageFilterName(pycarlo.lib.types.Enum):
3392
3402
  """Enumeration Choices:
3393
3403
 
3394
3404
  * `OBJECT_TYPE`None
@@ -3398,7 +3408,7 @@ class LineageFilterName(sgqlc.types.Enum):
3398
3408
  __choices__ = ("OBJECT_TYPE",)
3399
3409
 
3400
3410
 
3401
- class LineageFilterOperator(sgqlc.types.Enum):
3411
+ class LineageFilterOperator(pycarlo.lib.types.Enum):
3402
3412
  """Enumeration Choices:
3403
3413
 
3404
3414
  * `EXCLUDE`None
@@ -3409,7 +3419,7 @@ class LineageFilterOperator(sgqlc.types.Enum):
3409
3419
  __choices__ = ("EXCLUDE", "INCLUDE")
3410
3420
 
3411
3421
 
3412
- class LineageGraphTraversalDirection(sgqlc.types.Enum):
3422
+ class LineageGraphTraversalDirection(pycarlo.lib.types.Enum):
3413
3423
  """Enumeration Choices:
3414
3424
 
3415
3425
  * `BOTH`None
@@ -3421,7 +3431,7 @@ class LineageGraphTraversalDirection(sgqlc.types.Enum):
3421
3431
  __choices__ = ("BOTH", "DOWNSTREAM", "UPSTREAM")
3422
3432
 
3423
3433
 
3424
- class LineageNodeJobDirectionType(sgqlc.types.Enum):
3434
+ class LineageNodeJobDirectionType(pycarlo.lib.types.Enum):
3425
3435
  """Enumeration Choices:
3426
3436
 
3427
3437
  * `dest`None
@@ -3432,7 +3442,7 @@ class LineageNodeJobDirectionType(sgqlc.types.Enum):
3432
3442
  __choices__ = ("dest", "source")
3433
3443
 
3434
3444
 
3435
- class LineageNodeJobType(sgqlc.types.Enum):
3445
+ class LineageNodeJobType(pycarlo.lib.types.Enum):
3436
3446
  """Enumeration Choices:
3437
3447
 
3438
3448
  * `AIRFLOW`None
@@ -3462,7 +3472,7 @@ class LineageNodeJobType(sgqlc.types.Enum):
3462
3472
  )
3463
3473
 
3464
3474
 
3465
- class LogsIntegrationType(sgqlc.types.Enum):
3475
+ class LogsIntegrationType(pycarlo.lib.types.Enum):
3466
3476
  """Enumeration Choices:
3467
3477
 
3468
3478
  * `DEFAULT`None
@@ -3472,7 +3482,7 @@ class LogsIntegrationType(sgqlc.types.Enum):
3472
3482
  __choices__ = ("DEFAULT",)
3473
3483
 
3474
3484
 
3475
- class LookbackRange(sgqlc.types.Enum):
3485
+ class LookbackRange(pycarlo.lib.types.Enum):
3476
3486
  """Enumeration Choices:
3477
3487
 
3478
3488
  * `ONE_DAY`None
@@ -3485,7 +3495,7 @@ class LookbackRange(sgqlc.types.Enum):
3485
3495
  __choices__ = ("ONE_DAY", "ONE_HOUR", "SEVEN_DAY", "TWELVE_HOUR")
3486
3496
 
3487
3497
 
3488
- class MetricDataType(sgqlc.types.Enum):
3498
+ class MetricDataType(pycarlo.lib.types.Enum):
3489
3499
  """Enumeration Choices:
3490
3500
 
3491
3501
  * `NUMERIC`None
@@ -3497,7 +3507,7 @@ class MetricDataType(sgqlc.types.Enum):
3497
3507
  __choices__ = ("NUMERIC", "PERCENTAGE", "STRING")
3498
3508
 
3499
3509
 
3500
- class MetricMonitorSelectExpressionModelDataType(sgqlc.types.Enum):
3510
+ class MetricMonitorSelectExpressionModelDataType(pycarlo.lib.types.Enum):
3501
3511
  """Enumeration Choices:
3502
3512
 
3503
3513
  * `BOOLEAN`: BOOLEAN
@@ -3510,7 +3520,7 @@ class MetricMonitorSelectExpressionModelDataType(sgqlc.types.Enum):
3510
3520
  __choices__ = ("BOOLEAN", "DATETIME", "NUMERIC", "STRING")
3511
3521
 
3512
3522
 
3513
- class MetricMonitoringBootstrapState(sgqlc.types.Enum):
3523
+ class MetricMonitoringBootstrapState(pycarlo.lib.types.Enum):
3514
3524
  """Enumeration Choices:
3515
3525
 
3516
3526
  * `COMPLETED`None
@@ -3536,7 +3546,7 @@ class MetricMonitoringBootstrapState(sgqlc.types.Enum):
3536
3546
  )
3537
3547
 
3538
3548
 
3539
- class MetricMonitoringModelPriority(sgqlc.types.Enum):
3549
+ class MetricMonitoringModelPriority(pycarlo.lib.types.Enum):
3540
3550
  """Enumeration Choices:
3541
3551
 
3542
3552
  * `P1`: P1
@@ -3550,7 +3560,7 @@ class MetricMonitoringModelPriority(sgqlc.types.Enum):
3550
3560
  __choices__ = ("P1", "P2", "P3", "P4", "P5")
3551
3561
 
3552
3562
 
3553
- class MetricMonitoringModelType(sgqlc.types.Enum):
3563
+ class MetricMonitoringModelType(pycarlo.lib.types.Enum):
3554
3564
  """Enumeration Choices:
3555
3565
 
3556
3566
  * `AGENT`: Agent
@@ -3572,7 +3582,7 @@ class MetricMonitoringModelType(sgqlc.types.Enum):
3572
3582
  )
3573
3583
 
3574
3584
 
3575
- class ModelExecutionTypes(sgqlc.types.Enum):
3585
+ class ModelExecutionTypes(pycarlo.lib.types.Enum):
3576
3586
  """Enumeration Choices:
3577
3587
 
3578
3588
  * `DBT`None
@@ -3582,7 +3592,7 @@ class ModelExecutionTypes(sgqlc.types.Enum):
3582
3592
  __choices__ = ("DBT",)
3583
3593
 
3584
3594
 
3585
- class MonitorAggTimeInterval(sgqlc.types.Enum):
3595
+ class MonitorAggTimeInterval(pycarlo.lib.types.Enum):
3586
3596
  """Enumeration Choices:
3587
3597
 
3588
3598
  * `DAY`None
@@ -3595,7 +3605,7 @@ class MonitorAggTimeInterval(sgqlc.types.Enum):
3595
3605
  __choices__ = ("DAY", "HOUR", "MONTH", "WEEK")
3596
3606
 
3597
3607
 
3598
- class MonitorBreachType(sgqlc.types.Enum):
3608
+ class MonitorBreachType(pycarlo.lib.types.Enum):
3599
3609
  """Enumeration Choices:
3600
3610
 
3601
3611
  * `BREACHED`None
@@ -3606,7 +3616,7 @@ class MonitorBreachType(sgqlc.types.Enum):
3606
3616
  __choices__ = ("BREACHED", "NOT_BREACHED")
3607
3617
 
3608
3618
 
3609
- class MonitorConfigurationStatus(sgqlc.types.Enum):
3619
+ class MonitorConfigurationStatus(pycarlo.lib.types.Enum):
3610
3620
  """Enumeration Choices:
3611
3621
 
3612
3622
  * `ERROR`None
@@ -3628,7 +3638,7 @@ class MonitorConfigurationStatus(sgqlc.types.Enum):
3628
3638
  )
3629
3639
 
3630
3640
 
3631
- class MonitorConfigurationStatusType(sgqlc.types.Enum):
3641
+ class MonitorConfigurationStatusType(pycarlo.lib.types.Enum):
3632
3642
  """Enumeration Choices:
3633
3643
 
3634
3644
  * `MISCONFIGURED`None
@@ -3640,7 +3650,7 @@ class MonitorConfigurationStatusType(sgqlc.types.Enum):
3640
3650
  __choices__ = ("MISCONFIGURED", "NO_STATUS", "SUCCESS")
3641
3651
 
3642
3652
 
3643
- class MonitorLabelsMatchType(sgqlc.types.Enum):
3653
+ class MonitorLabelsMatchType(pycarlo.lib.types.Enum):
3644
3654
  """Used to select the logical operator for matching labels
3645
3655
 
3646
3656
  Enumeration Choices:
@@ -3653,7 +3663,7 @@ class MonitorLabelsMatchType(sgqlc.types.Enum):
3653
3663
  __choices__ = ("AND", "OR")
3654
3664
 
3655
3665
 
3656
- class MonitorRecommendationModel(sgqlc.types.Enum):
3666
+ class MonitorRecommendationModel(pycarlo.lib.types.Enum):
3657
3667
  """Enumeration Choices:
3658
3668
 
3659
3669
  * `METRIC`None
@@ -3666,7 +3676,7 @@ class MonitorRecommendationModel(sgqlc.types.Enum):
3666
3676
  __choices__ = ("METRIC", "REGEX", "SEGMENTATION", "VALIDATION")
3667
3677
 
3668
3678
 
3669
- class MonitorRecommendationType(sgqlc.types.Enum):
3679
+ class MonitorRecommendationType(pycarlo.lib.types.Enum):
3670
3680
  """Enumeration Choices:
3671
3681
 
3672
3682
  * `AI_VALIDATION`None
@@ -3677,7 +3687,7 @@ class MonitorRecommendationType(sgqlc.types.Enum):
3677
3687
  __choices__ = ("AI_VALIDATION", "HEURISTIC")
3678
3688
 
3679
3689
 
3680
- class MonitorRunStatusType(sgqlc.types.Enum):
3690
+ class MonitorRunStatusType(pycarlo.lib.types.Enum):
3681
3691
  """Enumeration Choices:
3682
3692
 
3683
3693
  * `ERROR`None
@@ -3692,7 +3702,7 @@ class MonitorRunStatusType(sgqlc.types.Enum):
3692
3702
  __choices__ = ("ERROR", "IN_PROGRESS", "NO_STATUS", "PAUSED", "SNOOZED", "SUCCESS")
3693
3703
 
3694
3704
 
3695
- class MonitorStatusType(sgqlc.types.Enum):
3705
+ class MonitorStatusType(pycarlo.lib.types.Enum):
3696
3706
  """Enumeration Choices:
3697
3707
 
3698
3708
  * `ERROR`None
@@ -3720,7 +3730,7 @@ class MonitorStatusType(sgqlc.types.Enum):
3720
3730
  )
3721
3731
 
3722
3732
 
3723
- class MonitorTrainingStatusType(sgqlc.types.Enum):
3733
+ class MonitorTrainingStatusType(pycarlo.lib.types.Enum):
3724
3734
  """Enumeration Choices:
3725
3735
 
3726
3736
  * `INSUFFICIENT_DATA`None
@@ -3733,7 +3743,7 @@ class MonitorTrainingStatusType(sgqlc.types.Enum):
3733
3743
  __choices__ = ("INSUFFICIENT_DATA", "IN_TRAINING", "NO_STATUS", "SUCCESS")
3734
3744
 
3735
3745
 
3736
- class MonitoredRuleType(sgqlc.types.Enum):
3746
+ class MonitoredRuleType(pycarlo.lib.types.Enum):
3737
3747
  """Enumeration Choices:
3738
3748
 
3739
3749
  * `AllTablesMonitoringRule`None
@@ -3755,7 +3765,7 @@ class MonitoredRuleType(sgqlc.types.Enum):
3755
3765
  )
3756
3766
 
3757
3767
 
3758
- class MonitoredTableRuleJobStatus(sgqlc.types.Enum):
3768
+ class MonitoredTableRuleJobStatus(pycarlo.lib.types.Enum):
3759
3769
  """Enumeration Choices:
3760
3770
 
3761
3771
  * `COMPLETED`None
@@ -3768,7 +3778,7 @@ class MonitoredTableRuleJobStatus(sgqlc.types.Enum):
3768
3778
  __choices__ = ("COMPLETED", "FAILED", "IN_PROGRESS", "QUEUED")
3769
3779
 
3770
3780
 
3771
- class MonitoredTableRuleTableAttribute(sgqlc.types.Enum):
3781
+ class MonitoredTableRuleTableAttribute(pycarlo.lib.types.Enum):
3772
3782
  """Enumeration Choices:
3773
3783
 
3774
3784
  * `last_activity`None
@@ -3790,7 +3800,7 @@ class MonitoredTableRuleTableAttribute(sgqlc.types.Enum):
3790
3800
  )
3791
3801
 
3792
3802
 
3793
- class MonitoredTableRuleType(sgqlc.types.Enum):
3803
+ class MonitoredTableRuleType(pycarlo.lib.types.Enum):
3794
3804
  """Enumeration Choices:
3795
3805
 
3796
3806
  * `all`None
@@ -3820,7 +3830,7 @@ class MonitoredTableRuleType(sgqlc.types.Enum):
3820
3830
  )
3821
3831
 
3822
3832
 
3823
- class MutedEventType(sgqlc.types.Enum):
3833
+ class MutedEventType(pycarlo.lib.types.Enum):
3824
3834
  """Enumeration Choices:
3825
3835
 
3826
3836
  * `CUSTOM_RULE_ANOM`None
@@ -3854,7 +3864,7 @@ class MutedEventType(sgqlc.types.Enum):
3854
3864
  )
3855
3865
 
3856
3866
 
3857
- class NodeType(sgqlc.types.Enum):
3867
+ class NodeType(pycarlo.lib.types.Enum):
3858
3868
  """Enumeration Choices:
3859
3869
 
3860
3870
  * `MODEL`None
@@ -3868,7 +3878,7 @@ class NodeType(sgqlc.types.Enum):
3868
3878
  __choices__ = ("MODEL", "SEED", "SNAPSHOT", "SOURCE", "TEST")
3869
3879
 
3870
3880
 
3871
- class OAuthGrantTypeEnum(sgqlc.types.Enum):
3881
+ class OAuthGrantTypeEnum(pycarlo.lib.types.Enum):
3872
3882
  """Enumeration Choices:
3873
3883
 
3874
3884
  * `client_credentials`None
@@ -3879,7 +3889,7 @@ class OAuthGrantTypeEnum(sgqlc.types.Enum):
3879
3889
  __choices__ = ("client_credentials", "password")
3880
3890
 
3881
3891
 
3882
- class ObjectPropertyModelPropertySourceType(sgqlc.types.Enum):
3892
+ class ObjectPropertyModelPropertySourceType(pycarlo.lib.types.Enum):
3883
3893
  """Enumeration Choices:
3884
3894
 
3885
3895
  * `COLLECTION`: Collection
@@ -3903,7 +3913,7 @@ class ObjectPropertyModelPropertySourceType(sgqlc.types.Enum):
3903
3913
  )
3904
3914
 
3905
3915
 
3906
- class OotbTableMonitorTypeEnum(sgqlc.types.Enum):
3916
+ class OotbTableMonitorTypeEnum(pycarlo.lib.types.Enum):
3907
3917
  """Enumeration Choices:
3908
3918
 
3909
3919
  * `FRESHNESS`None
@@ -3916,7 +3926,7 @@ class OotbTableMonitorTypeEnum(sgqlc.types.Enum):
3916
3926
  __choices__ = ("FRESHNESS", "SCHEMA", "VOLUME_SIZE_DIFF", "VOLUME_UNCHANGED_SIZE")
3917
3927
 
3918
3928
 
3919
- class PerformanceDashboardAccessValidationCode(sgqlc.types.Enum):
3929
+ class PerformanceDashboardAccessValidationCode(pycarlo.lib.types.Enum):
3920
3930
  """Performance dashboard access validation codes.
3921
3931
 
3922
3932
  Enumeration Choices:
@@ -3931,7 +3941,7 @@ class PerformanceDashboardAccessValidationCode(sgqlc.types.Enum):
3931
3941
  __choices__ = ("Admin_Disabled", "Ok", "Unauthorized", "Unsupported_Warehouse")
3932
3942
 
3933
3943
 
3934
- class PeriodGrouping(sgqlc.types.Enum):
3944
+ class PeriodGrouping(pycarlo.lib.types.Enum):
3935
3945
  """Time size of the periods.
3936
3946
 
3937
3947
  Enumeration Choices:
@@ -3945,7 +3955,7 @@ class PeriodGrouping(sgqlc.types.Enum):
3945
3955
  __choices__ = ("DAY", "MONTH", "WEEK")
3946
3956
 
3947
3957
 
3948
- class Permission(sgqlc.types.Enum):
3958
+ class Permission(pycarlo.lib.types.Enum):
3949
3959
  """Currently-defined permissions.
3950
3960
 
3951
3961
  Enumeration Choices:
@@ -4077,7 +4087,7 @@ class Permission(sgqlc.types.Enum):
4077
4087
  )
4078
4088
 
4079
4089
 
4080
- class PermissionEffect(sgqlc.types.Enum):
4090
+ class PermissionEffect(pycarlo.lib.types.Enum):
4081
4091
  """Possible effects of a policy.
4082
4092
 
4083
4093
  Enumeration Choices:
@@ -4090,7 +4100,7 @@ class PermissionEffect(sgqlc.types.Enum):
4090
4100
  __choices__ = ("Allow", "Deny")
4091
4101
 
4092
4102
 
4093
- class PiiFilteringFailModeType(sgqlc.types.Enum):
4103
+ class PiiFilteringFailModeType(pycarlo.lib.types.Enum):
4094
4104
  """Enumeration Choices:
4095
4105
 
4096
4106
  * `CLOSE`None
@@ -4101,7 +4111,7 @@ class PiiFilteringFailModeType(sgqlc.types.Enum):
4101
4111
  __choices__ = ("CLOSE", "OPEN")
4102
4112
 
4103
4113
 
4104
- class PlatformServiceSupportCode(sgqlc.types.Enum):
4114
+ class PlatformServiceSupportCode(pycarlo.lib.types.Enum):
4105
4115
  """Enumeration Choices:
4106
4116
 
4107
4117
  * `DATA_STORE_NOT_SUPPORTED`: Data stores not supported by the
@@ -4125,7 +4135,7 @@ class PlatformServiceSupportCode(sgqlc.types.Enum):
4125
4135
  )
4126
4136
 
4127
4137
 
4128
- class PlatformTypeEnum(sgqlc.types.Enum):
4138
+ class PlatformTypeEnum(pycarlo.lib.types.Enum):
4129
4139
  """Enumeration Choices:
4130
4140
 
4131
4141
  * `AWS`None
@@ -4139,7 +4149,7 @@ class PlatformTypeEnum(sgqlc.types.Enum):
4139
4149
  __choices__ = ("AWS", "AWS_GENERIC", "AZURE", "GCP", "SNOWFLAKE")
4140
4150
 
4141
4151
 
4142
- class PowerBIAuthModeEnum(sgqlc.types.Enum):
4152
+ class PowerBIAuthModeEnum(pycarlo.lib.types.Enum):
4143
4153
  """Enumeration Choices:
4144
4154
 
4145
4155
  * `PRIMARY_USER`None
@@ -4150,7 +4160,7 @@ class PowerBIAuthModeEnum(sgqlc.types.Enum):
4150
4160
  __choices__ = ("PRIMARY_USER", "SERVICE_PRINCIPAL")
4151
4161
 
4152
4162
 
4153
- class PowerBIAuthModeEnumV2(sgqlc.types.Enum):
4163
+ class PowerBIAuthModeEnumV2(pycarlo.lib.types.Enum):
4154
4164
  """Enumeration Choices:
4155
4165
 
4156
4166
  * `PRIMARY_USER`None
@@ -4161,7 +4171,7 @@ class PowerBIAuthModeEnumV2(sgqlc.types.Enum):
4161
4171
  __choices__ = ("PRIMARY_USER", "SERVICE_PRINCIPAL")
4162
4172
 
4163
4173
 
4164
- class PowerBIUpdateAuthModeEnumV2(sgqlc.types.Enum):
4174
+ class PowerBIUpdateAuthModeEnumV2(pycarlo.lib.types.Enum):
4165
4175
  """Enumeration Choices:
4166
4176
 
4167
4177
  * `PRIMARY_USER`None
@@ -4172,7 +4182,7 @@ class PowerBIUpdateAuthModeEnumV2(sgqlc.types.Enum):
4172
4182
  __choices__ = ("PRIMARY_USER", "SERVICE_PRINCIPAL")
4173
4183
 
4174
4184
 
4175
- class PredicateArity(sgqlc.types.Enum):
4185
+ class PredicateArity(pycarlo.lib.types.Enum):
4176
4186
  """Enumeration Choices:
4177
4187
 
4178
4188
  * `BINARY`None
@@ -4183,7 +4193,7 @@ class PredicateArity(sgqlc.types.Enum):
4183
4193
  __choices__ = ("BINARY", "UNARY")
4184
4194
 
4185
4195
 
4186
- class PredicateRequiredType(sgqlc.types.Enum):
4196
+ class PredicateRequiredType(pycarlo.lib.types.Enum):
4187
4197
  """Enumeration Choices:
4188
4198
 
4189
4199
  * `ANY`None
@@ -4197,7 +4207,7 @@ class PredicateRequiredType(sgqlc.types.Enum):
4197
4207
  __choices__ = ("ANY", "DATE", "REGEX", "TEXT", "TIMESTAMP")
4198
4208
 
4199
4209
 
4200
- class Priority(sgqlc.types.Enum):
4210
+ class Priority(pycarlo.lib.types.Enum):
4201
4211
  """Enumeration Choices:
4202
4212
 
4203
4213
  * `P1`None
@@ -4211,7 +4221,7 @@ class Priority(sgqlc.types.Enum):
4211
4221
  __choices__ = ("P1", "P2", "P3", "P4", "P5")
4212
4222
 
4213
4223
 
4214
- class Provider(sgqlc.types.Enum):
4224
+ class Provider(pycarlo.lib.types.Enum):
4215
4225
  """Enumeration Choices:
4216
4226
 
4217
4227
  * `AZURE_DEVOPS`None
@@ -4223,7 +4233,7 @@ class Provider(sgqlc.types.Enum):
4223
4233
  __choices__ = ("AZURE_DEVOPS", "GITHUB", "GITLAB")
4224
4234
 
4225
4235
 
4226
- class ProvisioningSchema(sgqlc.types.Enum):
4236
+ class ProvisioningSchema(pycarlo.lib.types.Enum):
4227
4237
  """Schema version for this auth provisioning configuration.
4228
4238
 
4229
4239
  Enumeration Choices:
@@ -4235,7 +4245,7 @@ class ProvisioningSchema(sgqlc.types.Enum):
4235
4245
  __choices__ = ("SCIM_V2",)
4236
4246
 
4237
4247
 
4238
- class PullRequestFilterName(sgqlc.types.Enum):
4248
+ class PullRequestFilterName(pycarlo.lib.types.Enum):
4239
4249
  """Enumeration Choices:
4240
4250
 
4241
4251
  * `AUTHOR`None
@@ -4249,7 +4259,7 @@ class PullRequestFilterName(sgqlc.types.Enum):
4249
4259
  __choices__ = ("AUTHOR", "FILE_PATH", "FULL_REPO", "REPO", "TEXT_SEARCH")
4250
4260
 
4251
4261
 
4252
- class QueryCategory(sgqlc.types.Enum):
4262
+ class QueryCategory(pycarlo.lib.types.Enum):
4253
4263
  """Possible query categories
4254
4264
 
4255
4265
  Enumeration Choices:
@@ -4307,7 +4317,7 @@ class QueryCategory(sgqlc.types.Enum):
4307
4317
  )
4308
4318
 
4309
4319
 
4310
- class QueryLogType(sgqlc.types.Enum):
4320
+ class QueryLogType(pycarlo.lib.types.Enum):
4311
4321
  """Enumeration Choices:
4312
4322
 
4313
4323
  * `READ`None
@@ -4318,7 +4328,7 @@ class QueryLogType(sgqlc.types.Enum):
4318
4328
  __choices__ = ("READ", "WRITE")
4319
4329
 
4320
4330
 
4321
- class QueryRcaType(sgqlc.types.Enum):
4331
+ class QueryRcaType(pycarlo.lib.types.Enum):
4322
4332
  """Types of query RCAs
4323
4333
 
4324
4334
  Enumeration Choices:
@@ -4337,7 +4347,7 @@ class QueryRcaType(sgqlc.types.Enum):
4337
4347
  __choices__ = ("AFR", "DBT_FAIL_SKIP", "EMPTY", "FAILED", "NEW", "QDR", "UPDATE", "UPSTREAM")
4338
4348
 
4339
4349
 
4340
- class QueryResultType(sgqlc.types.Enum):
4350
+ class QueryResultType(pycarlo.lib.types.Enum):
4341
4351
  """Enumeration Choices:
4342
4352
 
4343
4353
  * `LABELED_NUMERICS`None
@@ -4361,7 +4371,7 @@ class QueryResultType(sgqlc.types.Enum):
4361
4371
  )
4362
4372
 
4363
4373
 
4364
- class QueryType(sgqlc.types.Enum):
4374
+ class QueryType(pycarlo.lib.types.Enum):
4365
4375
  """Enumeration Choices:
4366
4376
 
4367
4377
  * `read`: Filter for reads on the table
@@ -4372,7 +4382,7 @@ class QueryType(sgqlc.types.Enum):
4372
4382
  __choices__ = ("read", "write")
4373
4383
 
4374
4384
 
4375
- class RcaJobsModelJobType(sgqlc.types.Enum):
4385
+ class RcaJobsModelJobType(pycarlo.lib.types.Enum):
4376
4386
  """Enumeration Choices:
4377
4387
 
4378
4388
  * `DELTA_HISTORY_SAMPLING`: Delta History sampling
@@ -4401,7 +4411,7 @@ class RcaJobsModelJobType(sgqlc.types.Enum):
4401
4411
  )
4402
4412
 
4403
4413
 
4404
- class RcaJobsModelStatus(sgqlc.types.Enum):
4414
+ class RcaJobsModelStatus(pycarlo.lib.types.Enum):
4405
4415
  """Enumeration Choices:
4406
4416
 
4407
4417
  * `CANCELED`: canceled
@@ -4416,7 +4426,7 @@ class RcaJobsModelStatus(sgqlc.types.Enum):
4416
4426
  __choices__ = ("CANCELED", "EMPTY", "EXPIRED", "FAILED", "FOUND", "PARTIAL_DATA")
4417
4427
 
4418
4428
 
4419
- class RcaStatus(sgqlc.types.Enum):
4429
+ class RcaStatus(pycarlo.lib.types.Enum):
4420
4430
  """Enumeration Choices:
4421
4431
 
4422
4432
  * `CANCELED`None
@@ -4431,7 +4441,7 @@ class RcaStatus(sgqlc.types.Enum):
4431
4441
  __choices__ = ("CANCELED", "EMPTY", "EXPIRED", "FAILED", "FOUND", "PARTIAL_DATA")
4432
4442
 
4433
4443
 
4434
- class RelationshipType(sgqlc.types.Enum):
4444
+ class RelationshipType(pycarlo.lib.types.Enum):
4435
4445
  """Enumeration Choices:
4436
4446
 
4437
4447
  * `EXPERT`None
@@ -4442,7 +4452,7 @@ class RelationshipType(sgqlc.types.Enum):
4442
4452
  __choices__ = ("EXPERT", "OWNER")
4443
4453
 
4444
4454
 
4445
- class ReportStatusEnum(sgqlc.types.Enum):
4455
+ class ReportStatusEnum(pycarlo.lib.types.Enum):
4446
4456
  """Enumeration Choices:
4447
4457
 
4448
4458
  * `COMPLETED`None
@@ -4455,7 +4465,7 @@ class ReportStatusEnum(sgqlc.types.Enum):
4455
4465
  __choices__ = ("COMPLETED", "FAILED", "QUEUED", "RUNNING")
4456
4466
 
4457
4467
 
4458
- class ReportTypeEnum(sgqlc.types.Enum):
4468
+ class ReportTypeEnum(pycarlo.lib.types.Enum):
4459
4469
  """Enumeration Choices:
4460
4470
 
4461
4471
  * `ALERTS_REPORT`None
@@ -4477,7 +4487,7 @@ class ReportTypeEnum(sgqlc.types.Enum):
4477
4487
  )
4478
4488
 
4479
4489
 
4480
- class ResponseMetadataType(sgqlc.types.Enum):
4490
+ class ResponseMetadataType(pycarlo.lib.types.Enum):
4481
4491
  """Enumeration Choices:
4482
4492
 
4483
4493
  * `MONITOR_RECOMMENDATIONS`None
@@ -4488,7 +4498,7 @@ class ResponseMetadataType(sgqlc.types.Enum):
4488
4498
  __choices__ = ("MONITOR_RECOMMENDATIONS", "QUERY_RESPONSE")
4489
4499
 
4490
4500
 
4491
- class SamplingEnabledMetricTypes(sgqlc.types.Enum):
4501
+ class SamplingEnabledMetricTypes(pycarlo.lib.types.Enum):
4492
4502
  """Enumeration Choices:
4493
4503
 
4494
4504
  * `DUPLICATE_COUNT`None
@@ -4624,7 +4634,7 @@ class SamplingEnabledMetricTypes(sgqlc.types.Enum):
4624
4634
  )
4625
4635
 
4626
4636
 
4627
- class ScheduleType(sgqlc.types.Enum):
4637
+ class ScheduleType(pycarlo.lib.types.Enum):
4628
4638
  """Enumeration Choices:
4629
4639
 
4630
4640
  * `DYNAMIC`None
@@ -4637,7 +4647,7 @@ class ScheduleType(sgqlc.types.Enum):
4637
4647
  __choices__ = ("DYNAMIC", "FIXED", "LOOSE", "MANUAL")
4638
4648
 
4639
4649
 
4640
- class SearchCategoryEnum(sgqlc.types.Enum):
4650
+ class SearchCategoryEnum(pycarlo.lib.types.Enum):
4641
4651
  """Enumeration Choices:
4642
4652
 
4643
4653
  * `ALL_OTHER_TABLES`None
@@ -4648,7 +4658,7 @@ class SearchCategoryEnum(sgqlc.types.Enum):
4648
4658
  __choices__ = ("ALL_OTHER_TABLES", "RESOLVED_TABLES")
4649
4659
 
4650
4660
 
4651
- class SegmentationType(sgqlc.types.Enum):
4661
+ class SegmentationType(pycarlo.lib.types.Enum):
4652
4662
  """Defines different types of segmentation types
4653
4663
 
4654
4664
  Enumeration Choices:
@@ -4661,7 +4671,7 @@ class SegmentationType(sgqlc.types.Enum):
4661
4671
  __choices__ = ("CUSTOM_SQL_EXPRESSION", "FIELD")
4662
4672
 
4663
4673
 
4664
- class SelfHostedCredentialsTypeEnum(sgqlc.types.Enum):
4674
+ class SelfHostedCredentialsTypeEnum(pycarlo.lib.types.Enum):
4665
4675
  """Enumeration Choices:
4666
4676
 
4667
4677
  * `AWS_SECRETS_MANAGER`None
@@ -4672,7 +4682,7 @@ class SelfHostedCredentialsTypeEnum(sgqlc.types.Enum):
4672
4682
  __choices__ = ("AWS_SECRETS_MANAGER", "ENV_VAR")
4673
4683
 
4674
4684
 
4675
- class SelfHostedUpdateCredentialsTypeEnum(sgqlc.types.Enum):
4685
+ class SelfHostedUpdateCredentialsTypeEnum(pycarlo.lib.types.Enum):
4676
4686
  """Enumeration Choices:
4677
4687
 
4678
4688
  * `AWS_SECRETS_MANAGER`None
@@ -4683,7 +4693,7 @@ class SelfHostedUpdateCredentialsTypeEnum(sgqlc.types.Enum):
4683
4693
  __choices__ = ("AWS_SECRETS_MANAGER", "ENV_VAR")
4684
4694
 
4685
4695
 
4686
- class SensitivityLevels(sgqlc.types.Enum):
4696
+ class SensitivityLevels(pycarlo.lib.types.Enum):
4687
4697
  """Enumeration Choices:
4688
4698
 
4689
4699
  * `HIGH`None
@@ -4695,7 +4705,7 @@ class SensitivityLevels(sgqlc.types.Enum):
4695
4705
  __choices__ = ("HIGH", "LOW", "MEDIUM")
4696
4706
 
4697
4707
 
4698
- class ServiceNowCredentialsType(sgqlc.types.Enum):
4708
+ class ServiceNowCredentialsType(pycarlo.lib.types.Enum):
4699
4709
  """Enumeration Choices:
4700
4710
 
4701
4711
  * `OAUTH_CLIENT_CREDENTIALS`None
@@ -4706,7 +4716,7 @@ class ServiceNowCredentialsType(sgqlc.types.Enum):
4706
4716
  __choices__ = ("OAUTH_CLIENT_CREDENTIALS", "USERNAME_PASSWORD")
4707
4717
 
4708
4718
 
4709
- class Severity(sgqlc.types.Enum):
4719
+ class Severity(pycarlo.lib.types.Enum):
4710
4720
  """Enumeration Choices:
4711
4721
 
4712
4722
  * `SEV_1`None
@@ -4719,7 +4729,7 @@ class Severity(sgqlc.types.Enum):
4719
4729
  __choices__ = ("SEV_1", "SEV_2", "SEV_3", "SEV_4")
4720
4730
 
4721
4731
 
4722
- class SeverityInput(sgqlc.types.Enum):
4732
+ class SeverityInput(pycarlo.lib.types.Enum):
4723
4733
  """Enumeration Choices:
4724
4734
 
4725
4735
  * `NO_SEVERITY`None
@@ -4733,7 +4743,7 @@ class SeverityInput(sgqlc.types.Enum):
4733
4743
  __choices__ = ("NO_SEVERITY", "SEV_1", "SEV_2", "SEV_3", "SEV_4")
4734
4744
 
4735
4745
 
4736
- class SharedQueryTypeEnum(sgqlc.types.Enum):
4746
+ class SharedQueryTypeEnum(pycarlo.lib.types.Enum):
4737
4747
  """Enumeration Choices:
4738
4748
 
4739
4749
  * `PERMANENT`None
@@ -4744,7 +4754,7 @@ class SharedQueryTypeEnum(sgqlc.types.Enum):
4744
4754
  __choices__ = ("PERMANENT", "TEMPORARY")
4745
4755
 
4746
4756
 
4747
- class SlackAppType(sgqlc.types.Enum):
4757
+ class SlackAppType(pycarlo.lib.types.Enum):
4748
4758
  """Defines different types of Slack apps
4749
4759
 
4750
4760
  Enumeration Choices:
@@ -4757,7 +4767,7 @@ class SlackAppType(sgqlc.types.Enum):
4757
4767
  __choices__ = ("DISCOVER", "OBSERVE")
4758
4768
 
4759
4769
 
4760
- class SlackCredentialsV2ModelSlackAppType(sgqlc.types.Enum):
4770
+ class SlackCredentialsV2ModelSlackAppType(pycarlo.lib.types.Enum):
4761
4771
  """Enumeration Choices:
4762
4772
 
4763
4773
  * `DISCOVER`: discover
@@ -4768,7 +4778,7 @@ class SlackCredentialsV2ModelSlackAppType(sgqlc.types.Enum):
4768
4778
  __choices__ = ("DISCOVER", "OBSERVE")
4769
4779
 
4770
4780
 
4771
- class SlackEngagementEventType(sgqlc.types.Enum):
4781
+ class SlackEngagementEventType(pycarlo.lib.types.Enum):
4772
4782
  """Enumeration Choices:
4773
4783
 
4774
4784
  * `CHANNEL_COMMENT`None
@@ -4781,7 +4791,7 @@ class SlackEngagementEventType(sgqlc.types.Enum):
4781
4791
  __choices__ = ("CHANNEL_COMMENT", "REACTION_ADDED", "REACTION_REMOVED", "THREAD_REPLY")
4782
4792
 
4783
4793
 
4784
- class SqlDialect(sgqlc.types.Enum):
4794
+ class SqlDialect(pycarlo.lib.types.Enum):
4785
4795
  """Enumeration Choices:
4786
4796
 
4787
4797
  * `ATHENA`None
@@ -4837,7 +4847,7 @@ class SqlDialect(sgqlc.types.Enum):
4837
4847
  )
4838
4848
 
4839
4849
 
4840
- class SqlJobCheckpointStatus(sgqlc.types.Enum):
4850
+ class SqlJobCheckpointStatus(pycarlo.lib.types.Enum):
4841
4851
  """Enumeration Choices:
4842
4852
 
4843
4853
  * `EXECUTING_COMPLETE`None
@@ -4859,7 +4869,7 @@ class SqlJobCheckpointStatus(sgqlc.types.Enum):
4859
4869
  )
4860
4870
 
4861
4871
 
4862
- class State(sgqlc.types.Enum):
4872
+ class State(pycarlo.lib.types.Enum):
4863
4873
  """Enumeration Choices:
4864
4874
 
4865
4875
  * `APPLIED`None
@@ -4872,7 +4882,7 @@ class State(sgqlc.types.Enum):
4872
4882
  __choices__ = ("APPLIED", "FAILED", "PENDING", "SKIPPED")
4873
4883
 
4874
4884
 
4875
- class StatementOption(sgqlc.types.Enum):
4885
+ class StatementOption(pycarlo.lib.types.Enum):
4876
4886
  """Enumeration Choices:
4877
4887
 
4878
4888
  * `ALL_ACCOUNT_OWNERS`None
@@ -4883,7 +4893,7 @@ class StatementOption(sgqlc.types.Enum):
4883
4893
  __choices__ = ("ALL_ACCOUNT_OWNERS", "SPECIFIC_ADDRESSES")
4884
4894
 
4885
4895
 
4886
- class Status(sgqlc.types.Enum):
4896
+ class Status(pycarlo.lib.types.Enum):
4887
4897
  """Access Request status
4888
4898
 
4889
4899
  Enumeration Choices:
@@ -4897,7 +4907,7 @@ class Status(sgqlc.types.Enum):
4897
4907
  __choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
4898
4908
 
4899
4909
 
4900
- class StorageEncryptionType(sgqlc.types.Enum):
4910
+ class StorageEncryptionType(pycarlo.lib.types.Enum):
4901
4911
  """Enumeration Choices:
4902
4912
 
4903
4913
  * `AMAZON_S3_SSE`None
@@ -4908,7 +4918,7 @@ class StorageEncryptionType(sgqlc.types.Enum):
4908
4918
  __choices__ = ("AMAZON_S3_SSE", "MONTE_CARLO_KMS")
4909
4919
 
4910
4920
 
4911
- class StorageTypeEnum(sgqlc.types.Enum):
4921
+ class StorageTypeEnum(pycarlo.lib.types.Enum):
4912
4922
  """Enumeration Choices:
4913
4923
 
4914
4924
  * `AZURE_BLOB`None
@@ -4921,7 +4931,7 @@ class StorageTypeEnum(sgqlc.types.Enum):
4921
4931
  __choices__ = ("AZURE_BLOB", "GCS", "S3", "SNOWFLAKE_INTERNAL_STAGE")
4922
4932
 
4923
4933
 
4924
- class StreamingClusterModelClusterType(sgqlc.types.Enum):
4934
+ class StreamingClusterModelClusterType(pycarlo.lib.types.Enum):
4925
4935
  """Enumeration Choices:
4926
4936
 
4927
4937
  * `CONFLUENT_KAFKA`: Confluent Kafka
@@ -4943,7 +4953,7 @@ class StreamingClusterModelClusterType(sgqlc.types.Enum):
4943
4953
  )
4944
4954
 
4945
4955
 
4946
- class StreamingSystemModelType(sgqlc.types.Enum):
4956
+ class StreamingSystemModelType(pycarlo.lib.types.Enum):
4947
4957
  """Enumeration Choices:
4948
4958
 
4949
4959
  * `CONFLUENT_CLOUD`: Confluent Cloud
@@ -4958,7 +4968,7 @@ class StreamingSystemModelType(sgqlc.types.Enum):
4958
4968
  String = sgqlc.types.String
4959
4969
 
4960
4970
 
4961
- class TableAnomalyModelReason(sgqlc.types.Enum):
4971
+ class TableAnomalyModelReason(pycarlo.lib.types.Enum):
4962
4972
  """Enumeration Choices:
4963
4973
 
4964
4974
  * `AGENT`: Agent Anomaly
@@ -4994,7 +5004,7 @@ class TableAnomalyModelReason(sgqlc.types.Enum):
4994
5004
  )
4995
5005
 
4996
5006
 
4997
- class TableFlagType(sgqlc.types.Enum):
5007
+ class TableFlagType(pycarlo.lib.types.Enum):
4998
5008
  """Enumeration Choices:
4999
5009
 
5000
5010
  * `DEPRECATION`None
@@ -5005,7 +5015,7 @@ class TableFlagType(sgqlc.types.Enum):
5005
5015
  __choices__ = ("DEPRECATION", "WARNING")
5006
5016
 
5007
5017
 
5008
- class TableMonitorMetricType(sgqlc.types.Enum):
5018
+ class TableMonitorMetricType(pycarlo.lib.types.Enum):
5009
5019
  """Enumeration Choices:
5010
5020
 
5011
5021
  * `TABLES_WITHOUT_MONITORS_COUNT`None
@@ -5023,7 +5033,7 @@ class TableMonitorMetricType(sgqlc.types.Enum):
5023
5033
  )
5024
5034
 
5025
5035
 
5026
- class TableMonitorModelPriority(sgqlc.types.Enum):
5036
+ class TableMonitorModelPriority(pycarlo.lib.types.Enum):
5027
5037
  """Enumeration Choices:
5028
5038
 
5029
5039
  * `P1`: P1
@@ -5037,7 +5047,7 @@ class TableMonitorModelPriority(sgqlc.types.Enum):
5037
5047
  __choices__ = ("P1", "P2", "P3", "P4", "P5")
5038
5048
 
5039
5049
 
5040
- class TableType(sgqlc.types.Enum):
5050
+ class TableType(pycarlo.lib.types.Enum):
5041
5051
  """Enumeration Choices:
5042
5052
 
5043
5053
  * `DYNAMIC`None
@@ -5063,7 +5073,7 @@ class TableType(sgqlc.types.Enum):
5063
5073
  )
5064
5074
 
5065
5075
 
5066
- class TagAssignmentObjectType(sgqlc.types.Enum):
5076
+ class TagAssignmentObjectType(pycarlo.lib.types.Enum):
5067
5077
  """Enumeration Choices:
5068
5078
 
5069
5079
  * `CUSTOM_RULE_MONITOR`None
@@ -5075,7 +5085,7 @@ class TagAssignmentObjectType(sgqlc.types.Enum):
5075
5085
  __choices__ = ("CUSTOM_RULE_MONITOR", "METRIC_MONITOR", "TABLE_MONITOR")
5076
5086
 
5077
5087
 
5078
- class TagType(sgqlc.types.Enum):
5088
+ class TagType(pycarlo.lib.types.Enum):
5079
5089
  """Enumeration Choices:
5080
5090
 
5081
5091
  * `DATA_QUALITY_DIMENSION_TAG`None
@@ -5086,7 +5096,7 @@ class TagType(sgqlc.types.Enum):
5086
5096
  __choices__ = ("DATA_QUALITY_DIMENSION_TAG", "MONITOR_TAG")
5087
5097
 
5088
5098
 
5089
- class TasksPerformanceSummarySort(sgqlc.types.Enum):
5099
+ class TasksPerformanceSummarySort(pycarlo.lib.types.Enum):
5090
5100
  """Enumeration Choices:
5091
5101
 
5092
5102
  * `AVG_RUN_DURATION`None
@@ -5118,7 +5128,7 @@ class TasksPerformanceSummarySort(sgqlc.types.Enum):
5118
5128
  )
5119
5129
 
5120
5130
 
5121
- class TeradataLogMechEnum(sgqlc.types.Enum):
5131
+ class TeradataLogMechEnum(pycarlo.lib.types.Enum):
5122
5132
  """Enumeration Choices:
5123
5133
 
5124
5134
  * `BROWSER`None
@@ -5133,7 +5143,7 @@ class TeradataLogMechEnum(sgqlc.types.Enum):
5133
5143
  __choices__ = ("BROWSER", "JWT", "KRB5", "LDAP", "TD2", "TDNEGO")
5134
5144
 
5135
5145
 
5136
- class TeradataLogMechUpdateEnum(sgqlc.types.Enum):
5146
+ class TeradataLogMechUpdateEnum(pycarlo.lib.types.Enum):
5137
5147
  """Enumeration Choices:
5138
5148
 
5139
5149
  * `BROWSER`None
@@ -5148,7 +5158,7 @@ class TeradataLogMechUpdateEnum(sgqlc.types.Enum):
5148
5158
  __choices__ = ("BROWSER", "JWT", "KRB5", "LDAP", "TD2", "TDNEGO")
5149
5159
 
5150
5160
 
5151
- class TeradataSSLModeEnum(sgqlc.types.Enum):
5161
+ class TeradataSSLModeEnum(pycarlo.lib.types.Enum):
5152
5162
  """Enumeration Choices:
5153
5163
 
5154
5164
  * `ALLOW`None
@@ -5163,7 +5173,7 @@ class TeradataSSLModeEnum(sgqlc.types.Enum):
5163
5173
  __choices__ = ("ALLOW", "DISABLE", "PREFER", "REQUIRE", "VERIFY_CA", "VERIFY_FULL")
5164
5174
 
5165
5175
 
5166
- class TeradataSSLModeUpdateEnum(sgqlc.types.Enum):
5176
+ class TeradataSSLModeUpdateEnum(pycarlo.lib.types.Enum):
5167
5177
  """Enumeration Choices:
5168
5178
 
5169
5179
  * `ALLOW`None
@@ -5178,7 +5188,7 @@ class TeradataSSLModeUpdateEnum(sgqlc.types.Enum):
5178
5188
  __choices__ = ("ALLOW", "DISABLE", "PREFER", "REQUIRE", "VERIFY_CA", "VERIFY_FULL")
5179
5189
 
5180
5190
 
5181
- class ThresholdModifierType(sgqlc.types.Enum):
5191
+ class ThresholdModifierType(pycarlo.lib.types.Enum):
5182
5192
  """Enumeration Choices:
5183
5193
 
5184
5194
  * `METRIC`None
@@ -5189,7 +5199,7 @@ class ThresholdModifierType(sgqlc.types.Enum):
5189
5199
  __choices__ = ("METRIC", "PERCENTAGE")
5190
5200
 
5191
5201
 
5192
- class ThresholdStatus(sgqlc.types.Enum):
5202
+ class ThresholdStatus(pycarlo.lib.types.Enum):
5193
5203
  """Enumeration Choices:
5194
5204
 
5195
5205
  * `ACTIVE`None
@@ -5201,7 +5211,7 @@ class ThresholdStatus(sgqlc.types.Enum):
5201
5211
  __choices__ = ("ACTIVE", "INACTIVE", "TRAINING")
5202
5212
 
5203
5213
 
5204
- class ThresholdType(sgqlc.types.Enum):
5214
+ class ThresholdType(pycarlo.lib.types.Enum):
5205
5215
  """Enumeration Choices:
5206
5216
 
5207
5217
  * `COMPARISON`None
@@ -5227,7 +5237,7 @@ class ThresholdType(sgqlc.types.Enum):
5227
5237
  )
5228
5238
 
5229
5239
 
5230
- class TimeBucketSize(sgqlc.types.Enum):
5240
+ class TimeBucketSize(pycarlo.lib.types.Enum):
5231
5241
  """Enumeration Choices:
5232
5242
 
5233
5243
  * `DAY`None
@@ -5238,7 +5248,7 @@ class TimeBucketSize(sgqlc.types.Enum):
5238
5248
  __choices__ = ("DAY", "HOUR")
5239
5249
 
5240
5250
 
5241
- class TimeRangeUnit(sgqlc.types.Enum):
5251
+ class TimeRangeUnit(pycarlo.lib.types.Enum):
5242
5252
  """Enumeration Choices:
5243
5253
 
5244
5254
  * `DAY`None
@@ -5250,7 +5260,33 @@ class TimeRangeUnit(sgqlc.types.Enum):
5250
5260
  __choices__ = ("DAY", "MONTH", "WEEK")
5251
5261
 
5252
5262
 
5253
- class TraceSortDirection(sgqlc.types.Enum):
5263
+ class TraceFilterFieldName(pycarlo.lib.types.Enum):
5264
+ """Field names for trace filters.
5265
+
5266
+ Enumeration Choices:
5267
+
5268
+ * `COMPLETION_TOKENS`None
5269
+ * `DURATION`None
5270
+ * `MODEL`None
5271
+ * `PROMPT_TOKENS`None
5272
+ * `TASK`None
5273
+ * `TOTAL_TOKENS`None
5274
+ * `WORKFLOW`None
5275
+ """
5276
+
5277
+ __schema__ = schema
5278
+ __choices__ = (
5279
+ "COMPLETION_TOKENS",
5280
+ "DURATION",
5281
+ "MODEL",
5282
+ "PROMPT_TOKENS",
5283
+ "TASK",
5284
+ "TOTAL_TOKENS",
5285
+ "WORKFLOW",
5286
+ )
5287
+
5288
+
5289
+ class TraceSortDirection(pycarlo.lib.types.Enum):
5254
5290
  """Sort direction for traces.
5255
5291
 
5256
5292
  Enumeration Choices:
@@ -5263,7 +5299,7 @@ class TraceSortDirection(sgqlc.types.Enum):
5263
5299
  __choices__ = ("ASC", "DESC")
5264
5300
 
5265
5301
 
5266
- class TraceSortField(sgqlc.types.Enum):
5302
+ class TraceSortField(pycarlo.lib.types.Enum):
5267
5303
  """Fields that can be used for sorting traces.
5268
5304
 
5269
5305
  Enumeration Choices:
@@ -5291,7 +5327,7 @@ class TraceSortField(sgqlc.types.Enum):
5291
5327
  )
5292
5328
 
5293
5329
 
5294
- class TutorialStatusType(sgqlc.types.Enum):
5330
+ class TutorialStatusType(pycarlo.lib.types.Enum):
5295
5331
  """Enumeration Choices:
5296
5332
 
5297
5333
  * `completed`None
@@ -5312,7 +5348,7 @@ class UUID(sgqlc.types.Scalar):
5312
5348
  __schema__ = schema
5313
5349
 
5314
5350
 
5315
- class UnifiedUserAssignmentModelRelationshipType(sgqlc.types.Enum):
5351
+ class UnifiedUserAssignmentModelRelationshipType(pycarlo.lib.types.Enum):
5316
5352
  """Enumeration Choices:
5317
5353
 
5318
5354
  * `EXPERT`: Expert
@@ -5331,7 +5367,7 @@ class Upload(sgqlc.types.Scalar):
5331
5367
  __schema__ = schema
5332
5368
 
5333
5369
 
5334
- class UserDefinedMonitorModelBreached(sgqlc.types.Enum):
5370
+ class UserDefinedMonitorModelBreached(pycarlo.lib.types.Enum):
5335
5371
  """Enumeration Choices:
5336
5372
 
5337
5373
  * `BREACHED`: BREACHED
@@ -5342,7 +5378,7 @@ class UserDefinedMonitorModelBreached(sgqlc.types.Enum):
5342
5378
  __choices__ = ("BREACHED", "NOT_BREACHED")
5343
5379
 
5344
5380
 
5345
- class UserDefinedMonitorModelConsolidatedMonitorStatus(sgqlc.types.Enum):
5381
+ class UserDefinedMonitorModelConsolidatedMonitorStatus(pycarlo.lib.types.Enum):
5346
5382
  """Enumeration Choices:
5347
5383
 
5348
5384
  * `DISABLED`: DISABLED
@@ -5357,7 +5393,7 @@ class UserDefinedMonitorModelConsolidatedMonitorStatus(sgqlc.types.Enum):
5357
5393
  __choices__ = ("DISABLED", "ENABLED", "ERROR", "INSUFFICIENT_DATA", "SNOOZED", "TRAINING")
5358
5394
 
5359
5395
 
5360
- class UserDefinedMonitorModelMonitorType(sgqlc.types.Enum):
5396
+ class UserDefinedMonitorModelMonitorType(pycarlo.lib.types.Enum):
5361
5397
  """Enumeration Choices:
5362
5398
 
5363
5399
  * `AGENT`: Agent
@@ -5395,7 +5431,7 @@ class UserDefinedMonitorModelMonitorType(sgqlc.types.Enum):
5395
5431
  )
5396
5432
 
5397
5433
 
5398
- class UserDefinedMonitorModelScheduleType(sgqlc.types.Enum):
5434
+ class UserDefinedMonitorModelScheduleType(pycarlo.lib.types.Enum):
5399
5435
  """Enumeration Choices:
5400
5436
 
5401
5437
  * `DYNAMIC`: Dynamic
@@ -5408,7 +5444,7 @@ class UserDefinedMonitorModelScheduleType(sgqlc.types.Enum):
5408
5444
  __choices__ = ("DYNAMIC", "FIXED", "LOOSE", "MANUAL")
5409
5445
 
5410
5446
 
5411
- class UserDefinedMonitorModelSegmentationType(sgqlc.types.Enum):
5447
+ class UserDefinedMonitorModelSegmentationType(pycarlo.lib.types.Enum):
5412
5448
  """Enumeration Choices:
5413
5449
 
5414
5450
  * `CUSTOM_SQL_EXPRESSION`: custom_sql_expression
@@ -5419,7 +5455,7 @@ class UserDefinedMonitorModelSegmentationType(sgqlc.types.Enum):
5419
5455
  __choices__ = ("CUSTOM_SQL_EXPRESSION", "FIELD")
5420
5456
 
5421
5457
 
5422
- class UserDefinedMonitorModelUdmType(sgqlc.types.Enum):
5458
+ class UserDefinedMonitorModelUdmType(pycarlo.lib.types.Enum):
5423
5459
  """Enumeration Choices:
5424
5460
 
5425
5461
  * `MONITOR`: MONITOR
@@ -5430,7 +5466,7 @@ class UserDefinedMonitorModelUdmType(sgqlc.types.Enum):
5430
5466
  __choices__ = ("MONITOR", "RULE")
5431
5467
 
5432
5468
 
5433
- class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
5469
+ class UserDefinedMonitorSearchFields(pycarlo.lib.types.Enum):
5434
5470
  """Defines which fields can be used for full text search in the user
5435
5471
  defined monitors view
5436
5472
 
@@ -5457,7 +5493,7 @@ class UserDefinedMonitorSearchFields(sgqlc.types.Enum):
5457
5493
  )
5458
5494
 
5459
5495
 
5460
- class UserDefinedMonitors(sgqlc.types.Enum):
5496
+ class UserDefinedMonitors(pycarlo.lib.types.Enum):
5461
5497
  """Enumeration Choices:
5462
5498
 
5463
5499
  * `AGENT`: Agent
@@ -5497,7 +5533,7 @@ class UserDefinedMonitors(sgqlc.types.Enum):
5497
5533
  )
5498
5534
 
5499
5535
 
5500
- class UserInviteModelInviteType(sgqlc.types.Enum):
5536
+ class UserInviteModelInviteType(pycarlo.lib.types.Enum):
5501
5537
  """Enumeration Choices:
5502
5538
 
5503
5539
  * `OBSERVABILITY`: observability
@@ -5507,7 +5543,7 @@ class UserInviteModelInviteType(sgqlc.types.Enum):
5507
5543
  __choices__ = ("OBSERVABILITY",)
5508
5544
 
5509
5545
 
5510
- class UserInviteModelState(sgqlc.types.Enum):
5546
+ class UserInviteModelState(pycarlo.lib.types.Enum):
5511
5547
  """Enumeration Choices:
5512
5548
 
5513
5549
  * `ACCEPTED`: Accepted
@@ -5519,7 +5555,7 @@ class UserInviteModelState(sgqlc.types.Enum):
5519
5555
  __choices__ = ("ACCEPTED", "INVALIDATED", "SENT")
5520
5556
 
5521
5557
 
5522
- class UserModelDeleteReason(sgqlc.types.Enum):
5558
+ class UserModelDeleteReason(pycarlo.lib.types.Enum):
5523
5559
  """Enumeration Choices:
5524
5560
 
5525
5561
  * `ACCOUNT_DEACTIVATED`: account deactivated
@@ -5537,7 +5573,7 @@ class UserModelDeleteReason(sgqlc.types.Enum):
5537
5573
  )
5538
5574
 
5539
5575
 
5540
- class UserModelPersona(sgqlc.types.Enum):
5576
+ class UserModelPersona(pycarlo.lib.types.Enum):
5541
5577
  """Enumeration Choices:
5542
5578
 
5543
5579
  * `AI_ENGINEER`: ai_engineer
@@ -5569,7 +5605,7 @@ class UserModelPersona(sgqlc.types.Enum):
5569
5605
  )
5570
5606
 
5571
5607
 
5572
- class UserModelState(sgqlc.types.Enum):
5608
+ class UserModelState(pycarlo.lib.types.Enum):
5573
5609
  """Enumeration Choices:
5574
5610
 
5575
5611
  * `CHECK_BACK`: Check Back Soon
@@ -5597,7 +5633,7 @@ class UserModelState(sgqlc.types.Enum):
5597
5633
  )
5598
5634
 
5599
5635
 
5600
- class UserPersona(sgqlc.types.Enum):
5636
+ class UserPersona(pycarlo.lib.types.Enum):
5601
5637
  """Enumeration Choices:
5602
5638
 
5603
5639
  * `AI_ENGINEER`None
@@ -5629,7 +5665,7 @@ class UserPersona(sgqlc.types.Enum):
5629
5665
  )
5630
5666
 
5631
5667
 
5632
- class WarehouseModelConnectionType(sgqlc.types.Enum):
5668
+ class WarehouseModelConnectionType(pycarlo.lib.types.Enum):
5633
5669
  """Enumeration Choices:
5634
5670
 
5635
5671
  * `BIGQUERY`: BigQuery
@@ -5671,7 +5707,7 @@ class WarehouseModelConnectionType(sgqlc.types.Enum):
5671
5707
  )
5672
5708
 
5673
5709
 
5674
- class WarehouseRelationType(sgqlc.types.Enum):
5710
+ class WarehouseRelationType(pycarlo.lib.types.Enum):
5675
5711
  """Enumeration Choices:
5676
5712
 
5677
5713
  * `CONSUMER`None
@@ -5682,7 +5718,7 @@ class WarehouseRelationType(sgqlc.types.Enum):
5682
5718
  __choices__ = ("CONSUMER", "PRODUCER")
5683
5719
 
5684
5720
 
5685
- class WarehouseTableModelStatus(sgqlc.types.Enum):
5721
+ class WarehouseTableModelStatus(pycarlo.lib.types.Enum):
5686
5722
  """Enumeration Choices:
5687
5723
 
5688
5724
  * `G`None
@@ -5694,7 +5730,7 @@ class WarehouseTableModelStatus(sgqlc.types.Enum):
5694
5730
  __choices__ = ("G", "R", "Y")
5695
5731
 
5696
5732
 
5697
- class WebhookServiceTypes(sgqlc.types.Enum):
5733
+ class WebhookServiceTypes(pycarlo.lib.types.Enum):
5698
5734
  """Enumeration Choices:
5699
5735
 
5700
5736
  * `DATABRICKS`None
@@ -5709,7 +5745,7 @@ class WebhookServiceTypes(sgqlc.types.Enum):
5709
5745
  __choices__ = ("DATABRICKS", "GITLAB", "JIRA", "OPSGENIE", "PAGERDUTY", "SERVICENOW")
5710
5746
 
5711
5747
 
5712
- class WidgetType(sgqlc.types.Enum):
5748
+ class WidgetType(pycarlo.lib.types.Enum):
5713
5749
  """Enumeration Choices:
5714
5750
 
5715
5751
  * `DISCRETE`None
@@ -7562,6 +7598,7 @@ class GetTracesInput(sgqlc.types.Input):
7562
7598
  "trace_table_mcon",
7563
7599
  "start_time",
7564
7600
  "end_time",
7601
+ "filters",
7565
7602
  "first",
7566
7603
  "after",
7567
7604
  "last",
@@ -7585,6 +7622,9 @@ class GetTracesInput(sgqlc.types.Input):
7585
7622
  end_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="endTime")
7586
7623
  """End of time range (inclusive)"""
7587
7624
 
7625
+ filters = sgqlc.types.Field("TraceFiltersInput", graphql_name="filters")
7626
+ """Optional filters to refine results"""
7627
+
7588
7628
  first = sgqlc.types.Field(Int, graphql_name="first")
7589
7629
  """Number of records to fetch for forward pagination"""
7590
7630
 
@@ -10089,6 +10129,129 @@ class TopQueryGroupsRequestType(sgqlc.types.Input):
10089
10129
  metric_field_name = sgqlc.types.Field(String, graphql_name="metricFieldName")
10090
10130
 
10091
10131
 
10132
+ class TraceFilterDataRequest(sgqlc.types.Input):
10133
+ """Request for filter values data."""
10134
+
10135
+ __schema__ = schema
10136
+ __field_names__ = ("field_name", "search_criteria", "first", "after", "search_value")
10137
+ field_name = sgqlc.types.Field(
10138
+ sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
10139
+ )
10140
+ """Filter field name to get values for"""
10141
+
10142
+ search_criteria = sgqlc.types.Field(
10143
+ sgqlc.types.non_null("TraceFilterDataSearchCriteria"), graphql_name="searchCriteria"
10144
+ )
10145
+ """Search criteria"""
10146
+
10147
+ first = sgqlc.types.Field(Int, graphql_name="first")
10148
+ """Number of values to return (max 50)"""
10149
+
10150
+ after = sgqlc.types.Field(String, graphql_name="after")
10151
+ """Cursor for pagination"""
10152
+
10153
+ search_value = sgqlc.types.Field(String, graphql_name="searchValue")
10154
+ """Search string to filter values"""
10155
+
10156
+
10157
+ class TraceFilterDataSearchCriteria(sgqlc.types.Input):
10158
+ """Search criteria for getting filter values."""
10159
+
10160
+ __schema__ = schema
10161
+ __field_names__ = ("agent_name", "trace_table_mcon", "start_time", "end_time", "filters")
10162
+ agent_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="agentName")
10163
+ """Agent name"""
10164
+
10165
+ trace_table_mcon = sgqlc.types.Field(
10166
+ sgqlc.types.non_null(String), graphql_name="traceTableMcon"
10167
+ )
10168
+ """Trace table MCON"""
10169
+
10170
+ start_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startTime")
10171
+ """Start time for traces"""
10172
+
10173
+ end_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="endTime")
10174
+ """End time for traces"""
10175
+
10176
+ filters = sgqlc.types.Field(
10177
+ sgqlc.types.list_of("TraceFilterDataSearchCriteriaFilter"), graphql_name="filters"
10178
+ )
10179
+ """Active filters to apply (for cross-filtering)"""
10180
+
10181
+
10182
+ class TraceFilterDataSearchCriteriaFilter(sgqlc.types.Input):
10183
+ """A filter to apply when getting filter values (for cross-
10184
+ filtering).
10185
+ """
10186
+
10187
+ __schema__ = schema
10188
+ __field_names__ = ("field_name", "value")
10189
+ field_name = sgqlc.types.Field(
10190
+ sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
10191
+ )
10192
+ """Filter field name"""
10193
+
10194
+ value = sgqlc.types.Field(GenericScalar, graphql_name="value")
10195
+ """Filter value"""
10196
+
10197
+
10198
+ class TraceFiltersInput(sgqlc.types.Input):
10199
+ """Optional filters to refine trace results within the time range."""
10200
+
10201
+ __schema__ = schema
10202
+ __field_names__ = (
10203
+ "models",
10204
+ "workflows",
10205
+ "tasks",
10206
+ "min_duration",
10207
+ "max_duration",
10208
+ "min_prompt_tokens",
10209
+ "max_prompt_tokens",
10210
+ "min_completion_tokens",
10211
+ "max_completion_tokens",
10212
+ "min_total_tokens",
10213
+ "max_total_tokens",
10214
+ )
10215
+ models = sgqlc.types.Field(
10216
+ sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="models"
10217
+ )
10218
+ """Filter by model names (OR logic)"""
10219
+
10220
+ workflows = sgqlc.types.Field(
10221
+ sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="workflows"
10222
+ )
10223
+ """Filter by workflow names (OR logic)"""
10224
+
10225
+ tasks = sgqlc.types.Field(
10226
+ sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="tasks"
10227
+ )
10228
+ """Filter by task names (OR logic)"""
10229
+
10230
+ min_duration = sgqlc.types.Field(Float, graphql_name="minDuration")
10231
+ """Minimum duration in seconds"""
10232
+
10233
+ max_duration = sgqlc.types.Field(Float, graphql_name="maxDuration")
10234
+ """Maximum duration in seconds"""
10235
+
10236
+ min_prompt_tokens = sgqlc.types.Field(Int, graphql_name="minPromptTokens")
10237
+ """Minimum prompt tokens"""
10238
+
10239
+ max_prompt_tokens = sgqlc.types.Field(Int, graphql_name="maxPromptTokens")
10240
+ """Maximum prompt tokens"""
10241
+
10242
+ min_completion_tokens = sgqlc.types.Field(Int, graphql_name="minCompletionTokens")
10243
+ """Minimum completion tokens"""
10244
+
10245
+ max_completion_tokens = sgqlc.types.Field(Int, graphql_name="maxCompletionTokens")
10246
+ """Maximum completion tokens"""
10247
+
10248
+ min_total_tokens = sgqlc.types.Field(Int, graphql_name="minTotalTokens")
10249
+ """Minimum total tokens"""
10250
+
10251
+ max_total_tokens = sgqlc.types.Field(Int, graphql_name="maxTotalTokens")
10252
+ """Maximum total tokens"""
10253
+
10254
+
10092
10255
  class TrackTableInput(sgqlc.types.Input):
10093
10256
  __schema__ = schema
10094
10257
  __field_names__ = ("mcon", "full_table_id", "dw_id", "track", "client_mutation_id")
@@ -10976,6 +11139,7 @@ class IMonitor(sgqlc.types.Interface):
10976
11139
  "is_auto_threshold_available",
10977
11140
  "tags",
10978
11141
  "data_quality_dimension",
11142
+ "domain_uuids",
10979
11143
  "is_ootb_replacement",
10980
11144
  "timeout",
10981
11145
  )
@@ -11165,6 +11329,11 @@ class IMonitor(sgqlc.types.Interface):
11165
11329
  data_quality_dimension = sgqlc.types.Field(String, graphql_name="dataQualityDimension")
11166
11330
  """Data quality dimension on a monitor."""
11167
11331
 
11332
+ domain_uuids = sgqlc.types.Field(
11333
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
11334
+ )
11335
+ """Domain UUIDs assigned to the monitor."""
11336
+
11168
11337
  is_ootb_replacement = sgqlc.types.Field(Boolean, graphql_name="isOotbReplacement")
11169
11338
  """(experimental) Returns if this monitor replaces the default ootb
11170
11339
  detector.
@@ -14698,10 +14867,15 @@ class AzureInformation(sgqlc.types.Type):
14698
14867
  """Azure information"""
14699
14868
 
14700
14869
  __schema__ = schema
14701
- __field_names__ = ("subscription_id", "primary_region", "secondary_region")
14870
+ __field_names__ = ("subscription_id", "subscription_name", "primary_region", "secondary_region")
14702
14871
  subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="subscriptionId")
14703
14872
  """Azure Subscription ID"""
14704
14873
 
14874
+ subscription_name = sgqlc.types.Field(
14875
+ sgqlc.types.non_null(String), graphql_name="subscriptionName"
14876
+ )
14877
+ """Azure Subscription Name"""
14878
+
14705
14879
  primary_region = sgqlc.types.Field(String, graphql_name="primaryRegion")
14706
14880
  """Azure Region"""
14707
14881
 
@@ -15817,7 +15991,18 @@ class CollectionDetails(sgqlc.types.Type):
15817
15991
  """Collection platform information"""
15818
15992
 
15819
15993
  __schema__ = schema
15820
- __field_names__ = ("private_link_details", "active_node_details")
15994
+ __field_names__ = (
15995
+ "aws_account_id",
15996
+ "aws_region",
15997
+ "private_link_details",
15998
+ "active_node_details",
15999
+ )
16000
+ aws_account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="awsAccountId")
16001
+ """AWS Account ID"""
16002
+
16003
+ aws_region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="awsRegion")
16004
+ """AWS Region"""
16005
+
15821
16006
  private_link_details = sgqlc.types.Field(
15822
16007
  "PrivateLinkDetails", graphql_name="privateLinkDetails"
15823
16008
  )
@@ -27644,6 +27829,14 @@ class Mutation(sgqlc.types.Type):
27644
27829
  sgqlc.types.non_null(String), graphql_name="description", default=None
27645
27830
  ),
27646
27831
  ),
27832
+ (
27833
+ "domain_uuids",
27834
+ sgqlc.types.Arg(
27835
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
27836
+ graphql_name="domainUuids",
27837
+ default=None,
27838
+ ),
27839
+ ),
27647
27840
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
27648
27841
  (
27649
27842
  "dw_id",
@@ -27715,6 +27908,8 @@ class Mutation(sgqlc.types.Type):
27715
27908
  the custom rule.
27716
27909
  * `data_source` (`DataSourceUnionInput!`)None
27717
27910
  * `description` (`String!`): Description of rule
27911
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
27912
+ valid domain uuid.
27718
27913
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
27719
27914
  and return the MaC YAML and queries. (default: `false`)
27720
27915
  * `dw_id` (`UUID!`): Warehouse UUID
@@ -34710,6 +34905,14 @@ class Mutation(sgqlc.types.Type):
34710
34905
  sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
34711
34906
  ),
34712
34907
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
34908
+ (
34909
+ "domain_uuids",
34910
+ sgqlc.types.Arg(
34911
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
34912
+ graphql_name="domainUuids",
34913
+ default=None,
34914
+ ),
34915
+ ),
34713
34916
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
34714
34917
  (
34715
34918
  "event_rollup_count",
@@ -34772,6 +34975,8 @@ class Mutation(sgqlc.types.Type):
34772
34975
  * `data_quality_dimension` (`String`): Data quality dimension on
34773
34976
  the custom rule.
34774
34977
  * `description` (`String`): Used as the name in the UI
34978
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
34979
+ valid domain uuid.
34775
34980
  * `dw_id` (`UUID`): Warehouse the tables are contained in.
34776
34981
  Required when using fullTableIds
34777
34982
  * `event_rollup_count` (`Int`): The number of events to roll up
@@ -34825,6 +35030,14 @@ class Mutation(sgqlc.types.Type):
34825
35030
  sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
34826
35031
  ),
34827
35032
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
35033
+ (
35034
+ "domain_uuids",
35035
+ sgqlc.types.Arg(
35036
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
35037
+ graphql_name="domainUuids",
35038
+ default=None,
35039
+ ),
35040
+ ),
34828
35041
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
34829
35042
  (
34830
35043
  "event_rollup_count",
@@ -34891,6 +35104,8 @@ class Mutation(sgqlc.types.Type):
34891
35104
  * `data_quality_dimension` (`String`): Data quality dimension on
34892
35105
  the custom rule.
34893
35106
  * `description` (`String`): Used as the name in the UI
35107
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
35108
+ valid domain uuid.
34894
35109
  * `dw_id` (`UUID`): Warehouse the tables are contained in.
34895
35110
  Required when using fullTableIds
34896
35111
  * `event_rollup_count` (`Int`): The number of events to roll up
@@ -34960,6 +35175,14 @@ class Mutation(sgqlc.types.Type):
34960
35175
  sgqlc.types.non_null(String), graphql_name="description", default=None
34961
35176
  ),
34962
35177
  ),
35178
+ (
35179
+ "domain_uuids",
35180
+ sgqlc.types.Arg(
35181
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
35182
+ graphql_name="domainUuids",
35183
+ default=None,
35184
+ ),
35185
+ ),
34963
35186
  (
34964
35187
  "dw_id",
34965
35188
  sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
@@ -35071,6 +35294,8 @@ class Mutation(sgqlc.types.Type):
35071
35294
  * `data_quality_dimension` (`String`): Data quality dimension on
35072
35295
  the custom rule.
35073
35296
  * `description` (`String!`): Description of rule
35297
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
35298
+ valid domain uuid.
35074
35299
  * `dw_id` (`UUID!`): Warehouse UUID
35075
35300
  * `event_rollup_count` (`Int`): The number of events to roll up
35076
35301
  into a single incident
@@ -35165,6 +35390,14 @@ class Mutation(sgqlc.types.Type):
35165
35390
  sgqlc.types.non_null(String), graphql_name="description", default=None
35166
35391
  ),
35167
35392
  ),
35393
+ (
35394
+ "domain_uuids",
35395
+ sgqlc.types.Arg(
35396
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
35397
+ graphql_name="domainUuids",
35398
+ default=None,
35399
+ ),
35400
+ ),
35168
35401
  (
35169
35402
  "dw_id",
35170
35403
  sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
@@ -35276,6 +35509,8 @@ class Mutation(sgqlc.types.Type):
35276
35509
  * `data_quality_dimension` (`String`): Data quality dimension on
35277
35510
  the custom rule.
35278
35511
  * `description` (`String!`): Description of rule
35512
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
35513
+ valid domain uuid.
35279
35514
  * `dw_id` (`UUID!`): Warehouse UUID
35280
35515
  * `event_rollup_count` (`Int`): The number of events to roll up
35281
35516
  into a single incident
@@ -35466,6 +35701,14 @@ class Mutation(sgqlc.types.Type):
35466
35701
  sgqlc.types.non_null(String), graphql_name="description", default=None
35467
35702
  ),
35468
35703
  ),
35704
+ (
35705
+ "domain_uuids",
35706
+ sgqlc.types.Arg(
35707
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
35708
+ graphql_name="domainUuids",
35709
+ default=None,
35710
+ ),
35711
+ ),
35469
35712
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
35470
35713
  (
35471
35714
  "event_rollup_count",
@@ -35530,6 +35773,8 @@ class Mutation(sgqlc.types.Type):
35530
35773
  * `data_quality_dimension` (`String`): Data quality dimension on
35531
35774
  the custom rule.
35532
35775
  * `description` (`String!`): Description of rule
35776
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
35777
+ valid domain uuid.
35533
35778
  * `dw_id` (`UUID`): Warehouse the tables are contained in.
35534
35779
  Required when using fullTableIds
35535
35780
  * `event_rollup_count` (`Int`): The number of events to roll up
@@ -35597,6 +35842,14 @@ class Mutation(sgqlc.types.Type):
35597
35842
  sgqlc.types.non_null(String), graphql_name="description", default=None
35598
35843
  ),
35599
35844
  ),
35845
+ (
35846
+ "domain_uuids",
35847
+ sgqlc.types.Arg(
35848
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
35849
+ graphql_name="domainUuids",
35850
+ default=None,
35851
+ ),
35852
+ ),
35600
35853
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
35601
35854
  (
35602
35855
  "dw_id",
@@ -35681,6 +35934,8 @@ class Mutation(sgqlc.types.Type):
35681
35934
  * `data_quality_dimension` (`String`): Data quality dimension of
35682
35935
  the monitor.
35683
35936
  * `description` (`String!`): Used as the name in the UI
35937
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
35938
+ valid domain uuid.
35684
35939
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
35685
35940
  and return the MaC YAML and queries. (default: `false`)
35686
35941
  * `dw_id` (`UUID!`): Warehouse UUID
@@ -35748,6 +36003,14 @@ class Mutation(sgqlc.types.Type):
35748
36003
  sgqlc.types.non_null(String), graphql_name="description", default=None
35749
36004
  ),
35750
36005
  ),
36006
+ (
36007
+ "domain_uuids",
36008
+ sgqlc.types.Arg(
36009
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
36010
+ graphql_name="domainUuids",
36011
+ default=None,
36012
+ ),
36013
+ ),
35751
36014
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
35752
36015
  (
35753
36016
  "event_rollup_count",
@@ -35846,6 +36109,8 @@ class Mutation(sgqlc.types.Type):
35846
36109
  * `data_quality_dimension` (`String`): Data quality dimension on
35847
36110
  the custom rule.
35848
36111
  * `description` (`String!`): Description of rule
36112
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
36113
+ valid domain uuid.
35849
36114
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
35850
36115
  and return the MaC YAML and queries. (default: `false`)
35851
36116
  * `event_rollup_count` (`Int`): The number of events to roll up
@@ -35908,6 +36173,14 @@ class Mutation(sgqlc.types.Type):
35908
36173
  sgqlc.types.non_null(String), graphql_name="description", default=None
35909
36174
  ),
35910
36175
  ),
36176
+ (
36177
+ "domain_uuids",
36178
+ sgqlc.types.Arg(
36179
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
36180
+ graphql_name="domainUuids",
36181
+ default=None,
36182
+ ),
36183
+ ),
35911
36184
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
35912
36185
  (
35913
36186
  "failure_audiences",
@@ -35954,6 +36227,8 @@ class Mutation(sgqlc.types.Type):
35954
36227
  existing rule
35955
36228
  * `data_quality_dimension` (`String`): data quality dimension
35956
36229
  * `description` (`String!`): Description of rule
36230
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
36231
+ valid domain uuid.
35957
36232
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
35958
36233
  and return the MaC YAML and queries. (default: `false`)
35959
36234
  * `failure_audiences` (`[String!]`): The monitor failure audiences
@@ -35993,6 +36268,14 @@ class Mutation(sgqlc.types.Type):
35993
36268
  sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
35994
36269
  ),
35995
36270
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
36271
+ (
36272
+ "domain_uuids",
36273
+ sgqlc.types.Arg(
36274
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
36275
+ graphql_name="domainUuids",
36276
+ default=None,
36277
+ ),
36278
+ ),
35996
36279
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
35997
36280
  (
35998
36281
  "event_rollup_count",
@@ -36060,6 +36343,8 @@ class Mutation(sgqlc.types.Type):
36060
36343
  * `data_quality_dimension` (`String`): Data quality dimension on
36061
36344
  the custom rule.
36062
36345
  * `description` (`String`): Used as the name in the UI
36346
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
36347
+ valid domain uuid.
36063
36348
  * `dw_id` (`UUID`): Warehouse the tables are contained in.
36064
36349
  Required when using fullTableIds
36065
36350
  * `event_rollup_count` (`Int`): The number of events to roll up
@@ -36686,6 +36971,14 @@ class Mutation(sgqlc.types.Type):
36686
36971
  sgqlc.types.non_null(String), graphql_name="description", default=None
36687
36972
  ),
36688
36973
  ),
36974
+ (
36975
+ "domain_uuids",
36976
+ sgqlc.types.Arg(
36977
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
36978
+ graphql_name="domainUuids",
36979
+ default=None,
36980
+ ),
36981
+ ),
36689
36982
  (
36690
36983
  "dw_id",
36691
36984
  sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
@@ -36788,6 +37081,8 @@ class Mutation(sgqlc.types.Type):
36788
37081
  * `data_quality_dimension` (`String`): Data quality dimension on
36789
37082
  the custom rule.
36790
37083
  * `description` (`String!`): Description of rule
37084
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
37085
+ valid domain uuid.
36791
37086
  * `dw_id` (`UUID!`): Warehouse UUID
36792
37087
  * `event_rollup_count` (`Int`): The number of events to roll up
36793
37088
  into a single incident
@@ -37201,6 +37496,14 @@ class Mutation(sgqlc.types.Type):
37201
37496
  Boolean, graphql_name="disableLookBackBootstrap", default=False
37202
37497
  ),
37203
37498
  ),
37499
+ (
37500
+ "domain_uuids",
37501
+ sgqlc.types.Arg(
37502
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
37503
+ graphql_name="domainUuids",
37504
+ default=None,
37505
+ ),
37506
+ ),
37204
37507
  (
37205
37508
  "fail_on_reset",
37206
37509
  sgqlc.types.Arg(Boolean, graphql_name="failOnReset", default=False),
@@ -37341,6 +37644,8 @@ class Mutation(sgqlc.types.Type):
37341
37644
  * `disable_look_back_bootstrap` (`Boolean`): The flag decides
37342
37645
  whether to disable look back bootstrap for new monitors. By
37343
37646
  default, it's False (default: `false`)
37647
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
37648
+ valid domain uuid.
37344
37649
  * `fail_on_reset` (`Boolean`): Return an error if the update is a
37345
37650
  significant change that would require a monitor reset. (default:
37346
37651
  `false`)
@@ -37509,6 +37814,14 @@ class Mutation(sgqlc.types.Type):
37509
37814
  sgqlc.types.non_null(String), graphql_name="description", default=None
37510
37815
  ),
37511
37816
  ),
37817
+ (
37818
+ "domain_uuids",
37819
+ sgqlc.types.Arg(
37820
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
37821
+ graphql_name="domainUuids",
37822
+ default=None,
37823
+ ),
37824
+ ),
37512
37825
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
37513
37826
  (
37514
37827
  "fail_on_reset",
@@ -37574,6 +37887,8 @@ class Mutation(sgqlc.types.Type):
37574
37887
  * `audiences` (`[String!]`): The monitor notification audiences
37575
37888
  * `data_quality_dimension` (`String`): Data quality dimension.
37576
37889
  * `description` (`String!`): Description of monitor
37890
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
37891
+ valid domain uuid.
37577
37892
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
37578
37893
  and return the MaC YAML and queries. (default: `false`)
37579
37894
  * `fail_on_reset` (`Boolean`): Return an error if the update is a
@@ -37659,6 +37974,14 @@ class Mutation(sgqlc.types.Type):
37659
37974
  Boolean, graphql_name="disableLookBackBootstrap", default=False
37660
37975
  ),
37661
37976
  ),
37977
+ (
37978
+ "domain_uuids",
37979
+ sgqlc.types.Arg(
37980
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
37981
+ graphql_name="domainUuids",
37982
+ default=None,
37983
+ ),
37984
+ ),
37662
37985
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
37663
37986
  (
37664
37987
  "dw_id",
@@ -37750,6 +38073,8 @@ class Mutation(sgqlc.types.Type):
37750
38073
  * `disable_look_back_bootstrap` (`Boolean`): The flag decides
37751
38074
  whether to disable look back bootstrap for new monitors. By
37752
38075
  default, it's False (default: `false`)
38076
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
38077
+ valid domain uuid.
37753
38078
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
37754
38079
  and return the MaC YAML and queries. (default: `false`)
37755
38080
  * `dw_id` (`UUID!`): Warehouse the monitor will be run on.
@@ -37847,6 +38172,14 @@ class Mutation(sgqlc.types.Type):
37847
38172
  sgqlc.types.non_null(String), graphql_name="description", default=None
37848
38173
  ),
37849
38174
  ),
38175
+ (
38176
+ "domain_uuids",
38177
+ sgqlc.types.Arg(
38178
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
38179
+ graphql_name="domainUuids",
38180
+ default=None,
38181
+ ),
38182
+ ),
37850
38183
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
37851
38184
  (
37852
38185
  "dw_id",
@@ -37933,6 +38266,8 @@ class Mutation(sgqlc.types.Type):
37933
38266
  * `data_quality_dimension` (`String`): Data quality dimension.
37934
38267
  * `data_source` (`DataSourceUnionInput!`)None
37935
38268
  * `description` (`String!`): Used as the name in the UI
38269
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
38270
+ valid domain uuid.
37936
38271
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
37937
38272
  and return the MaC YAML and queries. (default: `false`)
37938
38273
  * `dw_id` (`UUID!`): Warehouse the monitor will be run on.
@@ -38005,6 +38340,14 @@ class Mutation(sgqlc.types.Type):
38005
38340
  sgqlc.types.non_null(String), graphql_name="description", default=None
38006
38341
  ),
38007
38342
  ),
38343
+ (
38344
+ "domain_uuids",
38345
+ sgqlc.types.Arg(
38346
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
38347
+ graphql_name="domainUuids",
38348
+ default=None,
38349
+ ),
38350
+ ),
38008
38351
  ("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
38009
38352
  (
38010
38353
  "dw_id",
@@ -38065,6 +38408,8 @@ class Mutation(sgqlc.types.Type):
38065
38408
  * `data_quality_dimension` (`String`): Data quality dimension.
38066
38409
  * `data_source` (`DataSourceUnionInput!`)None
38067
38410
  * `description` (`String!`): Used as the name in the UI
38411
+ * `domain_uuids` (`[UUID!]`): Please provide one and only one
38412
+ valid domain uuid.
38068
38413
  * `dry_run` (`Boolean`): Dry run the monitor creation or update
38069
38414
  and return the MaC YAML and queries. (default: `false`)
38070
38415
  * `dw_id` (`UUID!`): Warehouse the monitor will be run on.
@@ -43480,7 +43825,7 @@ class Mutation(sgqlc.types.Type):
43480
43825
  )
43481
43826
  ),
43482
43827
  )
43483
- """(experimental) Request access to view an alert
43828
+ """(experimental) DEPRECATED. Request access to view an alert
43484
43829
 
43485
43830
  Arguments:
43486
43831
 
@@ -44428,11 +44773,13 @@ class NotificationSetting(sgqlc.types.Type):
44428
44773
  "extra",
44429
44774
  "notification_enabled",
44430
44775
  "audience",
44776
+ "integration_uuid",
44431
44777
  "recipients_display_names",
44432
44778
  "custom_display_names",
44433
44779
  "incident_count_history",
44434
44780
  "incident_count",
44435
44781
  "integration_id",
44782
+ "team_id",
44436
44783
  "channel_url",
44437
44784
  )
44438
44785
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -44485,6 +44832,9 @@ class NotificationSetting(sgqlc.types.Type):
44485
44832
 
44486
44833
  audience = sgqlc.types.Field(NotificationAudience, graphql_name="audience")
44487
44834
 
44835
+ integration_uuid = sgqlc.types.Field(UUID, graphql_name="integrationUuid")
44836
+ """UUID for a recipient integration"""
44837
+
44488
44838
  recipients_display_names = sgqlc.types.Field(
44489
44839
  sgqlc.types.list_of(String), graphql_name="recipientsDisplayNames"
44490
44840
  )
@@ -44504,6 +44854,9 @@ class NotificationSetting(sgqlc.types.Type):
44504
44854
  integration_id = sgqlc.types.Field(UUID, graphql_name="integrationId")
44505
44855
  """Integration ID for the recipient"""
44506
44856
 
44857
+ team_id = sgqlc.types.Field(String, graphql_name="teamId")
44858
+ """Slack team/workspace ID (only for Slack notifications)"""
44859
+
44507
44860
  channel_url = sgqlc.types.Field(String, graphql_name="channelUrl")
44508
44861
  """URL of the channel if this is a channel-based notification.
44509
44862
  Currently only Slack and MS Teams is supported.
@@ -45478,6 +45831,8 @@ class Query(sgqlc.types.Type):
45478
45831
  __field_names__ = (
45479
45832
  "get_agent_metadata",
45480
45833
  "get_agent_trace_tables",
45834
+ "get_traces_filters",
45835
+ "get_traces_filters_data",
45481
45836
  "get_traces",
45482
45837
  "get_table_monitor_metric",
45483
45838
  "get_tables_for_coverage_dashboard",
@@ -45591,6 +45946,10 @@ class Query(sgqlc.types.Type):
45591
45946
  "get_ucs_table_monitor",
45592
45947
  "migrate_to_table_monitors",
45593
45948
  "get_freshness_table_monitor",
45949
+ "get_slack_users",
45950
+ "get_slack_user_groups",
45951
+ "list_slack_users",
45952
+ "list_slack_user_groups",
45594
45953
  "get_servicenow_incident_fields",
45595
45954
  "get_servicenow_users",
45596
45955
  "get_servicenow_integrations",
@@ -45697,8 +46056,10 @@ class Query(sgqlc.types.Type):
45697
46056
  "get_table_columns_lineage",
45698
46057
  "get_derived_tables_partial_lineage",
45699
46058
  "get_parsed_query",
46059
+ "get_trace_tree_nodes",
45700
46060
  "get_agent_span_groups",
45701
46061
  "get_agent_span_sample",
46062
+ "get_agent_span_sample_v2",
45702
46063
  "evaluate_agent_monitor_data_source",
45703
46064
  "get_job_execution_history_logs",
45704
46065
  "get_job_executions",
@@ -45988,6 +46349,37 @@ class Query(sgqlc.types.Type):
45988
46349
  )
45989
46350
  """(experimental) Get all agent trace tables"""
45990
46351
 
46352
+ get_traces_filters = sgqlc.types.Field(
46353
+ sgqlc.types.list_of("TraceFilter"), graphql_name="getTracesFilters"
46354
+ )
46355
+ """(experimental) Get metadata about filters that can be applied when
46356
+ requesting traces
46357
+ """
46358
+
46359
+ get_traces_filters_data = sgqlc.types.Field(
46360
+ sgqlc.types.list_of("TraceFilterData"),
46361
+ graphql_name="getTracesFiltersData",
46362
+ args=sgqlc.types.ArgDict(
46363
+ (
46364
+ (
46365
+ "filters_request",
46366
+ sgqlc.types.Arg(
46367
+ sgqlc.types.non_null(sgqlc.types.list_of(TraceFilterDataRequest)),
46368
+ graphql_name="filtersRequest",
46369
+ default=None,
46370
+ ),
46371
+ ),
46372
+ )
46373
+ ),
46374
+ )
46375
+ """(experimental) Get filter values with counts for trace filters
46376
+ (for faceted search UI)
46377
+
46378
+ Arguments:
46379
+
46380
+ * `filters_request` (`[TraceFilterDataRequest]!`)None
46381
+ """
46382
+
45991
46383
  get_traces = sgqlc.types.Field(
45992
46384
  "TraceConnection",
45993
46385
  graphql_name="getTraces",
@@ -48989,6 +49381,119 @@ class Query(sgqlc.types.Type):
48989
49381
  * `mcon` (`String`): MC unique identifier of the object
48990
49382
  """
48991
49383
 
49384
+ get_slack_users = sgqlc.types.Field(
49385
+ sgqlc.types.list_of(sgqlc.types.non_null("SlackUserOutput")),
49386
+ graphql_name="getSlackUsers",
49387
+ args=sgqlc.types.ArgDict(
49388
+ (
49389
+ (
49390
+ "team_id",
49391
+ sgqlc.types.Arg(
49392
+ sgqlc.types.non_null(String), graphql_name="teamId", default=None
49393
+ ),
49394
+ ),
49395
+ (
49396
+ "user_ids",
49397
+ sgqlc.types.Arg(
49398
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
49399
+ graphql_name="userIds",
49400
+ default=None,
49401
+ ),
49402
+ ),
49403
+ )
49404
+ ),
49405
+ )
49406
+ """(experimental) Bulk fetch Slack users by IDs
49407
+
49408
+ Arguments:
49409
+
49410
+ * `team_id` (`String!`): Slack team/workspace ID
49411
+ * `user_ids` (`[String!]!`): List of Slack user IDs to fetch
49412
+ """
49413
+
49414
+ get_slack_user_groups = sgqlc.types.Field(
49415
+ sgqlc.types.list_of(sgqlc.types.non_null("SlackUserGroupOutput")),
49416
+ graphql_name="getSlackUserGroups",
49417
+ args=sgqlc.types.ArgDict(
49418
+ (
49419
+ (
49420
+ "team_id",
49421
+ sgqlc.types.Arg(
49422
+ sgqlc.types.non_null(String), graphql_name="teamId", default=None
49423
+ ),
49424
+ ),
49425
+ (
49426
+ "usergroup_ids",
49427
+ sgqlc.types.Arg(
49428
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
49429
+ graphql_name="usergroupIds",
49430
+ default=None,
49431
+ ),
49432
+ ),
49433
+ )
49434
+ ),
49435
+ )
49436
+ """(experimental) Bulk fetch Slack user groups by IDs
49437
+
49438
+ Arguments:
49439
+
49440
+ * `team_id` (`String!`): Slack team/workspace ID
49441
+ * `usergroup_ids` (`[String!]!`): List of Slack user group IDs to
49442
+ fetch
49443
+ """
49444
+
49445
+ list_slack_users = sgqlc.types.Field(
49446
+ "SlackUserListOutput",
49447
+ graphql_name="listSlackUsers",
49448
+ args=sgqlc.types.ArgDict(
49449
+ (
49450
+ (
49451
+ "team_id",
49452
+ sgqlc.types.Arg(
49453
+ sgqlc.types.non_null(String), graphql_name="teamId", default=None
49454
+ ),
49455
+ ),
49456
+ ("cursor", sgqlc.types.Arg(String, graphql_name="cursor", default=None)),
49457
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
49458
+ )
49459
+ ),
49460
+ )
49461
+ """(experimental) List Slack users with pagination (pass-through to
49462
+ Slack API). Returns only id and display_name for efficiency.
49463
+ Clients can do their own filtering.
49464
+
49465
+ Arguments:
49466
+
49467
+ * `team_id` (`String!`): Slack team/workspace ID
49468
+ * `cursor` (`String`): Pagination cursor from previous response
49469
+ * `limit` (`Int`): Number of results per page (default 1000, max
49470
+ 1000)
49471
+ """
49472
+
49473
+ list_slack_user_groups = sgqlc.types.Field(
49474
+ "SlackUserGroupListOutput",
49475
+ graphql_name="listSlackUserGroups",
49476
+ args=sgqlc.types.ArgDict(
49477
+ (
49478
+ (
49479
+ "team_id",
49480
+ sgqlc.types.Arg(
49481
+ sgqlc.types.non_null(String), graphql_name="teamId", default=None
49482
+ ),
49483
+ ),
49484
+ )
49485
+ ),
49486
+ )
49487
+ """(experimental) List all Slack user groups (pass-through to Slack
49488
+ API). Returns only id and name for efficiency. Clients can do
49489
+ their own filtering. Note: Slack's API does not support pagination
49490
+ for user groups.
49491
+
49492
+ Arguments:
49493
+
49494
+ * `team_id` (`String!`): Slack team/workspace ID
49495
+ """
49496
+
48992
49497
  get_servicenow_incident_fields = sgqlc.types.Field(
48993
49498
  sgqlc.types.list_of(sgqlc.types.non_null("ServiceNowFieldOutput")),
48994
49499
  graphql_name="getServicenowIncidentFields",
@@ -52363,6 +52868,46 @@ class Query(sgqlc.types.Type):
52363
52868
  * `mcon` (`String`): Source table mcon
52364
52869
  """
52365
52870
 
52871
+ get_trace_tree_nodes = sgqlc.types.Field(
52872
+ sgqlc.types.list_of(sgqlc.types.non_null("TraceNode")),
52873
+ graphql_name="getTraceTreeNodes",
52874
+ args=sgqlc.types.ArgDict(
52875
+ (
52876
+ (
52877
+ "mcon",
52878
+ sgqlc.types.Arg(
52879
+ sgqlc.types.non_null(String), graphql_name="mcon", default=None
52880
+ ),
52881
+ ),
52882
+ (
52883
+ "trace_id",
52884
+ sgqlc.types.Arg(
52885
+ sgqlc.types.non_null(String), graphql_name="traceId", default=None
52886
+ ),
52887
+ ),
52888
+ (
52889
+ "trace_start_time",
52890
+ sgqlc.types.Arg(DateTime, graphql_name="traceStartTime", default=None),
52891
+ ),
52892
+ (
52893
+ "trace_end_time",
52894
+ sgqlc.types.Arg(DateTime, graphql_name="traceEndTime", default=None),
52895
+ ),
52896
+ )
52897
+ ),
52898
+ )
52899
+ """(experimental) Retrieve span tree for a given traceId
52900
+
52901
+ Arguments:
52902
+
52903
+ * `mcon` (`String!`): MCON of the table with agent observability
52904
+ traces
52905
+ * `trace_id` (`String!`): Trace ID to retrieve
52906
+ * `trace_start_time` (`DateTime`): Start time of the trace
52907
+ (inclusive)
52908
+ * `trace_end_time` (`DateTime`): End time of the trace (inclusive)
52909
+ """
52910
+
52366
52911
  get_agent_span_groups = sgqlc.types.Field(
52367
52912
  AgentSpanTree,
52368
52913
  graphql_name="getAgentSpanGroups",
@@ -52495,6 +53040,112 @@ class Query(sgqlc.types.Type):
52495
53040
  (inclusive) +- 1 hr
52496
53041
  """
52497
53042
 
53043
+ get_agent_span_sample_v2 = sgqlc.types.Field(
53044
+ "SQLResponse",
53045
+ graphql_name="getAgentSpanSampleV2",
53046
+ args=sgqlc.types.ArgDict(
53047
+ (
53048
+ (
53049
+ "mcon",
53050
+ sgqlc.types.Arg(
53051
+ sgqlc.types.non_null(String), graphql_name="mcon", default=None
53052
+ ),
53053
+ ),
53054
+ (
53055
+ "agent_span_filters",
53056
+ sgqlc.types.Arg(
53057
+ sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput)),
53058
+ graphql_name="agentSpanFilters",
53059
+ default=None,
53060
+ ),
53061
+ ),
53062
+ (
53063
+ "filters",
53064
+ sgqlc.types.Arg(FilterGroupInput, graphql_name="filters", default=None),
53065
+ ),
53066
+ (
53067
+ "transforms",
53068
+ sgqlc.types.Arg(
53069
+ sgqlc.types.list_of(sgqlc.types.non_null(TransformInput)),
53070
+ graphql_name="transforms",
53071
+ default=None,
53072
+ ),
53073
+ ),
53074
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=10)),
53075
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
53076
+ (
53077
+ "span_ids",
53078
+ sgqlc.types.Arg(
53079
+ sgqlc.types.list_of(sgqlc.types.non_null(String)),
53080
+ graphql_name="spanIds",
53081
+ default=None,
53082
+ ),
53083
+ ),
53084
+ (
53085
+ "trace_ids",
53086
+ sgqlc.types.Arg(
53087
+ sgqlc.types.list_of(sgqlc.types.non_null(String)),
53088
+ graphql_name="traceIds",
53089
+ default=None,
53090
+ ),
53091
+ ),
53092
+ ("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
53093
+ (
53094
+ "trace_timestamp",
53095
+ sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
53096
+ ),
53097
+ (
53098
+ "ingestion_start_time",
53099
+ sgqlc.types.Arg(DateTime, graphql_name="ingestionStartTime", default=None),
53100
+ ),
53101
+ (
53102
+ "ingestion_end_time",
53103
+ sgqlc.types.Arg(DateTime, graphql_name="ingestionEndTime", default=None),
53104
+ ),
53105
+ (
53106
+ "select_expression_type",
53107
+ sgqlc.types.Arg(
53108
+ AgentMonitorSelectExpressionType,
53109
+ graphql_name="selectExpressionType",
53110
+ default="SPAN_TREE",
53111
+ ),
53112
+ ),
53113
+ )
53114
+ ),
53115
+ )
53116
+ """(experimental) Sample agent span data with optional transforms and
53117
+ filtering
53118
+
53119
+ Arguments:
53120
+
53121
+ * `mcon` (`String!`): MCON of the table with agent observability
53122
+ traces
53123
+ * `agent_span_filters` (`[AgentSpanFilterInput!]`): Filter by
53124
+ agent span fields (agent, workflow, task, span_name)
53125
+ * `filters` (`FilterGroupInput`): Structured SQL filtering
53126
+ conditions to apply to query
53127
+ * `transforms` (`[TransformInput!]`): Transforms to apply to the
53128
+ data source
53129
+ * `limit` (`Int`): Number of sample rows to return (max 100)
53130
+ (default: `10`)
53131
+ * `offset` (`Int`): Number of rows to skip before returning
53132
+ results (default: `0`)
53133
+ * `span_ids` (`[String!]`): Filter by specific span IDs (<= limit)
53134
+ * `trace_ids` (`[String!]`): Filter by specific trace IDs (<=
53135
+ limit)
53136
+ * `connection_id` (`UUID`): Connection UUID
53137
+ * `trace_timestamp` (`DateTime`): Filter by trace timestamp
53138
+ (inclusive) +- 1 hr
53139
+ * `ingestion_start_time` (`DateTime`): Filter by span start time
53140
+ (inclusive)
53141
+ * `ingestion_end_time` (`DateTime`): Filter by span end time
53142
+ * `select_expression_type` (`AgentMonitorSelectExpressionType`):
53143
+ This is to explicitly specify the type of select expressions.
53144
+ But we will return the columns based on the validity of the
53145
+ query.Not providing the select_expression_type will default to
53146
+ SPAN_TREE. (default: `"SPAN_TREE"`)
53147
+ """
53148
+
52498
53149
  evaluate_agent_monitor_data_source = sgqlc.types.Field(
52499
53150
  DataSourceEvaluationResult,
52500
53151
  graphql_name="evaluateAgentMonitorDataSource",
@@ -62530,8 +63181,8 @@ class Query(sgqlc.types.Type):
62530
63181
  )
62531
63182
  ),
62532
63183
  )
62533
- """(experimental) Get the status of an alert access request for the
62534
- current user
63184
+ """(experimental) DEPRECATED. Get the status of an alert access
63185
+ request for the current user
62535
63186
 
62536
63187
  Arguments:
62537
63188
 
@@ -64148,6 +64799,7 @@ class RoutingRuleData(sgqlc.types.Type):
64148
64799
  "table_stats_rules",
64149
64800
  "asset_rules",
64150
64801
  "domain_rules",
64802
+ "exclude_domains",
64151
64803
  "digest_settings_id",
64152
64804
  "created_by_id",
64153
64805
  "last_update_user_id",
@@ -64181,6 +64833,10 @@ class RoutingRuleData(sgqlc.types.Type):
64181
64833
  sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="domainRules"
64182
64834
  )
64183
64835
 
64836
+ exclude_domains = sgqlc.types.Field(
64837
+ sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="excludeDomains"
64838
+ )
64839
+
64184
64840
  digest_settings_id = sgqlc.types.Field(String, graphql_name="digestSettingsId")
64185
64841
 
64186
64842
  created_by_id = sgqlc.types.Field(Int, graphql_name="createdById")
@@ -65778,6 +66434,57 @@ class SlackOauthUrlResponse(sgqlc.types.Type):
65778
66434
  url = sgqlc.types.Field(String, graphql_name="url")
65779
66435
 
65780
66436
 
66437
+ class SlackUserGroupListOutput(sgqlc.types.Type):
66438
+ """Response for listing Slack user groups."""
66439
+
66440
+ __schema__ = schema
66441
+ __field_names__ = ("usergroups",)
66442
+ usergroups = sgqlc.types.Field(
66443
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("SlackUserGroupOutput"))),
66444
+ graphql_name="usergroups",
66445
+ )
66446
+ """List of all user groups"""
66447
+
66448
+
66449
+ class SlackUserGroupOutput(sgqlc.types.Type):
66450
+ """Slack user group information."""
66451
+
66452
+ __schema__ = schema
66453
+ __field_names__ = ("id", "name")
66454
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
66455
+ """Slack user group ID"""
66456
+
66457
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
66458
+ """User group name"""
66459
+
66460
+
66461
+ class SlackUserListOutput(sgqlc.types.Type):
66462
+ """Paginated response for listing Slack users."""
66463
+
66464
+ __schema__ = schema
66465
+ __field_names__ = ("users", "next_cursor")
66466
+ users = sgqlc.types.Field(
66467
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("SlackUserOutput"))),
66468
+ graphql_name="users",
66469
+ )
66470
+ """List of users in this page"""
66471
+
66472
+ next_cursor = sgqlc.types.Field(String, graphql_name="nextCursor")
66473
+ """Cursor for next page (null if no more pages)"""
66474
+
66475
+
66476
+ class SlackUserOutput(sgqlc.types.Type):
66477
+ """Slack user information."""
66478
+
66479
+ __schema__ = schema
66480
+ __field_names__ = ("id", "display_name")
66481
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
66482
+ """Slack user ID"""
66483
+
66484
+ display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
66485
+ """Display name"""
66486
+
66487
+
65781
66488
  class SnoozeCustomRule(sgqlc.types.Type):
65782
66489
  """Snooze a custom rule. Data collection will continue, but no
65783
66490
  anomalies will be reported.
@@ -68830,6 +69537,170 @@ class TraceEdge(sgqlc.types.Type):
68830
69537
  """Cursor for this edge"""
68831
69538
 
68832
69539
 
69540
+ class TraceFilter(sgqlc.types.Type):
69541
+ """Metadata about a trace filter."""
69542
+
69543
+ __schema__ = schema
69544
+ __field_names__ = (
69545
+ "field_name",
69546
+ "display_name",
69547
+ "query_parameter_name",
69548
+ "query_parameter_accepts_multiple_values",
69549
+ "is_range_filter",
69550
+ "facetable",
69551
+ "facet_searchable",
69552
+ )
69553
+ field_name = sgqlc.types.Field(
69554
+ sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
69555
+ )
69556
+
69557
+ display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
69558
+
69559
+ query_parameter_name = sgqlc.types.Field(
69560
+ sgqlc.types.non_null(String), graphql_name="queryParameterName"
69561
+ )
69562
+ """Associated getTraces parameter used to filter traces"""
69563
+
69564
+ query_parameter_accepts_multiple_values = sgqlc.types.Field(
69565
+ sgqlc.types.non_null(Boolean), graphql_name="queryParameterAcceptsMultipleValues"
69566
+ )
69567
+ """Whether the associated getTraces parameter accepts multiple values
69568
+ as input
69569
+ """
69570
+
69571
+ is_range_filter = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isRangeFilter")
69572
+ """Whether this is a range filter (min/max) vs equality filter
69573
+ (checkboxes)
69574
+ """
69575
+
69576
+ facetable = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="facetable")
69577
+ """Whether the filter shows up as a facet in the UI"""
69578
+
69579
+ facet_searchable = sgqlc.types.Field(
69580
+ sgqlc.types.non_null(Boolean), graphql_name="facetSearchable"
69581
+ )
69582
+ """Whether the filter values can be searched by their display name"""
69583
+
69584
+
69585
+ class TraceFilterData(sgqlc.types.Type):
69586
+ """Filter values with counts for a single filter."""
69587
+
69588
+ __schema__ = schema
69589
+ __field_names__ = ("field_name", "values", "page_info")
69590
+ field_name = sgqlc.types.Field(
69591
+ sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
69592
+ )
69593
+ """The filter field name"""
69594
+
69595
+ values = sgqlc.types.Field(
69596
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("TraceFilterDataValue"))),
69597
+ graphql_name="values",
69598
+ )
69599
+ """List of filter values with counts"""
69600
+
69601
+ page_info = sgqlc.types.Field(
69602
+ sgqlc.types.non_null("TraceFilterDataPageInfo"), graphql_name="pageInfo"
69603
+ )
69604
+ """Pagination information"""
69605
+
69606
+
69607
+ class TraceFilterDataPageInfo(sgqlc.types.Type):
69608
+ """Pagination info for filter values."""
69609
+
69610
+ __schema__ = schema
69611
+ __field_names__ = ("has_next_page", "end_cursor")
69612
+ has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasNextPage")
69613
+ """Whether there are more results"""
69614
+
69615
+ end_cursor = sgqlc.types.Field(String, graphql_name="endCursor")
69616
+ """Cursor for the next page"""
69617
+
69618
+
69619
+ class TraceFilterDataValue(sgqlc.types.Type):
69620
+ """A single filter value with its count."""
69621
+
69622
+ __schema__ = schema
69623
+ __field_names__ = ("value", "display_name", "count")
69624
+ value = sgqlc.types.Field(sgqlc.types.non_null(GenericScalar), graphql_name="value")
69625
+ """The filter value"""
69626
+
69627
+ display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
69628
+ """Display name for the value"""
69629
+
69630
+ count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
69631
+ """Number of traces with this value"""
69632
+
69633
+
69634
+ class TraceNode(sgqlc.types.Type):
69635
+ __schema__ = schema
69636
+ __field_names__ = (
69637
+ "node_name",
69638
+ "span_id",
69639
+ "trace_id",
69640
+ "parent_span_id",
69641
+ "duration",
69642
+ "start_time",
69643
+ "end_time",
69644
+ "ingest_time",
69645
+ "has_prompts",
69646
+ "has_completions",
69647
+ "prompt_tokens",
69648
+ "completion_tokens",
69649
+ "total_tokens",
69650
+ "model",
69651
+ "agent_name",
69652
+ "workflow",
69653
+ "task",
69654
+ "child_span_ids",
69655
+ "start_extra_ns",
69656
+ "end_extra_ns",
69657
+ )
69658
+ node_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="nodeName")
69659
+
69660
+ span_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="spanId")
69661
+
69662
+ trace_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="traceId")
69663
+
69664
+ parent_span_id = sgqlc.types.Field(String, graphql_name="parentSpanId")
69665
+
69666
+ duration = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="duration")
69667
+
69668
+ start_time = sgqlc.types.Field(DateTime, graphql_name="startTime")
69669
+
69670
+ end_time = sgqlc.types.Field(DateTime, graphql_name="endTime")
69671
+
69672
+ ingest_time = sgqlc.types.Field(DateTime, graphql_name="ingestTime")
69673
+
69674
+ has_prompts = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasPrompts")
69675
+
69676
+ has_completions = sgqlc.types.Field(
69677
+ sgqlc.types.non_null(Boolean), graphql_name="hasCompletions"
69678
+ )
69679
+
69680
+ prompt_tokens = sgqlc.types.Field(Int, graphql_name="promptTokens")
69681
+
69682
+ completion_tokens = sgqlc.types.Field(Int, graphql_name="completionTokens")
69683
+
69684
+ total_tokens = sgqlc.types.Field(Int, graphql_name="totalTokens")
69685
+
69686
+ model = sgqlc.types.Field(String, graphql_name="model")
69687
+
69688
+ agent_name = sgqlc.types.Field(String, graphql_name="agentName")
69689
+
69690
+ workflow = sgqlc.types.Field(String, graphql_name="workflow")
69691
+
69692
+ task = sgqlc.types.Field(String, graphql_name="task")
69693
+
69694
+ child_span_ids = sgqlc.types.Field(
69695
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
69696
+ graphql_name="childSpanIds",
69697
+ )
69698
+
69699
+ start_extra_ns = sgqlc.types.Field(Int, graphql_name="startExtraNs")
69700
+
69701
+ end_extra_ns = sgqlc.types.Field(Int, graphql_name="endExtraNs")
69702
+
69703
+
68833
69704
  class TracePageInfo(sgqlc.types.Type):
68834
69705
  """PageInfo for trace pagination (Relay spec compliant)."""
68835
69706
 
@@ -73792,6 +74663,7 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
73792
74663
  "schedule_config",
73793
74664
  "notification_settings",
73794
74665
  "alert_conditions",
74666
+ "domain_uuids",
73795
74667
  )
73796
74668
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
73797
74669
 
@@ -73836,6 +74708,11 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
73836
74708
  graphql_name="alertConditions",
73837
74709
  )
73838
74710
 
74711
+ domain_uuids = sgqlc.types.Field(
74712
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
74713
+ )
74714
+ """Domain UUIDs assigned to the monitor."""
74715
+
73839
74716
 
73840
74717
  class ConnectionRestriction(sgqlc.types.Type, Node):
73841
74718
  __schema__ = schema
@@ -73966,6 +74843,7 @@ class CustomRule(sgqlc.types.Type, Node):
73966
74843
  "priority",
73967
74844
  "comparisons",
73968
74845
  "is_paused",
74846
+ "is_draft",
73969
74847
  "rule_type",
73970
74848
  "warehouse_uuid",
73971
74849
  "interval_minutes",
@@ -74019,6 +74897,7 @@ class CustomRule(sgqlc.types.Type, Node):
74019
74897
  "mc_sql",
74020
74898
  "tags",
74021
74899
  "data_quality_dimension",
74900
+ "domain_uuids",
74022
74901
  "notify_rule_run_failure",
74023
74902
  "variables",
74024
74903
  "variable_definitions",
@@ -74083,6 +74962,9 @@ class CustomRule(sgqlc.types.Type, Node):
74083
74962
  is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
74084
74963
  """True if rule is paused"""
74085
74964
 
74965
+ is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
74966
+ """Is this a draft monitor?"""
74967
+
74086
74968
  rule_type = sgqlc.types.Field(CustomRuleModelRuleType, graphql_name="ruleType")
74087
74969
 
74088
74970
  warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
@@ -74306,6 +75188,11 @@ class CustomRule(sgqlc.types.Type, Node):
74306
75188
  data_quality_dimension = sgqlc.types.Field(String, graphql_name="dataQualityDimension")
74307
75189
  """Data Quality Dimension of the monitor."""
74308
75190
 
75191
+ domain_uuids = sgqlc.types.Field(
75192
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
75193
+ )
75194
+ """Domain UUIDs assigned to the monitor."""
75195
+
74309
75196
  notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
74310
75197
  """DEPRECATED: Replaced by failure audiences"""
74311
75198
 
@@ -77379,6 +78266,7 @@ class MetricMonitoring(sgqlc.types.Type, Node):
77379
78266
  "priority",
77380
78267
  "comparisons",
77381
78268
  "is_paused",
78269
+ "is_draft",
77382
78270
  "type",
77383
78271
  "warehouse_uuid",
77384
78272
  "data_source",
@@ -77426,6 +78314,7 @@ class MetricMonitoring(sgqlc.types.Type, Node):
77426
78314
  "filters",
77427
78315
  "connection_id",
77428
78316
  "timeout",
78317
+ "domain_uuids",
77429
78318
  )
77430
78319
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
77431
78320
 
@@ -77483,6 +78372,9 @@ class MetricMonitoring(sgqlc.types.Type, Node):
77483
78372
  is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
77484
78373
  """Is this monitor paused?"""
77485
78374
 
78375
+ is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
78376
+ """Is this a draft monitor?"""
78377
+
77486
78378
  type = sgqlc.types.Field(sgqlc.types.non_null(MetricMonitoringModelType), graphql_name="type")
77487
78379
 
77488
78380
  warehouse_uuid = sgqlc.types.Field(UUID, graphql_name="warehouseUuid")
@@ -77651,6 +78543,11 @@ class MetricMonitoring(sgqlc.types.Type, Node):
77651
78543
  timeout = sgqlc.types.Field(Int, graphql_name="timeout")
77652
78544
  """Timeout for the SQL query"""
77653
78545
 
78546
+ domain_uuids = sgqlc.types.Field(
78547
+ sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
78548
+ )
78549
+ """Domain UUIDs assigned to the monitor."""
78550
+
77654
78551
 
77655
78552
  class Monitor(
77656
78553
  sgqlc.types.Type,