pycarlo 0.11.15__py3-none-any.whl → 0.12.5__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/features/metadata/metadata_filters_container.py +13 -9
- pycarlo/lib/README.md +34 -2
- pycarlo/lib/schema.json +2296 -28
- pycarlo/lib/schema.py +1373 -419
- pycarlo/lib/types.py +68 -0
- {pycarlo-0.11.15.dist-info → pycarlo-0.12.5.dist-info}/METADATA +52 -35
- {pycarlo-0.11.15.dist-info → pycarlo-0.12.5.dist-info}/RECORD +10 -9
- {pycarlo-0.11.15.dist-info → pycarlo-0.12.5.dist-info}/WHEEL +1 -1
- {pycarlo-0.11.15.dist-info → pycarlo-0.12.5.dist-info}/LICENSE +0 -0
- {pycarlo-0.11.15.dist-info → pycarlo-0.12.5.dist-info}/top_level.txt +0 -0
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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.
|
|
@@ -12846,6 +13015,7 @@ class Agent(sgqlc.types.Type):
|
|
|
12846
13015
|
__field_names__ = (
|
|
12847
13016
|
"id",
|
|
12848
13017
|
"uuid",
|
|
13018
|
+
"name",
|
|
12849
13019
|
"data_collector",
|
|
12850
13020
|
"endpoint",
|
|
12851
13021
|
"platform",
|
|
@@ -12868,6 +13038,9 @@ class Agent(sgqlc.types.Type):
|
|
|
12868
13038
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
12869
13039
|
"""Unique UUID of the Agent."""
|
|
12870
13040
|
|
|
13041
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
13042
|
+
"""Name of the Agent."""
|
|
13043
|
+
|
|
12871
13044
|
data_collector = sgqlc.types.Field(
|
|
12872
13045
|
sgqlc.types.non_null("DataCollector"), graphql_name="dataCollector"
|
|
12873
13046
|
)
|
|
@@ -14698,10 +14871,15 @@ class AzureInformation(sgqlc.types.Type):
|
|
|
14698
14871
|
"""Azure information"""
|
|
14699
14872
|
|
|
14700
14873
|
__schema__ = schema
|
|
14701
|
-
__field_names__ = ("subscription_id", "primary_region", "secondary_region")
|
|
14874
|
+
__field_names__ = ("subscription_id", "subscription_name", "primary_region", "secondary_region")
|
|
14702
14875
|
subscription_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="subscriptionId")
|
|
14703
14876
|
"""Azure Subscription ID"""
|
|
14704
14877
|
|
|
14878
|
+
subscription_name = sgqlc.types.Field(
|
|
14879
|
+
sgqlc.types.non_null(String), graphql_name="subscriptionName"
|
|
14880
|
+
)
|
|
14881
|
+
"""Azure Subscription Name"""
|
|
14882
|
+
|
|
14705
14883
|
primary_region = sgqlc.types.Field(String, graphql_name="primaryRegion")
|
|
14706
14884
|
"""Azure Region"""
|
|
14707
14885
|
|
|
@@ -15817,7 +15995,18 @@ class CollectionDetails(sgqlc.types.Type):
|
|
|
15817
15995
|
"""Collection platform information"""
|
|
15818
15996
|
|
|
15819
15997
|
__schema__ = schema
|
|
15820
|
-
__field_names__ = (
|
|
15998
|
+
__field_names__ = (
|
|
15999
|
+
"aws_account_id",
|
|
16000
|
+
"aws_region",
|
|
16001
|
+
"private_link_details",
|
|
16002
|
+
"active_node_details",
|
|
16003
|
+
)
|
|
16004
|
+
aws_account_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="awsAccountId")
|
|
16005
|
+
"""AWS Account ID"""
|
|
16006
|
+
|
|
16007
|
+
aws_region = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="awsRegion")
|
|
16008
|
+
"""AWS Region"""
|
|
16009
|
+
|
|
15821
16010
|
private_link_details = sgqlc.types.Field(
|
|
15822
16011
|
"PrivateLinkDetails", graphql_name="privateLinkDetails"
|
|
15823
16012
|
)
|
|
@@ -17410,6 +17599,18 @@ class CreateSharedQuery(sgqlc.types.Type):
|
|
|
17410
17599
|
"""Link to newly shared query"""
|
|
17411
17600
|
|
|
17412
17601
|
|
|
17602
|
+
class CreateSingleTableMonitoringNotification(sgqlc.types.Type):
|
|
17603
|
+
"""Record that monitoring was enabled for a single table. Must
|
|
17604
|
+
provide the table mcon and exactly one of a usage rule ID or a
|
|
17605
|
+
table monitor UUID.
|
|
17606
|
+
"""
|
|
17607
|
+
|
|
17608
|
+
__schema__ = schema
|
|
17609
|
+
__field_names__ = ("success",)
|
|
17610
|
+
success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="success")
|
|
17611
|
+
"""True if the event was recorded"""
|
|
17612
|
+
|
|
17613
|
+
|
|
17413
17614
|
class CreateTableauAssetWarning(sgqlc.types.Type):
|
|
17414
17615
|
"""Creates a warning on an asset."""
|
|
17415
17616
|
|
|
@@ -17912,6 +18113,7 @@ class DataCollector(sgqlc.types.Type):
|
|
|
17912
18113
|
"id",
|
|
17913
18114
|
"account",
|
|
17914
18115
|
"uuid",
|
|
18116
|
+
"name",
|
|
17915
18117
|
"api_gateway_id",
|
|
17916
18118
|
"kinesis_endpoint_id",
|
|
17917
18119
|
"cloudwatch_log_endpoint_id",
|
|
@@ -17947,6 +18149,8 @@ class DataCollector(sgqlc.types.Type):
|
|
|
17947
18149
|
|
|
17948
18150
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
17949
18151
|
|
|
18152
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
18153
|
+
|
|
17950
18154
|
api_gateway_id = sgqlc.types.Field(String, graphql_name="apiGatewayId")
|
|
17951
18155
|
|
|
17952
18156
|
kinesis_endpoint_id = sgqlc.types.Field(String, graphql_name="kinesisEndpointId")
|
|
@@ -26294,6 +26498,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
26294
26498
|
"create_or_update_table_monitor",
|
|
26295
26499
|
"pause_table_monitor",
|
|
26296
26500
|
"delete_table_monitor",
|
|
26501
|
+
"create_single_table_monitoring_notification",
|
|
26297
26502
|
"update_monitor_tags",
|
|
26298
26503
|
"bulk_add_monitor_tags",
|
|
26299
26504
|
"delete_monitor_tag",
|
|
@@ -27337,6 +27542,39 @@ class Mutation(sgqlc.types.Type):
|
|
|
27337
27542
|
* `monitor_uuid` (`UUID!`): UUID of the table monitor to delete
|
|
27338
27543
|
"""
|
|
27339
27544
|
|
|
27545
|
+
create_single_table_monitoring_notification = sgqlc.types.Field(
|
|
27546
|
+
CreateSingleTableMonitoringNotification,
|
|
27547
|
+
graphql_name="createSingleTableMonitoringNotification",
|
|
27548
|
+
args=sgqlc.types.ArgDict(
|
|
27549
|
+
(
|
|
27550
|
+
(
|
|
27551
|
+
"mcon",
|
|
27552
|
+
sgqlc.types.Arg(
|
|
27553
|
+
sgqlc.types.non_null(String), graphql_name="mcon", default=None
|
|
27554
|
+
),
|
|
27555
|
+
),
|
|
27556
|
+
(
|
|
27557
|
+
"table_monitor_uuid",
|
|
27558
|
+
sgqlc.types.Arg(UUID, graphql_name="tableMonitorUuid", default=None),
|
|
27559
|
+
),
|
|
27560
|
+
("usage_rule_id", sgqlc.types.Arg(Int, graphql_name="usageRuleId", default=None)),
|
|
27561
|
+
)
|
|
27562
|
+
),
|
|
27563
|
+
)
|
|
27564
|
+
"""(experimental) Record a single-table monitoring enablement event
|
|
27565
|
+
|
|
27566
|
+
Arguments:
|
|
27567
|
+
|
|
27568
|
+
* `mcon` (`String!`): MCON of the table for which monitoring was
|
|
27569
|
+
enabled
|
|
27570
|
+
* `table_monitor_uuid` (`UUID`): UUID of the TableMonitor that
|
|
27571
|
+
enabled monitoring for this table. Provide either this or
|
|
27572
|
+
usageRuleId, but not both.
|
|
27573
|
+
* `usage_rule_id` (`Int`): ID of the MonitoredTableRule that
|
|
27574
|
+
enabled monitoring for this table. Provide either this or
|
|
27575
|
+
tableMonitorUuid, but not both.
|
|
27576
|
+
"""
|
|
27577
|
+
|
|
27340
27578
|
update_monitor_tags = sgqlc.types.Field(
|
|
27341
27579
|
"UpdateMonitorTags",
|
|
27342
27580
|
graphql_name="updateMonitorTags",
|
|
@@ -27644,6 +27882,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
27644
27882
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
27645
27883
|
),
|
|
27646
27884
|
),
|
|
27885
|
+
(
|
|
27886
|
+
"domain_uuids",
|
|
27887
|
+
sgqlc.types.Arg(
|
|
27888
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
27889
|
+
graphql_name="domainUuids",
|
|
27890
|
+
default=None,
|
|
27891
|
+
),
|
|
27892
|
+
),
|
|
27647
27893
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
27648
27894
|
(
|
|
27649
27895
|
"dw_id",
|
|
@@ -27715,6 +27961,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
27715
27961
|
the custom rule.
|
|
27716
27962
|
* `data_source` (`DataSourceUnionInput!`)None
|
|
27717
27963
|
* `description` (`String!`): Description of rule
|
|
27964
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
27965
|
+
valid domain uuid.
|
|
27718
27966
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
27719
27967
|
and return the MaC YAML and queries. (default: `false`)
|
|
27720
27968
|
* `dw_id` (`UUID!`): Warehouse UUID
|
|
@@ -34710,121 +34958,139 @@ class Mutation(sgqlc.types.Type):
|
|
|
34710
34958
|
sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
|
|
34711
34959
|
),
|
|
34712
34960
|
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
34713
|
-
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
34714
|
-
(
|
|
34715
|
-
"event_rollup_count",
|
|
34716
|
-
sgqlc.types.Arg(Int, graphql_name="eventRollupCount", default=None),
|
|
34717
|
-
),
|
|
34718
|
-
(
|
|
34719
|
-
"event_rollup_until_changed",
|
|
34720
|
-
sgqlc.types.Arg(Boolean, graphql_name="eventRollupUntilChanged", default=None),
|
|
34721
|
-
),
|
|
34722
|
-
(
|
|
34723
|
-
"failure_audiences",
|
|
34724
|
-
sgqlc.types.Arg(
|
|
34725
|
-
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
34726
|
-
graphql_name="failureAudiences",
|
|
34727
|
-
default=None,
|
|
34728
|
-
),
|
|
34729
|
-
),
|
|
34730
|
-
(
|
|
34731
|
-
"interval_minutes",
|
|
34732
|
-
sgqlc.types.Arg(Int, graphql_name="intervalMinutes", default=None),
|
|
34733
|
-
),
|
|
34734
|
-
(
|
|
34735
|
-
"labels",
|
|
34736
|
-
sgqlc.types.Arg(
|
|
34737
|
-
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
34738
|
-
),
|
|
34739
|
-
),
|
|
34740
|
-
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
34741
|
-
(
|
|
34742
|
-
"notify_rule_run_failure",
|
|
34743
|
-
sgqlc.types.Arg(Boolean, graphql_name="notifyRuleRunFailure", default=None),
|
|
34744
|
-
),
|
|
34745
|
-
("priority", sgqlc.types.Arg(String, graphql_name="priority", default=None)),
|
|
34746
|
-
(
|
|
34747
|
-
"schedule_config",
|
|
34748
|
-
sgqlc.types.Arg(
|
|
34749
|
-
ScheduleConfigInput, graphql_name="scheduleConfig", default=None
|
|
34750
|
-
),
|
|
34751
|
-
),
|
|
34752
|
-
("severity", sgqlc.types.Arg(String, graphql_name="severity", default="")),
|
|
34753
|
-
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
34754
|
-
(
|
|
34755
|
-
"tags",
|
|
34756
|
-
sgqlc.types.Arg(
|
|
34757
|
-
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
34758
|
-
),
|
|
34759
|
-
),
|
|
34760
|
-
("timezone", sgqlc.types.Arg(String, graphql_name="timezone", default=None)),
|
|
34761
|
-
)
|
|
34762
|
-
),
|
|
34763
|
-
)
|
|
34764
|
-
"""Deprecated, use CreateOrUpdateCustomRule instead
|
|
34765
|
-
|
|
34766
|
-
Arguments:
|
|
34767
|
-
|
|
34768
|
-
* `comparisons` (`[CustomRuleComparisonInput]!`): Custom rule
|
|
34769
|
-
comparisons
|
|
34770
|
-
* `custom_rule_uuid` (`UUID`): UUID of custom rule, to update
|
|
34771
|
-
existing rule
|
|
34772
|
-
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
34773
|
-
the custom rule.
|
|
34774
|
-
* `description` (`String`): Used as the name in the UI
|
|
34775
|
-
* `dw_id` (`UUID`): Warehouse the tables are contained in.
|
|
34776
|
-
Required when using fullTableIds
|
|
34777
|
-
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
34778
|
-
into a single incident
|
|
34779
|
-
* `event_rollup_until_changed` (`Boolean`): If true, roll up
|
|
34780
|
-
events until the value changes
|
|
34781
|
-
* `failure_audiences` (`[String!]`): The audiences to notify on
|
|
34782
|
-
failure
|
|
34783
|
-
* `interval_minutes` (`Int`): How often to run scheduled custom
|
|
34784
|
-
rule check (DEPRECATED, use schedule instead)
|
|
34785
|
-
* `labels` (`[String]`): The monitor labels
|
|
34786
|
-
* `notes` (`String`): Additional context for the monitor (default:
|
|
34787
|
-
`""`)
|
|
34788
|
-
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
34789
|
-
ignored. This field has no effect on anything. Use
|
|
34790
|
-
`failure_audiences` to determine who is notified when run
|
|
34791
|
-
failures occur.
|
|
34792
|
-
* `priority` (`String`): The default priority for alerts involving
|
|
34793
|
-
this monitor
|
|
34794
|
-
* `schedule_config` (`ScheduleConfigInput`): Schedule of custom
|
|
34795
|
-
rule
|
|
34796
|
-
* `severity` (`String`): DEPRECATED. Use priority instead. The
|
|
34797
|
-
default severity for incidents involving this monitor (default:
|
|
34798
|
-
`""`)
|
|
34799
|
-
* `start_time` (`DateTime`): Start time of schedule (DEPRECATED,
|
|
34800
|
-
use schedule instead)
|
|
34801
|
-
* `tags` (`[TagKeyValuePairInput]`): The monitor tags.
|
|
34802
|
-
* `timezone` (`String`): Timezone (DEPRECATED, use timezone in
|
|
34803
|
-
scheduleConfig instead
|
|
34804
|
-
"""
|
|
34805
|
-
|
|
34806
|
-
create_or_update_custom_rule = sgqlc.types.Field(
|
|
34807
|
-
CreateOrUpdateCustomRule,
|
|
34808
|
-
graphql_name="createOrUpdateCustomRule",
|
|
34809
|
-
args=sgqlc.types.ArgDict(
|
|
34810
|
-
(
|
|
34811
34961
|
(
|
|
34812
|
-
"
|
|
34962
|
+
"domain_uuids",
|
|
34813
34963
|
sgqlc.types.Arg(
|
|
34814
|
-
sgqlc.types.
|
|
34815
|
-
graphql_name="
|
|
34964
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
34965
|
+
graphql_name="domainUuids",
|
|
34966
|
+
default=None,
|
|
34967
|
+
),
|
|
34968
|
+
),
|
|
34969
|
+
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
34970
|
+
(
|
|
34971
|
+
"event_rollup_count",
|
|
34972
|
+
sgqlc.types.Arg(Int, graphql_name="eventRollupCount", default=None),
|
|
34973
|
+
),
|
|
34974
|
+
(
|
|
34975
|
+
"event_rollup_until_changed",
|
|
34976
|
+
sgqlc.types.Arg(Boolean, graphql_name="eventRollupUntilChanged", default=None),
|
|
34977
|
+
),
|
|
34978
|
+
(
|
|
34979
|
+
"failure_audiences",
|
|
34980
|
+
sgqlc.types.Arg(
|
|
34981
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
34982
|
+
graphql_name="failureAudiences",
|
|
34983
|
+
default=None,
|
|
34984
|
+
),
|
|
34985
|
+
),
|
|
34986
|
+
(
|
|
34987
|
+
"interval_minutes",
|
|
34988
|
+
sgqlc.types.Arg(Int, graphql_name="intervalMinutes", default=None),
|
|
34989
|
+
),
|
|
34990
|
+
(
|
|
34991
|
+
"labels",
|
|
34992
|
+
sgqlc.types.Arg(
|
|
34993
|
+
sgqlc.types.list_of(String), graphql_name="labels", default=None
|
|
34994
|
+
),
|
|
34995
|
+
),
|
|
34996
|
+
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
34997
|
+
(
|
|
34998
|
+
"notify_rule_run_failure",
|
|
34999
|
+
sgqlc.types.Arg(Boolean, graphql_name="notifyRuleRunFailure", default=None),
|
|
35000
|
+
),
|
|
35001
|
+
("priority", sgqlc.types.Arg(String, graphql_name="priority", default=None)),
|
|
35002
|
+
(
|
|
35003
|
+
"schedule_config",
|
|
35004
|
+
sgqlc.types.Arg(
|
|
35005
|
+
ScheduleConfigInput, graphql_name="scheduleConfig", default=None
|
|
35006
|
+
),
|
|
35007
|
+
),
|
|
35008
|
+
("severity", sgqlc.types.Arg(String, graphql_name="severity", default="")),
|
|
35009
|
+
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
35010
|
+
(
|
|
35011
|
+
"tags",
|
|
35012
|
+
sgqlc.types.Arg(
|
|
35013
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
35014
|
+
),
|
|
35015
|
+
),
|
|
35016
|
+
("timezone", sgqlc.types.Arg(String, graphql_name="timezone", default=None)),
|
|
35017
|
+
)
|
|
35018
|
+
),
|
|
35019
|
+
)
|
|
35020
|
+
"""Deprecated, use CreateOrUpdateCustomRule instead
|
|
35021
|
+
|
|
35022
|
+
Arguments:
|
|
35023
|
+
|
|
35024
|
+
* `comparisons` (`[CustomRuleComparisonInput]!`): Custom rule
|
|
35025
|
+
comparisons
|
|
35026
|
+
* `custom_rule_uuid` (`UUID`): UUID of custom rule, to update
|
|
35027
|
+
existing rule
|
|
35028
|
+
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
35029
|
+
the custom rule.
|
|
35030
|
+
* `description` (`String`): Used as the name in the UI
|
|
35031
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35032
|
+
valid domain uuid.
|
|
35033
|
+
* `dw_id` (`UUID`): Warehouse the tables are contained in.
|
|
35034
|
+
Required when using fullTableIds
|
|
35035
|
+
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
35036
|
+
into a single incident
|
|
35037
|
+
* `event_rollup_until_changed` (`Boolean`): If true, roll up
|
|
35038
|
+
events until the value changes
|
|
35039
|
+
* `failure_audiences` (`[String!]`): The audiences to notify on
|
|
35040
|
+
failure
|
|
35041
|
+
* `interval_minutes` (`Int`): How often to run scheduled custom
|
|
35042
|
+
rule check (DEPRECATED, use schedule instead)
|
|
35043
|
+
* `labels` (`[String]`): The monitor labels
|
|
35044
|
+
* `notes` (`String`): Additional context for the monitor (default:
|
|
35045
|
+
`""`)
|
|
35046
|
+
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
35047
|
+
ignored. This field has no effect on anything. Use
|
|
35048
|
+
`failure_audiences` to determine who is notified when run
|
|
35049
|
+
failures occur.
|
|
35050
|
+
* `priority` (`String`): The default priority for alerts involving
|
|
35051
|
+
this monitor
|
|
35052
|
+
* `schedule_config` (`ScheduleConfigInput`): Schedule of custom
|
|
35053
|
+
rule
|
|
35054
|
+
* `severity` (`String`): DEPRECATED. Use priority instead. The
|
|
35055
|
+
default severity for incidents involving this monitor (default:
|
|
35056
|
+
`""`)
|
|
35057
|
+
* `start_time` (`DateTime`): Start time of schedule (DEPRECATED,
|
|
35058
|
+
use schedule instead)
|
|
35059
|
+
* `tags` (`[TagKeyValuePairInput]`): The monitor tags.
|
|
35060
|
+
* `timezone` (`String`): Timezone (DEPRECATED, use timezone in
|
|
35061
|
+
scheduleConfig instead
|
|
35062
|
+
"""
|
|
35063
|
+
|
|
35064
|
+
create_or_update_custom_rule = sgqlc.types.Field(
|
|
35065
|
+
CreateOrUpdateCustomRule,
|
|
35066
|
+
graphql_name="createOrUpdateCustomRule",
|
|
35067
|
+
args=sgqlc.types.ArgDict(
|
|
35068
|
+
(
|
|
35069
|
+
(
|
|
35070
|
+
"comparisons",
|
|
35071
|
+
sgqlc.types.Arg(
|
|
35072
|
+
sgqlc.types.non_null(sgqlc.types.list_of(CustomRuleComparisonInput)),
|
|
35073
|
+
graphql_name="comparisons",
|
|
35074
|
+
default=None,
|
|
35075
|
+
),
|
|
35076
|
+
),
|
|
35077
|
+
(
|
|
35078
|
+
"custom_rule_uuid",
|
|
35079
|
+
sgqlc.types.Arg(UUID, graphql_name="customRuleUuid", default=None),
|
|
35080
|
+
),
|
|
35081
|
+
(
|
|
35082
|
+
"data_quality_dimension",
|
|
35083
|
+
sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
|
|
35084
|
+
),
|
|
35085
|
+
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
35086
|
+
(
|
|
35087
|
+
"domain_uuids",
|
|
35088
|
+
sgqlc.types.Arg(
|
|
35089
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
35090
|
+
graphql_name="domainUuids",
|
|
34816
35091
|
default=None,
|
|
34817
35092
|
),
|
|
34818
35093
|
),
|
|
34819
|
-
(
|
|
34820
|
-
"custom_rule_uuid",
|
|
34821
|
-
sgqlc.types.Arg(UUID, graphql_name="customRuleUuid", default=None),
|
|
34822
|
-
),
|
|
34823
|
-
(
|
|
34824
|
-
"data_quality_dimension",
|
|
34825
|
-
sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
|
|
34826
|
-
),
|
|
34827
|
-
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
34828
35094
|
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
34829
35095
|
(
|
|
34830
35096
|
"event_rollup_count",
|
|
@@ -34891,6 +35157,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
34891
35157
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
34892
35158
|
the custom rule.
|
|
34893
35159
|
* `description` (`String`): Used as the name in the UI
|
|
35160
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35161
|
+
valid domain uuid.
|
|
34894
35162
|
* `dw_id` (`UUID`): Warehouse the tables are contained in.
|
|
34895
35163
|
Required when using fullTableIds
|
|
34896
35164
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
@@ -34960,6 +35228,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
34960
35228
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
34961
35229
|
),
|
|
34962
35230
|
),
|
|
35231
|
+
(
|
|
35232
|
+
"domain_uuids",
|
|
35233
|
+
sgqlc.types.Arg(
|
|
35234
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
35235
|
+
graphql_name="domainUuids",
|
|
35236
|
+
default=None,
|
|
35237
|
+
),
|
|
35238
|
+
),
|
|
34963
35239
|
(
|
|
34964
35240
|
"dw_id",
|
|
34965
35241
|
sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
|
|
@@ -35071,6 +35347,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35071
35347
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
35072
35348
|
the custom rule.
|
|
35073
35349
|
* `description` (`String!`): Description of rule
|
|
35350
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35351
|
+
valid domain uuid.
|
|
35074
35352
|
* `dw_id` (`UUID!`): Warehouse UUID
|
|
35075
35353
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
35076
35354
|
into a single incident
|
|
@@ -35165,6 +35443,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35165
35443
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
35166
35444
|
),
|
|
35167
35445
|
),
|
|
35446
|
+
(
|
|
35447
|
+
"domain_uuids",
|
|
35448
|
+
sgqlc.types.Arg(
|
|
35449
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
35450
|
+
graphql_name="domainUuids",
|
|
35451
|
+
default=None,
|
|
35452
|
+
),
|
|
35453
|
+
),
|
|
35168
35454
|
(
|
|
35169
35455
|
"dw_id",
|
|
35170
35456
|
sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
|
|
@@ -35276,6 +35562,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35276
35562
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
35277
35563
|
the custom rule.
|
|
35278
35564
|
* `description` (`String!`): Description of rule
|
|
35565
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35566
|
+
valid domain uuid.
|
|
35279
35567
|
* `dw_id` (`UUID!`): Warehouse UUID
|
|
35280
35568
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
35281
35569
|
into a single incident
|
|
@@ -35466,6 +35754,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35466
35754
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
35467
35755
|
),
|
|
35468
35756
|
),
|
|
35757
|
+
(
|
|
35758
|
+
"domain_uuids",
|
|
35759
|
+
sgqlc.types.Arg(
|
|
35760
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
35761
|
+
graphql_name="domainUuids",
|
|
35762
|
+
default=None,
|
|
35763
|
+
),
|
|
35764
|
+
),
|
|
35469
35765
|
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
35470
35766
|
(
|
|
35471
35767
|
"event_rollup_count",
|
|
@@ -35530,6 +35826,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35530
35826
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
35531
35827
|
the custom rule.
|
|
35532
35828
|
* `description` (`String!`): Description of rule
|
|
35829
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35830
|
+
valid domain uuid.
|
|
35533
35831
|
* `dw_id` (`UUID`): Warehouse the tables are contained in.
|
|
35534
35832
|
Required when using fullTableIds
|
|
35535
35833
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
@@ -35597,6 +35895,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35597
35895
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
35598
35896
|
),
|
|
35599
35897
|
),
|
|
35898
|
+
(
|
|
35899
|
+
"domain_uuids",
|
|
35900
|
+
sgqlc.types.Arg(
|
|
35901
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
35902
|
+
graphql_name="domainUuids",
|
|
35903
|
+
default=None,
|
|
35904
|
+
),
|
|
35905
|
+
),
|
|
35600
35906
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
35601
35907
|
(
|
|
35602
35908
|
"dw_id",
|
|
@@ -35681,6 +35987,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35681
35987
|
* `data_quality_dimension` (`String`): Data quality dimension of
|
|
35682
35988
|
the monitor.
|
|
35683
35989
|
* `description` (`String!`): Used as the name in the UI
|
|
35990
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
35991
|
+
valid domain uuid.
|
|
35684
35992
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
35685
35993
|
and return the MaC YAML and queries. (default: `false`)
|
|
35686
35994
|
* `dw_id` (`UUID!`): Warehouse UUID
|
|
@@ -35748,6 +36056,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35748
36056
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
35749
36057
|
),
|
|
35750
36058
|
),
|
|
36059
|
+
(
|
|
36060
|
+
"domain_uuids",
|
|
36061
|
+
sgqlc.types.Arg(
|
|
36062
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
36063
|
+
graphql_name="domainUuids",
|
|
36064
|
+
default=None,
|
|
36065
|
+
),
|
|
36066
|
+
),
|
|
35751
36067
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
35752
36068
|
(
|
|
35753
36069
|
"event_rollup_count",
|
|
@@ -35846,6 +36162,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35846
36162
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
35847
36163
|
the custom rule.
|
|
35848
36164
|
* `description` (`String!`): Description of rule
|
|
36165
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
36166
|
+
valid domain uuid.
|
|
35849
36167
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
35850
36168
|
and return the MaC YAML and queries. (default: `false`)
|
|
35851
36169
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
@@ -35908,6 +36226,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35908
36226
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
35909
36227
|
),
|
|
35910
36228
|
),
|
|
36229
|
+
(
|
|
36230
|
+
"domain_uuids",
|
|
36231
|
+
sgqlc.types.Arg(
|
|
36232
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
36233
|
+
graphql_name="domainUuids",
|
|
36234
|
+
default=None,
|
|
36235
|
+
),
|
|
36236
|
+
),
|
|
35911
36237
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
35912
36238
|
(
|
|
35913
36239
|
"failure_audiences",
|
|
@@ -35954,6 +36280,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35954
36280
|
existing rule
|
|
35955
36281
|
* `data_quality_dimension` (`String`): data quality dimension
|
|
35956
36282
|
* `description` (`String!`): Description of rule
|
|
36283
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
36284
|
+
valid domain uuid.
|
|
35957
36285
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
35958
36286
|
and return the MaC YAML and queries. (default: `false`)
|
|
35959
36287
|
* `failure_audiences` (`[String!]`): The monitor failure audiences
|
|
@@ -35993,6 +36321,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
35993
36321
|
sgqlc.types.Arg(String, graphql_name="dataQualityDimension", default=None),
|
|
35994
36322
|
),
|
|
35995
36323
|
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
36324
|
+
(
|
|
36325
|
+
"domain_uuids",
|
|
36326
|
+
sgqlc.types.Arg(
|
|
36327
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
36328
|
+
graphql_name="domainUuids",
|
|
36329
|
+
default=None,
|
|
36330
|
+
),
|
|
36331
|
+
),
|
|
35996
36332
|
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
35997
36333
|
(
|
|
35998
36334
|
"event_rollup_count",
|
|
@@ -36060,6 +36396,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
36060
36396
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
36061
36397
|
the custom rule.
|
|
36062
36398
|
* `description` (`String`): Used as the name in the UI
|
|
36399
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
36400
|
+
valid domain uuid.
|
|
36063
36401
|
* `dw_id` (`UUID`): Warehouse the tables are contained in.
|
|
36064
36402
|
Required when using fullTableIds
|
|
36065
36403
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
@@ -36686,6 +37024,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
36686
37024
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
36687
37025
|
),
|
|
36688
37026
|
),
|
|
37027
|
+
(
|
|
37028
|
+
"domain_uuids",
|
|
37029
|
+
sgqlc.types.Arg(
|
|
37030
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
37031
|
+
graphql_name="domainUuids",
|
|
37032
|
+
default=None,
|
|
37033
|
+
),
|
|
37034
|
+
),
|
|
36689
37035
|
(
|
|
36690
37036
|
"dw_id",
|
|
36691
37037
|
sgqlc.types.Arg(sgqlc.types.non_null(UUID), graphql_name="dwId", default=None),
|
|
@@ -36788,6 +37134,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
36788
37134
|
* `data_quality_dimension` (`String`): Data quality dimension on
|
|
36789
37135
|
the custom rule.
|
|
36790
37136
|
* `description` (`String!`): Description of rule
|
|
37137
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
37138
|
+
valid domain uuid.
|
|
36791
37139
|
* `dw_id` (`UUID!`): Warehouse UUID
|
|
36792
37140
|
* `event_rollup_count` (`Int`): The number of events to roll up
|
|
36793
37141
|
into a single incident
|
|
@@ -37201,6 +37549,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
37201
37549
|
Boolean, graphql_name="disableLookBackBootstrap", default=False
|
|
37202
37550
|
),
|
|
37203
37551
|
),
|
|
37552
|
+
(
|
|
37553
|
+
"domain_uuids",
|
|
37554
|
+
sgqlc.types.Arg(
|
|
37555
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
37556
|
+
graphql_name="domainUuids",
|
|
37557
|
+
default=None,
|
|
37558
|
+
),
|
|
37559
|
+
),
|
|
37204
37560
|
(
|
|
37205
37561
|
"fail_on_reset",
|
|
37206
37562
|
sgqlc.types.Arg(Boolean, graphql_name="failOnReset", default=False),
|
|
@@ -37341,6 +37697,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37341
37697
|
* `disable_look_back_bootstrap` (`Boolean`): The flag decides
|
|
37342
37698
|
whether to disable look back bootstrap for new monitors. By
|
|
37343
37699
|
default, it's False (default: `false`)
|
|
37700
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
37701
|
+
valid domain uuid.
|
|
37344
37702
|
* `fail_on_reset` (`Boolean`): Return an error if the update is a
|
|
37345
37703
|
significant change that would require a monitor reset. (default:
|
|
37346
37704
|
`false`)
|
|
@@ -37509,6 +37867,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
37509
37867
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
37510
37868
|
),
|
|
37511
37869
|
),
|
|
37870
|
+
(
|
|
37871
|
+
"domain_uuids",
|
|
37872
|
+
sgqlc.types.Arg(
|
|
37873
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
37874
|
+
graphql_name="domainUuids",
|
|
37875
|
+
default=None,
|
|
37876
|
+
),
|
|
37877
|
+
),
|
|
37512
37878
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
37513
37879
|
(
|
|
37514
37880
|
"fail_on_reset",
|
|
@@ -37574,6 +37940,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37574
37940
|
* `audiences` (`[String!]`): The monitor notification audiences
|
|
37575
37941
|
* `data_quality_dimension` (`String`): Data quality dimension.
|
|
37576
37942
|
* `description` (`String!`): Description of monitor
|
|
37943
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
37944
|
+
valid domain uuid.
|
|
37577
37945
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
37578
37946
|
and return the MaC YAML and queries. (default: `false`)
|
|
37579
37947
|
* `fail_on_reset` (`Boolean`): Return an error if the update is a
|
|
@@ -37659,6 +38027,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
37659
38027
|
Boolean, graphql_name="disableLookBackBootstrap", default=False
|
|
37660
38028
|
),
|
|
37661
38029
|
),
|
|
38030
|
+
(
|
|
38031
|
+
"domain_uuids",
|
|
38032
|
+
sgqlc.types.Arg(
|
|
38033
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
38034
|
+
graphql_name="domainUuids",
|
|
38035
|
+
default=None,
|
|
38036
|
+
),
|
|
38037
|
+
),
|
|
37662
38038
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
37663
38039
|
(
|
|
37664
38040
|
"dw_id",
|
|
@@ -37750,6 +38126,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37750
38126
|
* `disable_look_back_bootstrap` (`Boolean`): The flag decides
|
|
37751
38127
|
whether to disable look back bootstrap for new monitors. By
|
|
37752
38128
|
default, it's False (default: `false`)
|
|
38129
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
38130
|
+
valid domain uuid.
|
|
37753
38131
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
37754
38132
|
and return the MaC YAML and queries. (default: `false`)
|
|
37755
38133
|
* `dw_id` (`UUID!`): Warehouse the monitor will be run on.
|
|
@@ -37847,6 +38225,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
37847
38225
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
37848
38226
|
),
|
|
37849
38227
|
),
|
|
38228
|
+
(
|
|
38229
|
+
"domain_uuids",
|
|
38230
|
+
sgqlc.types.Arg(
|
|
38231
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
38232
|
+
graphql_name="domainUuids",
|
|
38233
|
+
default=None,
|
|
38234
|
+
),
|
|
38235
|
+
),
|
|
37850
38236
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
37851
38237
|
(
|
|
37852
38238
|
"dw_id",
|
|
@@ -37933,6 +38319,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37933
38319
|
* `data_quality_dimension` (`String`): Data quality dimension.
|
|
37934
38320
|
* `data_source` (`DataSourceUnionInput!`)None
|
|
37935
38321
|
* `description` (`String!`): Used as the name in the UI
|
|
38322
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
38323
|
+
valid domain uuid.
|
|
37936
38324
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
37937
38325
|
and return the MaC YAML and queries. (default: `false`)
|
|
37938
38326
|
* `dw_id` (`UUID!`): Warehouse the monitor will be run on.
|
|
@@ -38005,6 +38393,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
38005
38393
|
sgqlc.types.non_null(String), graphql_name="description", default=None
|
|
38006
38394
|
),
|
|
38007
38395
|
),
|
|
38396
|
+
(
|
|
38397
|
+
"domain_uuids",
|
|
38398
|
+
sgqlc.types.Arg(
|
|
38399
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)),
|
|
38400
|
+
graphql_name="domainUuids",
|
|
38401
|
+
default=None,
|
|
38402
|
+
),
|
|
38403
|
+
),
|
|
38008
38404
|
("dry_run", sgqlc.types.Arg(Boolean, graphql_name="dryRun", default=False)),
|
|
38009
38405
|
(
|
|
38010
38406
|
"dw_id",
|
|
@@ -38065,6 +38461,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38065
38461
|
* `data_quality_dimension` (`String`): Data quality dimension.
|
|
38066
38462
|
* `data_source` (`DataSourceUnionInput!`)None
|
|
38067
38463
|
* `description` (`String!`): Used as the name in the UI
|
|
38464
|
+
* `domain_uuids` (`[UUID!]`): Please provide one and only one
|
|
38465
|
+
valid domain uuid.
|
|
38068
38466
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
38069
38467
|
and return the MaC YAML and queries. (default: `false`)
|
|
38070
38468
|
* `dw_id` (`UUID!`): Warehouse the monitor will be run on.
|
|
@@ -43480,7 +43878,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
43480
43878
|
)
|
|
43481
43879
|
),
|
|
43482
43880
|
)
|
|
43483
|
-
"""(experimental) Request access to view an alert
|
|
43881
|
+
"""(experimental) DEPRECATED. Request access to view an alert
|
|
43484
43882
|
|
|
43485
43883
|
Arguments:
|
|
43486
43884
|
|
|
@@ -44428,11 +44826,13 @@ class NotificationSetting(sgqlc.types.Type):
|
|
|
44428
44826
|
"extra",
|
|
44429
44827
|
"notification_enabled",
|
|
44430
44828
|
"audience",
|
|
44829
|
+
"integration_uuid",
|
|
44431
44830
|
"recipients_display_names",
|
|
44432
44831
|
"custom_display_names",
|
|
44433
44832
|
"incident_count_history",
|
|
44434
44833
|
"incident_count",
|
|
44435
44834
|
"integration_id",
|
|
44835
|
+
"team_id",
|
|
44436
44836
|
"channel_url",
|
|
44437
44837
|
)
|
|
44438
44838
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
@@ -44485,6 +44885,9 @@ class NotificationSetting(sgqlc.types.Type):
|
|
|
44485
44885
|
|
|
44486
44886
|
audience = sgqlc.types.Field(NotificationAudience, graphql_name="audience")
|
|
44487
44887
|
|
|
44888
|
+
integration_uuid = sgqlc.types.Field(UUID, graphql_name="integrationUuid")
|
|
44889
|
+
"""UUID for a recipient integration"""
|
|
44890
|
+
|
|
44488
44891
|
recipients_display_names = sgqlc.types.Field(
|
|
44489
44892
|
sgqlc.types.list_of(String), graphql_name="recipientsDisplayNames"
|
|
44490
44893
|
)
|
|
@@ -44504,6 +44907,9 @@ class NotificationSetting(sgqlc.types.Type):
|
|
|
44504
44907
|
integration_id = sgqlc.types.Field(UUID, graphql_name="integrationId")
|
|
44505
44908
|
"""Integration ID for the recipient"""
|
|
44506
44909
|
|
|
44910
|
+
team_id = sgqlc.types.Field(String, graphql_name="teamId")
|
|
44911
|
+
"""Slack team/workspace ID (only for Slack notifications)"""
|
|
44912
|
+
|
|
44507
44913
|
channel_url = sgqlc.types.Field(String, graphql_name="channelUrl")
|
|
44508
44914
|
"""URL of the channel if this is a channel-based notification.
|
|
44509
44915
|
Currently only Slack and MS Teams is supported.
|
|
@@ -45478,6 +45884,8 @@ class Query(sgqlc.types.Type):
|
|
|
45478
45884
|
__field_names__ = (
|
|
45479
45885
|
"get_agent_metadata",
|
|
45480
45886
|
"get_agent_trace_tables",
|
|
45887
|
+
"get_traces_filters",
|
|
45888
|
+
"get_traces_filters_data",
|
|
45481
45889
|
"get_traces",
|
|
45482
45890
|
"get_table_monitor_metric",
|
|
45483
45891
|
"get_tables_for_coverage_dashboard",
|
|
@@ -45591,6 +45999,10 @@ class Query(sgqlc.types.Type):
|
|
|
45591
45999
|
"get_ucs_table_monitor",
|
|
45592
46000
|
"migrate_to_table_monitors",
|
|
45593
46001
|
"get_freshness_table_monitor",
|
|
46002
|
+
"get_slack_users",
|
|
46003
|
+
"get_slack_user_groups",
|
|
46004
|
+
"list_slack_users",
|
|
46005
|
+
"list_slack_user_groups",
|
|
45594
46006
|
"get_servicenow_incident_fields",
|
|
45595
46007
|
"get_servicenow_users",
|
|
45596
46008
|
"get_servicenow_integrations",
|
|
@@ -45697,8 +46109,10 @@ class Query(sgqlc.types.Type):
|
|
|
45697
46109
|
"get_table_columns_lineage",
|
|
45698
46110
|
"get_derived_tables_partial_lineage",
|
|
45699
46111
|
"get_parsed_query",
|
|
46112
|
+
"get_trace_tree_nodes",
|
|
45700
46113
|
"get_agent_span_groups",
|
|
45701
46114
|
"get_agent_span_sample",
|
|
46115
|
+
"get_agent_span_sample_v2",
|
|
45702
46116
|
"evaluate_agent_monitor_data_source",
|
|
45703
46117
|
"get_job_execution_history_logs",
|
|
45704
46118
|
"get_job_executions",
|
|
@@ -45988,81 +46402,112 @@ class Query(sgqlc.types.Type):
|
|
|
45988
46402
|
)
|
|
45989
46403
|
"""(experimental) Get all agent trace tables"""
|
|
45990
46404
|
|
|
45991
|
-
|
|
45992
|
-
"
|
|
45993
|
-
|
|
46405
|
+
get_traces_filters = sgqlc.types.Field(
|
|
46406
|
+
sgqlc.types.list_of("TraceFilter"), graphql_name="getTracesFilters"
|
|
46407
|
+
)
|
|
46408
|
+
"""(experimental) Get metadata about filters that can be applied when
|
|
46409
|
+
requesting traces
|
|
46410
|
+
"""
|
|
46411
|
+
|
|
46412
|
+
get_traces_filters_data = sgqlc.types.Field(
|
|
46413
|
+
sgqlc.types.list_of("TraceFilterData"),
|
|
46414
|
+
graphql_name="getTracesFiltersData",
|
|
45994
46415
|
args=sgqlc.types.ArgDict(
|
|
45995
46416
|
(
|
|
45996
46417
|
(
|
|
45997
|
-
"
|
|
46418
|
+
"filters_request",
|
|
45998
46419
|
sgqlc.types.Arg(
|
|
45999
|
-
sgqlc.types.non_null(
|
|
46420
|
+
sgqlc.types.non_null(sgqlc.types.list_of(TraceFilterDataRequest)),
|
|
46421
|
+
graphql_name="filtersRequest",
|
|
46422
|
+
default=None,
|
|
46000
46423
|
),
|
|
46001
46424
|
),
|
|
46002
46425
|
)
|
|
46003
46426
|
),
|
|
46004
46427
|
)
|
|
46005
|
-
"""(experimental) Get
|
|
46006
|
-
|
|
46007
|
-
individual spans grouped by trace_id. Supports sorting by multiple
|
|
46008
|
-
fields and filtering by agent name and time range.
|
|
46428
|
+
"""(experimental) Get filter values with counts for trace filters
|
|
46429
|
+
(for faceted search UI)
|
|
46009
46430
|
|
|
46010
46431
|
Arguments:
|
|
46011
46432
|
|
|
46012
|
-
* `
|
|
46433
|
+
* `filters_request` (`[TraceFilterDataRequest]!`)None
|
|
46013
46434
|
"""
|
|
46014
46435
|
|
|
46015
|
-
|
|
46016
|
-
"
|
|
46017
|
-
graphql_name="
|
|
46436
|
+
get_traces = sgqlc.types.Field(
|
|
46437
|
+
"TraceConnection",
|
|
46438
|
+
graphql_name="getTraces",
|
|
46018
46439
|
args=sgqlc.types.ArgDict(
|
|
46019
46440
|
(
|
|
46020
46441
|
(
|
|
46021
|
-
"
|
|
46022
|
-
sgqlc.types.Arg(
|
|
46023
|
-
sgqlc.types.non_null(TableMonitorMetricType),
|
|
46024
|
-
graphql_name="metric",
|
|
46025
|
-
default=None,
|
|
46026
|
-
),
|
|
46027
|
-
),
|
|
46028
|
-
(
|
|
46029
|
-
"domain_ids",
|
|
46030
|
-
sgqlc.types.Arg(
|
|
46031
|
-
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
46032
|
-
),
|
|
46033
|
-
),
|
|
46034
|
-
(
|
|
46035
|
-
"tags",
|
|
46036
|
-
sgqlc.types.Arg(
|
|
46037
|
-
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
46038
|
-
),
|
|
46039
|
-
),
|
|
46040
|
-
(
|
|
46041
|
-
"data_product_ids",
|
|
46442
|
+
"input",
|
|
46042
46443
|
sgqlc.types.Arg(
|
|
46043
|
-
sgqlc.types.
|
|
46444
|
+
sgqlc.types.non_null(GetTracesInput), graphql_name="input", default=None
|
|
46044
46445
|
),
|
|
46045
46446
|
),
|
|
46046
46447
|
)
|
|
46047
46448
|
),
|
|
46048
46449
|
)
|
|
46049
|
-
"""(experimental) Get
|
|
46450
|
+
"""(experimental) Get traces from the agent_spans table with
|
|
46451
|
+
bidirectional cursor-based pagination. Traces are aggregations of
|
|
46452
|
+
individual spans grouped by trace_id. Supports sorting by multiple
|
|
46453
|
+
fields and filtering by agent name and time range.
|
|
46050
46454
|
|
|
46051
46455
|
Arguments:
|
|
46052
46456
|
|
|
46053
|
-
* `
|
|
46054
|
-
* `domain_ids` (`[UUID]`)None
|
|
46055
|
-
* `tags` (`[TagKeyValuePairInput]`)None
|
|
46056
|
-
* `data_product_ids` (`[UUID]`)None
|
|
46457
|
+
* `input` (`GetTracesInput!`)None
|
|
46057
46458
|
"""
|
|
46058
46459
|
|
|
46059
|
-
|
|
46060
|
-
"
|
|
46061
|
-
graphql_name="
|
|
46460
|
+
get_table_monitor_metric = sgqlc.types.Field(
|
|
46461
|
+
"TableMonitorMetric",
|
|
46462
|
+
graphql_name="getTableMonitorMetric",
|
|
46062
46463
|
args=sgqlc.types.ArgDict(
|
|
46063
46464
|
(
|
|
46064
|
-
(
|
|
46065
|
-
|
|
46465
|
+
(
|
|
46466
|
+
"metric",
|
|
46467
|
+
sgqlc.types.Arg(
|
|
46468
|
+
sgqlc.types.non_null(TableMonitorMetricType),
|
|
46469
|
+
graphql_name="metric",
|
|
46470
|
+
default=None,
|
|
46471
|
+
),
|
|
46472
|
+
),
|
|
46473
|
+
(
|
|
46474
|
+
"domain_ids",
|
|
46475
|
+
sgqlc.types.Arg(
|
|
46476
|
+
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
46477
|
+
),
|
|
46478
|
+
),
|
|
46479
|
+
(
|
|
46480
|
+
"tags",
|
|
46481
|
+
sgqlc.types.Arg(
|
|
46482
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
46483
|
+
),
|
|
46484
|
+
),
|
|
46485
|
+
(
|
|
46486
|
+
"data_product_ids",
|
|
46487
|
+
sgqlc.types.Arg(
|
|
46488
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
46489
|
+
),
|
|
46490
|
+
),
|
|
46491
|
+
)
|
|
46492
|
+
),
|
|
46493
|
+
)
|
|
46494
|
+
"""(experimental) Get a table monitor metric
|
|
46495
|
+
|
|
46496
|
+
Arguments:
|
|
46497
|
+
|
|
46498
|
+
* `metric` (`TableMonitorMetricType!`)None
|
|
46499
|
+
* `domain_ids` (`[UUID]`)None
|
|
46500
|
+
* `tags` (`[TagKeyValuePairInput]`)None
|
|
46501
|
+
* `data_product_ids` (`[UUID]`)None
|
|
46502
|
+
"""
|
|
46503
|
+
|
|
46504
|
+
get_tables_for_coverage_dashboard = sgqlc.types.Field(
|
|
46505
|
+
"SearchResponse",
|
|
46506
|
+
graphql_name="getTablesForCoverageDashboard",
|
|
46507
|
+
args=sgqlc.types.ArgDict(
|
|
46508
|
+
(
|
|
46509
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=100)),
|
|
46510
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
46066
46511
|
(
|
|
46067
46512
|
"metric",
|
|
46068
46513
|
sgqlc.types.Arg(
|
|
@@ -48989,6 +49434,119 @@ class Query(sgqlc.types.Type):
|
|
|
48989
49434
|
* `mcon` (`String`): MC unique identifier of the object
|
|
48990
49435
|
"""
|
|
48991
49436
|
|
|
49437
|
+
get_slack_users = sgqlc.types.Field(
|
|
49438
|
+
sgqlc.types.list_of(sgqlc.types.non_null("SlackUserOutput")),
|
|
49439
|
+
graphql_name="getSlackUsers",
|
|
49440
|
+
args=sgqlc.types.ArgDict(
|
|
49441
|
+
(
|
|
49442
|
+
(
|
|
49443
|
+
"team_id",
|
|
49444
|
+
sgqlc.types.Arg(
|
|
49445
|
+
sgqlc.types.non_null(String), graphql_name="teamId", default=None
|
|
49446
|
+
),
|
|
49447
|
+
),
|
|
49448
|
+
(
|
|
49449
|
+
"user_ids",
|
|
49450
|
+
sgqlc.types.Arg(
|
|
49451
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
49452
|
+
graphql_name="userIds",
|
|
49453
|
+
default=None,
|
|
49454
|
+
),
|
|
49455
|
+
),
|
|
49456
|
+
)
|
|
49457
|
+
),
|
|
49458
|
+
)
|
|
49459
|
+
"""(experimental) Bulk fetch Slack users by IDs
|
|
49460
|
+
|
|
49461
|
+
Arguments:
|
|
49462
|
+
|
|
49463
|
+
* `team_id` (`String!`): Slack team/workspace ID
|
|
49464
|
+
* `user_ids` (`[String!]!`): List of Slack user IDs to fetch
|
|
49465
|
+
"""
|
|
49466
|
+
|
|
49467
|
+
get_slack_user_groups = sgqlc.types.Field(
|
|
49468
|
+
sgqlc.types.list_of(sgqlc.types.non_null("SlackUserGroupOutput")),
|
|
49469
|
+
graphql_name="getSlackUserGroups",
|
|
49470
|
+
args=sgqlc.types.ArgDict(
|
|
49471
|
+
(
|
|
49472
|
+
(
|
|
49473
|
+
"team_id",
|
|
49474
|
+
sgqlc.types.Arg(
|
|
49475
|
+
sgqlc.types.non_null(String), graphql_name="teamId", default=None
|
|
49476
|
+
),
|
|
49477
|
+
),
|
|
49478
|
+
(
|
|
49479
|
+
"usergroup_ids",
|
|
49480
|
+
sgqlc.types.Arg(
|
|
49481
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
49482
|
+
graphql_name="usergroupIds",
|
|
49483
|
+
default=None,
|
|
49484
|
+
),
|
|
49485
|
+
),
|
|
49486
|
+
)
|
|
49487
|
+
),
|
|
49488
|
+
)
|
|
49489
|
+
"""(experimental) Bulk fetch Slack user groups by IDs
|
|
49490
|
+
|
|
49491
|
+
Arguments:
|
|
49492
|
+
|
|
49493
|
+
* `team_id` (`String!`): Slack team/workspace ID
|
|
49494
|
+
* `usergroup_ids` (`[String!]!`): List of Slack user group IDs to
|
|
49495
|
+
fetch
|
|
49496
|
+
"""
|
|
49497
|
+
|
|
49498
|
+
list_slack_users = sgqlc.types.Field(
|
|
49499
|
+
"SlackUserListOutput",
|
|
49500
|
+
graphql_name="listSlackUsers",
|
|
49501
|
+
args=sgqlc.types.ArgDict(
|
|
49502
|
+
(
|
|
49503
|
+
(
|
|
49504
|
+
"team_id",
|
|
49505
|
+
sgqlc.types.Arg(
|
|
49506
|
+
sgqlc.types.non_null(String), graphql_name="teamId", default=None
|
|
49507
|
+
),
|
|
49508
|
+
),
|
|
49509
|
+
("cursor", sgqlc.types.Arg(String, graphql_name="cursor", default=None)),
|
|
49510
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=None)),
|
|
49511
|
+
)
|
|
49512
|
+
),
|
|
49513
|
+
)
|
|
49514
|
+
"""(experimental) List Slack users with pagination (pass-through to
|
|
49515
|
+
Slack API). Returns only id and display_name for efficiency.
|
|
49516
|
+
Clients can do their own filtering.
|
|
49517
|
+
|
|
49518
|
+
Arguments:
|
|
49519
|
+
|
|
49520
|
+
* `team_id` (`String!`): Slack team/workspace ID
|
|
49521
|
+
* `cursor` (`String`): Pagination cursor from previous response
|
|
49522
|
+
* `limit` (`Int`): Number of results per page (default 1000, max
|
|
49523
|
+
1000)
|
|
49524
|
+
"""
|
|
49525
|
+
|
|
49526
|
+
list_slack_user_groups = sgqlc.types.Field(
|
|
49527
|
+
"SlackUserGroupListOutput",
|
|
49528
|
+
graphql_name="listSlackUserGroups",
|
|
49529
|
+
args=sgqlc.types.ArgDict(
|
|
49530
|
+
(
|
|
49531
|
+
(
|
|
49532
|
+
"team_id",
|
|
49533
|
+
sgqlc.types.Arg(
|
|
49534
|
+
sgqlc.types.non_null(String), graphql_name="teamId", default=None
|
|
49535
|
+
),
|
|
49536
|
+
),
|
|
49537
|
+
)
|
|
49538
|
+
),
|
|
49539
|
+
)
|
|
49540
|
+
"""(experimental) List all Slack user groups (pass-through to Slack
|
|
49541
|
+
API). Returns only id and name for efficiency. Clients can do
|
|
49542
|
+
their own filtering. Note: Slack's API does not support pagination
|
|
49543
|
+
for user groups.
|
|
49544
|
+
|
|
49545
|
+
Arguments:
|
|
49546
|
+
|
|
49547
|
+
* `team_id` (`String!`): Slack team/workspace ID
|
|
49548
|
+
"""
|
|
49549
|
+
|
|
48992
49550
|
get_servicenow_incident_fields = sgqlc.types.Field(
|
|
48993
49551
|
sgqlc.types.list_of(sgqlc.types.non_null("ServiceNowFieldOutput")),
|
|
48994
49552
|
graphql_name="getServicenowIncidentFields",
|
|
@@ -52363,6 +52921,46 @@ class Query(sgqlc.types.Type):
|
|
|
52363
52921
|
* `mcon` (`String`): Source table mcon
|
|
52364
52922
|
"""
|
|
52365
52923
|
|
|
52924
|
+
get_trace_tree_nodes = sgqlc.types.Field(
|
|
52925
|
+
sgqlc.types.list_of(sgqlc.types.non_null("TraceNode")),
|
|
52926
|
+
graphql_name="getTraceTreeNodes",
|
|
52927
|
+
args=sgqlc.types.ArgDict(
|
|
52928
|
+
(
|
|
52929
|
+
(
|
|
52930
|
+
"mcon",
|
|
52931
|
+
sgqlc.types.Arg(
|
|
52932
|
+
sgqlc.types.non_null(String), graphql_name="mcon", default=None
|
|
52933
|
+
),
|
|
52934
|
+
),
|
|
52935
|
+
(
|
|
52936
|
+
"trace_id",
|
|
52937
|
+
sgqlc.types.Arg(
|
|
52938
|
+
sgqlc.types.non_null(String), graphql_name="traceId", default=None
|
|
52939
|
+
),
|
|
52940
|
+
),
|
|
52941
|
+
(
|
|
52942
|
+
"trace_start_time",
|
|
52943
|
+
sgqlc.types.Arg(DateTime, graphql_name="traceStartTime", default=None),
|
|
52944
|
+
),
|
|
52945
|
+
(
|
|
52946
|
+
"trace_end_time",
|
|
52947
|
+
sgqlc.types.Arg(DateTime, graphql_name="traceEndTime", default=None),
|
|
52948
|
+
),
|
|
52949
|
+
)
|
|
52950
|
+
),
|
|
52951
|
+
)
|
|
52952
|
+
"""(experimental) Retrieve span tree for a given traceId
|
|
52953
|
+
|
|
52954
|
+
Arguments:
|
|
52955
|
+
|
|
52956
|
+
* `mcon` (`String!`): MCON of the table with agent observability
|
|
52957
|
+
traces
|
|
52958
|
+
* `trace_id` (`String!`): Trace ID to retrieve
|
|
52959
|
+
* `trace_start_time` (`DateTime`): Start time of the trace
|
|
52960
|
+
(inclusive)
|
|
52961
|
+
* `trace_end_time` (`DateTime`): End time of the trace (inclusive)
|
|
52962
|
+
"""
|
|
52963
|
+
|
|
52366
52964
|
get_agent_span_groups = sgqlc.types.Field(
|
|
52367
52965
|
AgentSpanTree,
|
|
52368
52966
|
graphql_name="getAgentSpanGroups",
|
|
@@ -52495,6 +53093,112 @@ class Query(sgqlc.types.Type):
|
|
|
52495
53093
|
(inclusive) +- 1 hr
|
|
52496
53094
|
"""
|
|
52497
53095
|
|
|
53096
|
+
get_agent_span_sample_v2 = sgqlc.types.Field(
|
|
53097
|
+
"SQLResponse",
|
|
53098
|
+
graphql_name="getAgentSpanSampleV2",
|
|
53099
|
+
args=sgqlc.types.ArgDict(
|
|
53100
|
+
(
|
|
53101
|
+
(
|
|
53102
|
+
"mcon",
|
|
53103
|
+
sgqlc.types.Arg(
|
|
53104
|
+
sgqlc.types.non_null(String), graphql_name="mcon", default=None
|
|
53105
|
+
),
|
|
53106
|
+
),
|
|
53107
|
+
(
|
|
53108
|
+
"agent_span_filters",
|
|
53109
|
+
sgqlc.types.Arg(
|
|
53110
|
+
sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilterInput)),
|
|
53111
|
+
graphql_name="agentSpanFilters",
|
|
53112
|
+
default=None,
|
|
53113
|
+
),
|
|
53114
|
+
),
|
|
53115
|
+
(
|
|
53116
|
+
"filters",
|
|
53117
|
+
sgqlc.types.Arg(FilterGroupInput, graphql_name="filters", default=None),
|
|
53118
|
+
),
|
|
53119
|
+
(
|
|
53120
|
+
"transforms",
|
|
53121
|
+
sgqlc.types.Arg(
|
|
53122
|
+
sgqlc.types.list_of(sgqlc.types.non_null(TransformInput)),
|
|
53123
|
+
graphql_name="transforms",
|
|
53124
|
+
default=None,
|
|
53125
|
+
),
|
|
53126
|
+
),
|
|
53127
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=10)),
|
|
53128
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
|
|
53129
|
+
(
|
|
53130
|
+
"span_ids",
|
|
53131
|
+
sgqlc.types.Arg(
|
|
53132
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
53133
|
+
graphql_name="spanIds",
|
|
53134
|
+
default=None,
|
|
53135
|
+
),
|
|
53136
|
+
),
|
|
53137
|
+
(
|
|
53138
|
+
"trace_ids",
|
|
53139
|
+
sgqlc.types.Arg(
|
|
53140
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)),
|
|
53141
|
+
graphql_name="traceIds",
|
|
53142
|
+
default=None,
|
|
53143
|
+
),
|
|
53144
|
+
),
|
|
53145
|
+
("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
|
|
53146
|
+
(
|
|
53147
|
+
"trace_timestamp",
|
|
53148
|
+
sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
|
|
53149
|
+
),
|
|
53150
|
+
(
|
|
53151
|
+
"ingestion_start_time",
|
|
53152
|
+
sgqlc.types.Arg(DateTime, graphql_name="ingestionStartTime", default=None),
|
|
53153
|
+
),
|
|
53154
|
+
(
|
|
53155
|
+
"ingestion_end_time",
|
|
53156
|
+
sgqlc.types.Arg(DateTime, graphql_name="ingestionEndTime", default=None),
|
|
53157
|
+
),
|
|
53158
|
+
(
|
|
53159
|
+
"select_expression_type",
|
|
53160
|
+
sgqlc.types.Arg(
|
|
53161
|
+
AgentMonitorSelectExpressionType,
|
|
53162
|
+
graphql_name="selectExpressionType",
|
|
53163
|
+
default="SPAN_TREE",
|
|
53164
|
+
),
|
|
53165
|
+
),
|
|
53166
|
+
)
|
|
53167
|
+
),
|
|
53168
|
+
)
|
|
53169
|
+
"""(experimental) Sample agent span data with optional transforms and
|
|
53170
|
+
filtering
|
|
53171
|
+
|
|
53172
|
+
Arguments:
|
|
53173
|
+
|
|
53174
|
+
* `mcon` (`String!`): MCON of the table with agent observability
|
|
53175
|
+
traces
|
|
53176
|
+
* `agent_span_filters` (`[AgentSpanFilterInput!]`): Filter by
|
|
53177
|
+
agent span fields (agent, workflow, task, span_name)
|
|
53178
|
+
* `filters` (`FilterGroupInput`): Structured SQL filtering
|
|
53179
|
+
conditions to apply to query
|
|
53180
|
+
* `transforms` (`[TransformInput!]`): Transforms to apply to the
|
|
53181
|
+
data source
|
|
53182
|
+
* `limit` (`Int`): Number of sample rows to return (max 100)
|
|
53183
|
+
(default: `10`)
|
|
53184
|
+
* `offset` (`Int`): Number of rows to skip before returning
|
|
53185
|
+
results (default: `0`)
|
|
53186
|
+
* `span_ids` (`[String!]`): Filter by specific span IDs (<= limit)
|
|
53187
|
+
* `trace_ids` (`[String!]`): Filter by specific trace IDs (<=
|
|
53188
|
+
limit)
|
|
53189
|
+
* `connection_id` (`UUID`): Connection UUID
|
|
53190
|
+
* `trace_timestamp` (`DateTime`): Filter by trace timestamp
|
|
53191
|
+
(inclusive) +- 1 hr
|
|
53192
|
+
* `ingestion_start_time` (`DateTime`): Filter by span start time
|
|
53193
|
+
(inclusive)
|
|
53194
|
+
* `ingestion_end_time` (`DateTime`): Filter by span end time
|
|
53195
|
+
* `select_expression_type` (`AgentMonitorSelectExpressionType`):
|
|
53196
|
+
This is to explicitly specify the type of select expressions.
|
|
53197
|
+
But we will return the columns based on the validity of the
|
|
53198
|
+
query.Not providing the select_expression_type will default to
|
|
53199
|
+
SPAN_TREE. (default: `"SPAN_TREE"`)
|
|
53200
|
+
"""
|
|
53201
|
+
|
|
52498
53202
|
evaluate_agent_monitor_data_source = sgqlc.types.Field(
|
|
52499
53203
|
DataSourceEvaluationResult,
|
|
52500
53204
|
graphql_name="evaluateAgentMonitorDataSource",
|
|
@@ -62530,8 +63234,8 @@ class Query(sgqlc.types.Type):
|
|
|
62530
63234
|
)
|
|
62531
63235
|
),
|
|
62532
63236
|
)
|
|
62533
|
-
"""(experimental) Get the status of an alert access
|
|
62534
|
-
current user
|
|
63237
|
+
"""(experimental) DEPRECATED. Get the status of an alert access
|
|
63238
|
+
request for the current user
|
|
62535
63239
|
|
|
62536
63240
|
Arguments:
|
|
62537
63241
|
|
|
@@ -64148,6 +64852,7 @@ class RoutingRuleData(sgqlc.types.Type):
|
|
|
64148
64852
|
"table_stats_rules",
|
|
64149
64853
|
"asset_rules",
|
|
64150
64854
|
"domain_rules",
|
|
64855
|
+
"exclude_domains",
|
|
64151
64856
|
"digest_settings_id",
|
|
64152
64857
|
"created_by_id",
|
|
64153
64858
|
"last_update_user_id",
|
|
@@ -64181,6 +64886,10 @@ class RoutingRuleData(sgqlc.types.Type):
|
|
|
64181
64886
|
sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="domainRules"
|
|
64182
64887
|
)
|
|
64183
64888
|
|
|
64889
|
+
exclude_domains = sgqlc.types.Field(
|
|
64890
|
+
sgqlc.types.list_of(sgqlc.types.non_null(String)), graphql_name="excludeDomains"
|
|
64891
|
+
)
|
|
64892
|
+
|
|
64184
64893
|
digest_settings_id = sgqlc.types.Field(String, graphql_name="digestSettingsId")
|
|
64185
64894
|
|
|
64186
64895
|
created_by_id = sgqlc.types.Field(Int, graphql_name="createdById")
|
|
@@ -65778,6 +66487,57 @@ class SlackOauthUrlResponse(sgqlc.types.Type):
|
|
|
65778
66487
|
url = sgqlc.types.Field(String, graphql_name="url")
|
|
65779
66488
|
|
|
65780
66489
|
|
|
66490
|
+
class SlackUserGroupListOutput(sgqlc.types.Type):
|
|
66491
|
+
"""Response for listing Slack user groups."""
|
|
66492
|
+
|
|
66493
|
+
__schema__ = schema
|
|
66494
|
+
__field_names__ = ("usergroups",)
|
|
66495
|
+
usergroups = sgqlc.types.Field(
|
|
66496
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("SlackUserGroupOutput"))),
|
|
66497
|
+
graphql_name="usergroups",
|
|
66498
|
+
)
|
|
66499
|
+
"""List of all user groups"""
|
|
66500
|
+
|
|
66501
|
+
|
|
66502
|
+
class SlackUserGroupOutput(sgqlc.types.Type):
|
|
66503
|
+
"""Slack user group information."""
|
|
66504
|
+
|
|
66505
|
+
__schema__ = schema
|
|
66506
|
+
__field_names__ = ("id", "name")
|
|
66507
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
|
|
66508
|
+
"""Slack user group ID"""
|
|
66509
|
+
|
|
66510
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
|
|
66511
|
+
"""User group name"""
|
|
66512
|
+
|
|
66513
|
+
|
|
66514
|
+
class SlackUserListOutput(sgqlc.types.Type):
|
|
66515
|
+
"""Paginated response for listing Slack users."""
|
|
66516
|
+
|
|
66517
|
+
__schema__ = schema
|
|
66518
|
+
__field_names__ = ("users", "next_cursor")
|
|
66519
|
+
users = sgqlc.types.Field(
|
|
66520
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("SlackUserOutput"))),
|
|
66521
|
+
graphql_name="users",
|
|
66522
|
+
)
|
|
66523
|
+
"""List of users in this page"""
|
|
66524
|
+
|
|
66525
|
+
next_cursor = sgqlc.types.Field(String, graphql_name="nextCursor")
|
|
66526
|
+
"""Cursor for next page (null if no more pages)"""
|
|
66527
|
+
|
|
66528
|
+
|
|
66529
|
+
class SlackUserOutput(sgqlc.types.Type):
|
|
66530
|
+
"""Slack user information."""
|
|
66531
|
+
|
|
66532
|
+
__schema__ = schema
|
|
66533
|
+
__field_names__ = ("id", "display_name")
|
|
66534
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
|
|
66535
|
+
"""Slack user ID"""
|
|
66536
|
+
|
|
66537
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
66538
|
+
"""Display name"""
|
|
66539
|
+
|
|
66540
|
+
|
|
65781
66541
|
class SnoozeCustomRule(sgqlc.types.Type):
|
|
65782
66542
|
"""Snooze a custom rule. Data collection will continue, but no
|
|
65783
66543
|
anomalies will be reported.
|
|
@@ -68830,6 +69590,170 @@ class TraceEdge(sgqlc.types.Type):
|
|
|
68830
69590
|
"""Cursor for this edge"""
|
|
68831
69591
|
|
|
68832
69592
|
|
|
69593
|
+
class TraceFilter(sgqlc.types.Type):
|
|
69594
|
+
"""Metadata about a trace filter."""
|
|
69595
|
+
|
|
69596
|
+
__schema__ = schema
|
|
69597
|
+
__field_names__ = (
|
|
69598
|
+
"field_name",
|
|
69599
|
+
"display_name",
|
|
69600
|
+
"query_parameter_name",
|
|
69601
|
+
"query_parameter_accepts_multiple_values",
|
|
69602
|
+
"is_range_filter",
|
|
69603
|
+
"facetable",
|
|
69604
|
+
"facet_searchable",
|
|
69605
|
+
)
|
|
69606
|
+
field_name = sgqlc.types.Field(
|
|
69607
|
+
sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
|
|
69608
|
+
)
|
|
69609
|
+
|
|
69610
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
69611
|
+
|
|
69612
|
+
query_parameter_name = sgqlc.types.Field(
|
|
69613
|
+
sgqlc.types.non_null(String), graphql_name="queryParameterName"
|
|
69614
|
+
)
|
|
69615
|
+
"""Associated getTraces parameter used to filter traces"""
|
|
69616
|
+
|
|
69617
|
+
query_parameter_accepts_multiple_values = sgqlc.types.Field(
|
|
69618
|
+
sgqlc.types.non_null(Boolean), graphql_name="queryParameterAcceptsMultipleValues"
|
|
69619
|
+
)
|
|
69620
|
+
"""Whether the associated getTraces parameter accepts multiple values
|
|
69621
|
+
as input
|
|
69622
|
+
"""
|
|
69623
|
+
|
|
69624
|
+
is_range_filter = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isRangeFilter")
|
|
69625
|
+
"""Whether this is a range filter (min/max) vs equality filter
|
|
69626
|
+
(checkboxes)
|
|
69627
|
+
"""
|
|
69628
|
+
|
|
69629
|
+
facetable = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="facetable")
|
|
69630
|
+
"""Whether the filter shows up as a facet in the UI"""
|
|
69631
|
+
|
|
69632
|
+
facet_searchable = sgqlc.types.Field(
|
|
69633
|
+
sgqlc.types.non_null(Boolean), graphql_name="facetSearchable"
|
|
69634
|
+
)
|
|
69635
|
+
"""Whether the filter values can be searched by their display name"""
|
|
69636
|
+
|
|
69637
|
+
|
|
69638
|
+
class TraceFilterData(sgqlc.types.Type):
|
|
69639
|
+
"""Filter values with counts for a single filter."""
|
|
69640
|
+
|
|
69641
|
+
__schema__ = schema
|
|
69642
|
+
__field_names__ = ("field_name", "values", "page_info")
|
|
69643
|
+
field_name = sgqlc.types.Field(
|
|
69644
|
+
sgqlc.types.non_null(TraceFilterFieldName), graphql_name="fieldName"
|
|
69645
|
+
)
|
|
69646
|
+
"""The filter field name"""
|
|
69647
|
+
|
|
69648
|
+
values = sgqlc.types.Field(
|
|
69649
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("TraceFilterDataValue"))),
|
|
69650
|
+
graphql_name="values",
|
|
69651
|
+
)
|
|
69652
|
+
"""List of filter values with counts"""
|
|
69653
|
+
|
|
69654
|
+
page_info = sgqlc.types.Field(
|
|
69655
|
+
sgqlc.types.non_null("TraceFilterDataPageInfo"), graphql_name="pageInfo"
|
|
69656
|
+
)
|
|
69657
|
+
"""Pagination information"""
|
|
69658
|
+
|
|
69659
|
+
|
|
69660
|
+
class TraceFilterDataPageInfo(sgqlc.types.Type):
|
|
69661
|
+
"""Pagination info for filter values."""
|
|
69662
|
+
|
|
69663
|
+
__schema__ = schema
|
|
69664
|
+
__field_names__ = ("has_next_page", "end_cursor")
|
|
69665
|
+
has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasNextPage")
|
|
69666
|
+
"""Whether there are more results"""
|
|
69667
|
+
|
|
69668
|
+
end_cursor = sgqlc.types.Field(String, graphql_name="endCursor")
|
|
69669
|
+
"""Cursor for the next page"""
|
|
69670
|
+
|
|
69671
|
+
|
|
69672
|
+
class TraceFilterDataValue(sgqlc.types.Type):
|
|
69673
|
+
"""A single filter value with its count."""
|
|
69674
|
+
|
|
69675
|
+
__schema__ = schema
|
|
69676
|
+
__field_names__ = ("value", "display_name", "count")
|
|
69677
|
+
value = sgqlc.types.Field(sgqlc.types.non_null(GenericScalar), graphql_name="value")
|
|
69678
|
+
"""The filter value"""
|
|
69679
|
+
|
|
69680
|
+
display_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="displayName")
|
|
69681
|
+
"""Display name for the value"""
|
|
69682
|
+
|
|
69683
|
+
count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
|
|
69684
|
+
"""Number of traces with this value"""
|
|
69685
|
+
|
|
69686
|
+
|
|
69687
|
+
class TraceNode(sgqlc.types.Type):
|
|
69688
|
+
__schema__ = schema
|
|
69689
|
+
__field_names__ = (
|
|
69690
|
+
"node_name",
|
|
69691
|
+
"span_id",
|
|
69692
|
+
"trace_id",
|
|
69693
|
+
"parent_span_id",
|
|
69694
|
+
"duration",
|
|
69695
|
+
"start_time",
|
|
69696
|
+
"end_time",
|
|
69697
|
+
"ingest_time",
|
|
69698
|
+
"has_prompts",
|
|
69699
|
+
"has_completions",
|
|
69700
|
+
"prompt_tokens",
|
|
69701
|
+
"completion_tokens",
|
|
69702
|
+
"total_tokens",
|
|
69703
|
+
"model",
|
|
69704
|
+
"agent_name",
|
|
69705
|
+
"workflow",
|
|
69706
|
+
"task",
|
|
69707
|
+
"child_span_ids",
|
|
69708
|
+
"start_extra_ns",
|
|
69709
|
+
"end_extra_ns",
|
|
69710
|
+
)
|
|
69711
|
+
node_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="nodeName")
|
|
69712
|
+
|
|
69713
|
+
span_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="spanId")
|
|
69714
|
+
|
|
69715
|
+
trace_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="traceId")
|
|
69716
|
+
|
|
69717
|
+
parent_span_id = sgqlc.types.Field(String, graphql_name="parentSpanId")
|
|
69718
|
+
|
|
69719
|
+
duration = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="duration")
|
|
69720
|
+
|
|
69721
|
+
start_time = sgqlc.types.Field(DateTime, graphql_name="startTime")
|
|
69722
|
+
|
|
69723
|
+
end_time = sgqlc.types.Field(DateTime, graphql_name="endTime")
|
|
69724
|
+
|
|
69725
|
+
ingest_time = sgqlc.types.Field(DateTime, graphql_name="ingestTime")
|
|
69726
|
+
|
|
69727
|
+
has_prompts = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasPrompts")
|
|
69728
|
+
|
|
69729
|
+
has_completions = sgqlc.types.Field(
|
|
69730
|
+
sgqlc.types.non_null(Boolean), graphql_name="hasCompletions"
|
|
69731
|
+
)
|
|
69732
|
+
|
|
69733
|
+
prompt_tokens = sgqlc.types.Field(Int, graphql_name="promptTokens")
|
|
69734
|
+
|
|
69735
|
+
completion_tokens = sgqlc.types.Field(Int, graphql_name="completionTokens")
|
|
69736
|
+
|
|
69737
|
+
total_tokens = sgqlc.types.Field(Int, graphql_name="totalTokens")
|
|
69738
|
+
|
|
69739
|
+
model = sgqlc.types.Field(String, graphql_name="model")
|
|
69740
|
+
|
|
69741
|
+
agent_name = sgqlc.types.Field(String, graphql_name="agentName")
|
|
69742
|
+
|
|
69743
|
+
workflow = sgqlc.types.Field(String, graphql_name="workflow")
|
|
69744
|
+
|
|
69745
|
+
task = sgqlc.types.Field(String, graphql_name="task")
|
|
69746
|
+
|
|
69747
|
+
child_span_ids = sgqlc.types.Field(
|
|
69748
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
69749
|
+
graphql_name="childSpanIds",
|
|
69750
|
+
)
|
|
69751
|
+
|
|
69752
|
+
start_extra_ns = sgqlc.types.Field(Int, graphql_name="startExtraNs")
|
|
69753
|
+
|
|
69754
|
+
end_extra_ns = sgqlc.types.Field(Int, graphql_name="endExtraNs")
|
|
69755
|
+
|
|
69756
|
+
|
|
68833
69757
|
class TracePageInfo(sgqlc.types.Type):
|
|
68834
69758
|
"""PageInfo for trace pagination (Relay spec compliant)."""
|
|
68835
69759
|
|
|
@@ -73792,6 +74716,7 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
73792
74716
|
"schedule_config",
|
|
73793
74717
|
"notification_settings",
|
|
73794
74718
|
"alert_conditions",
|
|
74719
|
+
"domain_uuids",
|
|
73795
74720
|
)
|
|
73796
74721
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
73797
74722
|
|
|
@@ -73836,6 +74761,11 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
73836
74761
|
graphql_name="alertConditions",
|
|
73837
74762
|
)
|
|
73838
74763
|
|
|
74764
|
+
domain_uuids = sgqlc.types.Field(
|
|
74765
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
|
|
74766
|
+
)
|
|
74767
|
+
"""Domain UUIDs assigned to the monitor."""
|
|
74768
|
+
|
|
73839
74769
|
|
|
73840
74770
|
class ConnectionRestriction(sgqlc.types.Type, Node):
|
|
73841
74771
|
__schema__ = schema
|
|
@@ -73966,6 +74896,7 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
73966
74896
|
"priority",
|
|
73967
74897
|
"comparisons",
|
|
73968
74898
|
"is_paused",
|
|
74899
|
+
"is_draft",
|
|
73969
74900
|
"rule_type",
|
|
73970
74901
|
"warehouse_uuid",
|
|
73971
74902
|
"interval_minutes",
|
|
@@ -74019,6 +74950,7 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
74019
74950
|
"mc_sql",
|
|
74020
74951
|
"tags",
|
|
74021
74952
|
"data_quality_dimension",
|
|
74953
|
+
"domain_uuids",
|
|
74022
74954
|
"notify_rule_run_failure",
|
|
74023
74955
|
"variables",
|
|
74024
74956
|
"variable_definitions",
|
|
@@ -74083,6 +75015,9 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
74083
75015
|
is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
|
|
74084
75016
|
"""True if rule is paused"""
|
|
74085
75017
|
|
|
75018
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
75019
|
+
"""Is this a draft monitor?"""
|
|
75020
|
+
|
|
74086
75021
|
rule_type = sgqlc.types.Field(CustomRuleModelRuleType, graphql_name="ruleType")
|
|
74087
75022
|
|
|
74088
75023
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
@@ -74306,6 +75241,11 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
74306
75241
|
data_quality_dimension = sgqlc.types.Field(String, graphql_name="dataQualityDimension")
|
|
74307
75242
|
"""Data Quality Dimension of the monitor."""
|
|
74308
75243
|
|
|
75244
|
+
domain_uuids = sgqlc.types.Field(
|
|
75245
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
|
|
75246
|
+
)
|
|
75247
|
+
"""Domain UUIDs assigned to the monitor."""
|
|
75248
|
+
|
|
74309
75249
|
notify_rule_run_failure = sgqlc.types.Field(Boolean, graphql_name="notifyRuleRunFailure")
|
|
74310
75250
|
"""DEPRECATED: Replaced by failure audiences"""
|
|
74311
75251
|
|
|
@@ -77379,6 +78319,7 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
77379
78319
|
"priority",
|
|
77380
78320
|
"comparisons",
|
|
77381
78321
|
"is_paused",
|
|
78322
|
+
"is_draft",
|
|
77382
78323
|
"type",
|
|
77383
78324
|
"warehouse_uuid",
|
|
77384
78325
|
"data_source",
|
|
@@ -77426,6 +78367,7 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
77426
78367
|
"filters",
|
|
77427
78368
|
"connection_id",
|
|
77428
78369
|
"timeout",
|
|
78370
|
+
"domain_uuids",
|
|
77429
78371
|
)
|
|
77430
78372
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
77431
78373
|
|
|
@@ -77483,6 +78425,9 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
77483
78425
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
77484
78426
|
"""Is this monitor paused?"""
|
|
77485
78427
|
|
|
78428
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
78429
|
+
"""Is this a draft monitor?"""
|
|
78430
|
+
|
|
77486
78431
|
type = sgqlc.types.Field(sgqlc.types.non_null(MetricMonitoringModelType), graphql_name="type")
|
|
77487
78432
|
|
|
77488
78433
|
warehouse_uuid = sgqlc.types.Field(UUID, graphql_name="warehouseUuid")
|
|
@@ -77651,6 +78596,11 @@ class MetricMonitoring(sgqlc.types.Type, Node):
|
|
|
77651
78596
|
timeout = sgqlc.types.Field(Int, graphql_name="timeout")
|
|
77652
78597
|
"""Timeout for the SQL query"""
|
|
77653
78598
|
|
|
78599
|
+
domain_uuids = sgqlc.types.Field(
|
|
78600
|
+
sgqlc.types.list_of(sgqlc.types.non_null(UUID)), graphql_name="domainUuids"
|
|
78601
|
+
)
|
|
78602
|
+
"""Domain UUIDs assigned to the monitor."""
|
|
78603
|
+
|
|
77654
78604
|
|
|
77655
78605
|
class Monitor(
|
|
77656
78606
|
sgqlc.types.Type,
|
|
@@ -78013,6 +78963,7 @@ class SlackChannelV2(sgqlc.types.Type, Node):
|
|
|
78013
78963
|
"channel_id",
|
|
78014
78964
|
"topic",
|
|
78015
78965
|
"purpose",
|
|
78966
|
+
"loading_start_time",
|
|
78016
78967
|
"created_time",
|
|
78017
78968
|
"team_id",
|
|
78018
78969
|
)
|
|
@@ -78031,6 +78982,9 @@ class SlackChannelV2(sgqlc.types.Type, Node):
|
|
|
78031
78982
|
purpose = sgqlc.types.Field(String, graphql_name="purpose")
|
|
78032
78983
|
"""The slack channel purpose"""
|
|
78033
78984
|
|
|
78985
|
+
loading_start_time = sgqlc.types.Field(DateTime, graphql_name="loadingStartTime")
|
|
78986
|
+
"""Timestamp when the channel was marked as loading"""
|
|
78987
|
+
|
|
78034
78988
|
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
78035
78989
|
"""The time this record was created."""
|
|
78036
78990
|
|