pycarlo 0.12.5__py3-none-any.whl → 0.12.30__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycarlo/lib/schema.json +1297 -29
- pycarlo/lib/schema.py +484 -28
- {pycarlo-0.12.5.dist-info → pycarlo-0.12.30.dist-info}/METADATA +1 -1
- {pycarlo-0.12.5.dist-info → pycarlo-0.12.30.dist-info}/RECORD +7 -7
- {pycarlo-0.12.5.dist-info → pycarlo-0.12.30.dist-info}/LICENSE +0 -0
- {pycarlo-0.12.5.dist-info → pycarlo-0.12.30.dist-info}/WHEEL +0 -0
- {pycarlo-0.12.5.dist-info → pycarlo-0.12.30.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -234,11 +234,12 @@ class AgentModelStorageType(pycarlo.lib.types.Enum):
|
|
|
234
234
|
* `AZURE_BLOB`: Azure Storage
|
|
235
235
|
* `GCS`: Google Cloud Storage
|
|
236
236
|
* `S3`: Amazon S3
|
|
237
|
+
* `S3_COMPATIBLE`: S3 Compatible Storage
|
|
237
238
|
* `SNOWFLAKE_INTERNAL_STAGE`: Snowflake Internal Stage
|
|
238
239
|
"""
|
|
239
240
|
|
|
240
241
|
__schema__ = schema
|
|
241
|
-
__choices__ = ("AZURE_BLOB", "GCS", "S3", "SNOWFLAKE_INTERNAL_STAGE")
|
|
242
|
+
__choices__ = ("AZURE_BLOB", "GCS", "S3", "S3_COMPATIBLE", "SNOWFLAKE_INTERNAL_STAGE")
|
|
242
243
|
|
|
243
244
|
|
|
244
245
|
class AgentModelWrapperType(pycarlo.lib.types.Enum):
|
|
@@ -1270,6 +1271,7 @@ class ConsolidatedMonitorStatusType(pycarlo.lib.types.Enum):
|
|
|
1270
1271
|
"""Enumeration Choices:
|
|
1271
1272
|
|
|
1272
1273
|
* `DISABLED`None
|
|
1274
|
+
* `DRAFT`None
|
|
1273
1275
|
* `ENABLED`None
|
|
1274
1276
|
* `ERROR`None
|
|
1275
1277
|
* `INSUFFICIENT_DATA`None
|
|
@@ -1278,7 +1280,15 @@ class ConsolidatedMonitorStatusType(pycarlo.lib.types.Enum):
|
|
|
1278
1280
|
"""
|
|
1279
1281
|
|
|
1280
1282
|
__schema__ = schema
|
|
1281
|
-
__choices__ = (
|
|
1283
|
+
__choices__ = (
|
|
1284
|
+
"DISABLED",
|
|
1285
|
+
"DRAFT",
|
|
1286
|
+
"ENABLED",
|
|
1287
|
+
"ERROR",
|
|
1288
|
+
"INSUFFICIENT_DATA",
|
|
1289
|
+
"SNOOZED",
|
|
1290
|
+
"TRAINING",
|
|
1291
|
+
)
|
|
1282
1292
|
|
|
1283
1293
|
|
|
1284
1294
|
class CustomRuleComparisonOperator(pycarlo.lib.types.Enum):
|
|
@@ -2003,18 +2013,6 @@ class EtlType(pycarlo.lib.types.Enum):
|
|
|
2003
2013
|
__choices__ = ("AIRFLOW", "AZURE_DATA_FACTORY", "DATABRICKS", "DBT", "FIVETRAN", "INFORMATICA")
|
|
2004
2014
|
|
|
2005
2015
|
|
|
2006
|
-
class EventDetectorFeedbackModelReason(pycarlo.lib.types.Enum):
|
|
2007
|
-
"""Enumeration Choices:
|
|
2008
|
-
|
|
2009
|
-
* `DETECTOR_MARKED_AS_NORMAL`: detector_marked_as_normal
|
|
2010
|
-
* `USER_MARKED_AS_NORMAL`: user_marked_as_normal
|
|
2011
|
-
* `USER_UNMARKED_AS_NORMAL`: user_unmarked_as_normal
|
|
2012
|
-
"""
|
|
2013
|
-
|
|
2014
|
-
__schema__ = schema
|
|
2015
|
-
__choices__ = ("DETECTOR_MARKED_AS_NORMAL", "USER_MARKED_AS_NORMAL", "USER_UNMARKED_AS_NORMAL")
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
2016
|
class EventModelEventState(pycarlo.lib.types.Enum):
|
|
2019
2017
|
"""Enumeration Choices:
|
|
2020
2018
|
|
|
@@ -2319,6 +2317,18 @@ class FacetType(pycarlo.lib.types.Enum):
|
|
|
2319
2317
|
)
|
|
2320
2318
|
|
|
2321
2319
|
|
|
2320
|
+
class FeedbackReason(pycarlo.lib.types.Enum):
|
|
2321
|
+
"""Enumeration Choices:
|
|
2322
|
+
|
|
2323
|
+
* `DETECTOR_MARKED_AS_NORMAL`None
|
|
2324
|
+
* `USER_MARKED_AS_NORMAL`None
|
|
2325
|
+
* `USER_UNMARKED_AS_NORMAL`None
|
|
2326
|
+
"""
|
|
2327
|
+
|
|
2328
|
+
__schema__ = schema
|
|
2329
|
+
__choices__ = ("DETECTOR_MARKED_AS_NORMAL", "USER_MARKED_AS_NORMAL", "USER_UNMARKED_AS_NORMAL")
|
|
2330
|
+
|
|
2331
|
+
|
|
2322
2332
|
class FieldConfigType(pycarlo.lib.types.Enum):
|
|
2323
2333
|
"""Enumeration Choices:
|
|
2324
2334
|
|
|
@@ -3451,6 +3461,7 @@ class LineageNodeJobType(pycarlo.lib.types.Enum):
|
|
|
3451
3461
|
* `DATABRICKS`None
|
|
3452
3462
|
* `DBT_CLOUD`None
|
|
3453
3463
|
* `DBT_CORE`None
|
|
3464
|
+
* `FIVETRAN`None
|
|
3454
3465
|
* `INFORMATICA`None
|
|
3455
3466
|
* `MSK_KAFKA_CONNECT`None
|
|
3456
3467
|
* `SELF_HOSTED_KAFKA_CONNECT`None
|
|
@@ -3465,6 +3476,7 @@ class LineageNodeJobType(pycarlo.lib.types.Enum):
|
|
|
3465
3476
|
"DATABRICKS",
|
|
3466
3477
|
"DBT_CLOUD",
|
|
3467
3478
|
"DBT_CORE",
|
|
3479
|
+
"FIVETRAN",
|
|
3468
3480
|
"INFORMATICA",
|
|
3469
3481
|
"MSK_KAFKA_CONNECT",
|
|
3470
3482
|
"SELF_HOSTED_KAFKA_CONNECT",
|
|
@@ -3690,6 +3702,7 @@ class MonitorRecommendationType(pycarlo.lib.types.Enum):
|
|
|
3690
3702
|
class MonitorRunStatusType(pycarlo.lib.types.Enum):
|
|
3691
3703
|
"""Enumeration Choices:
|
|
3692
3704
|
|
|
3705
|
+
* `DRAFT`None
|
|
3693
3706
|
* `ERROR`None
|
|
3694
3707
|
* `IN_PROGRESS`None
|
|
3695
3708
|
* `NO_STATUS`None
|
|
@@ -3699,12 +3712,13 @@ class MonitorRunStatusType(pycarlo.lib.types.Enum):
|
|
|
3699
3712
|
"""
|
|
3700
3713
|
|
|
3701
3714
|
__schema__ = schema
|
|
3702
|
-
__choices__ = ("ERROR", "IN_PROGRESS", "NO_STATUS", "PAUSED", "SNOOZED", "SUCCESS")
|
|
3715
|
+
__choices__ = ("DRAFT", "ERROR", "IN_PROGRESS", "NO_STATUS", "PAUSED", "SNOOZED", "SUCCESS")
|
|
3703
3716
|
|
|
3704
3717
|
|
|
3705
3718
|
class MonitorStatusType(pycarlo.lib.types.Enum):
|
|
3706
3719
|
"""Enumeration Choices:
|
|
3707
3720
|
|
|
3721
|
+
* `DRAFT`None
|
|
3708
3722
|
* `ERROR`None
|
|
3709
3723
|
* `INSUFFICIENT_DATA`None
|
|
3710
3724
|
* `IN_PROGRESS`None
|
|
@@ -3718,6 +3732,7 @@ class MonitorStatusType(pycarlo.lib.types.Enum):
|
|
|
3718
3732
|
|
|
3719
3733
|
__schema__ = schema
|
|
3720
3734
|
__choices__ = (
|
|
3735
|
+
"DRAFT",
|
|
3721
3736
|
"ERROR",
|
|
3722
3737
|
"INSUFFICIENT_DATA",
|
|
3723
3738
|
"IN_PROGRESS",
|
|
@@ -3977,6 +3992,7 @@ class Permission(pycarlo.lib.types.Enum):
|
|
|
3977
3992
|
* `IncidentsUpdateStatus`None
|
|
3978
3993
|
* `MonitorsAccess`None
|
|
3979
3994
|
* `MonitorsAggregates`None
|
|
3995
|
+
* `MonitorsDraft`None
|
|
3980
3996
|
* `MonitorsEdit`None
|
|
3981
3997
|
* `PerformanceAccess`None
|
|
3982
3998
|
* `PipelinesAccess`None
|
|
@@ -4041,6 +4057,7 @@ class Permission(pycarlo.lib.types.Enum):
|
|
|
4041
4057
|
"IncidentsUpdateStatus",
|
|
4042
4058
|
"MonitorsAccess",
|
|
4043
4059
|
"MonitorsAggregates",
|
|
4060
|
+
"MonitorsDraft",
|
|
4044
4061
|
"MonitorsEdit",
|
|
4045
4062
|
"PerformanceAccess",
|
|
4046
4063
|
"PipelinesAccess",
|
|
@@ -4675,11 +4692,13 @@ class SelfHostedCredentialsTypeEnum(pycarlo.lib.types.Enum):
|
|
|
4675
4692
|
"""Enumeration Choices:
|
|
4676
4693
|
|
|
4677
4694
|
* `AWS_SECRETS_MANAGER`None
|
|
4695
|
+
* `AZURE_KEY_VAULT`None
|
|
4678
4696
|
* `ENV_VAR`None
|
|
4697
|
+
* `GCP_SECRET_MANAGER`None
|
|
4679
4698
|
"""
|
|
4680
4699
|
|
|
4681
4700
|
__schema__ = schema
|
|
4682
|
-
__choices__ = ("AWS_SECRETS_MANAGER", "ENV_VAR")
|
|
4701
|
+
__choices__ = ("AWS_SECRETS_MANAGER", "AZURE_KEY_VAULT", "ENV_VAR", "GCP_SECRET_MANAGER")
|
|
4683
4702
|
|
|
4684
4703
|
|
|
4685
4704
|
class SelfHostedUpdateCredentialsTypeEnum(pycarlo.lib.types.Enum):
|
|
@@ -4924,11 +4943,12 @@ class StorageTypeEnum(pycarlo.lib.types.Enum):
|
|
|
4924
4943
|
* `AZURE_BLOB`None
|
|
4925
4944
|
* `GCS`None
|
|
4926
4945
|
* `S3`None
|
|
4946
|
+
* `S3_COMPATIBLE`None
|
|
4927
4947
|
* `SNOWFLAKE_INTERNAL_STAGE`None
|
|
4928
4948
|
"""
|
|
4929
4949
|
|
|
4930
4950
|
__schema__ = schema
|
|
4931
|
-
__choices__ = ("AZURE_BLOB", "GCS", "S3", "SNOWFLAKE_INTERNAL_STAGE")
|
|
4951
|
+
__choices__ = ("AZURE_BLOB", "GCS", "S3", "S3_COMPATIBLE", "SNOWFLAKE_INTERNAL_STAGE")
|
|
4932
4952
|
|
|
4933
4953
|
|
|
4934
4954
|
class StreamingClusterModelClusterType(pycarlo.lib.types.Enum):
|
|
@@ -5382,6 +5402,7 @@ class UserDefinedMonitorModelConsolidatedMonitorStatus(pycarlo.lib.types.Enum):
|
|
|
5382
5402
|
"""Enumeration Choices:
|
|
5383
5403
|
|
|
5384
5404
|
* `DISABLED`: DISABLED
|
|
5405
|
+
* `DRAFT`: DRAFT
|
|
5385
5406
|
* `ENABLED`: ENABLED
|
|
5386
5407
|
* `ERROR`: ERROR
|
|
5387
5408
|
* `INSUFFICIENT_DATA`: INSUFFICIENT_DATA
|
|
@@ -5390,7 +5411,15 @@ class UserDefinedMonitorModelConsolidatedMonitorStatus(pycarlo.lib.types.Enum):
|
|
|
5390
5411
|
"""
|
|
5391
5412
|
|
|
5392
5413
|
__schema__ = schema
|
|
5393
|
-
__choices__ = (
|
|
5414
|
+
__choices__ = (
|
|
5415
|
+
"DISABLED",
|
|
5416
|
+
"DRAFT",
|
|
5417
|
+
"ENABLED",
|
|
5418
|
+
"ERROR",
|
|
5419
|
+
"INSUFFICIENT_DATA",
|
|
5420
|
+
"SNOOZED",
|
|
5421
|
+
"TRAINING",
|
|
5422
|
+
)
|
|
5394
5423
|
|
|
5395
5424
|
|
|
5396
5425
|
class UserDefinedMonitorModelMonitorType(pycarlo.lib.types.Enum):
|
|
@@ -9156,6 +9185,10 @@ class SelfHostedCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9156
9185
|
"env_var_name",
|
|
9157
9186
|
"kms_key_id",
|
|
9158
9187
|
"aws_secret",
|
|
9188
|
+
"gcp_secret",
|
|
9189
|
+
"akv_vault_name",
|
|
9190
|
+
"akv_vault_url",
|
|
9191
|
+
"akv_secret",
|
|
9159
9192
|
"aws_region",
|
|
9160
9193
|
"assumable_role",
|
|
9161
9194
|
"external_id",
|
|
@@ -9195,6 +9228,28 @@ class SelfHostedCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9195
9228
|
'aws_secrets_manager'.
|
|
9196
9229
|
"""
|
|
9197
9230
|
|
|
9231
|
+
gcp_secret = sgqlc.types.Field(String, graphql_name="gcpSecret")
|
|
9232
|
+
"""Name of GCP Secret Manager secret containing credentials. Required
|
|
9233
|
+
when self_hosted_credentials_type is 'gcp_secrets_manager'.
|
|
9234
|
+
"""
|
|
9235
|
+
|
|
9236
|
+
akv_vault_name = sgqlc.types.Field(String, graphql_name="akvVaultName")
|
|
9237
|
+
"""Name of Azure Key Vault containing credentials. Required when
|
|
9238
|
+
self_hosted_credentials_type is 'azure_key_vault' and
|
|
9239
|
+
'akv_vault_url' is not provided.
|
|
9240
|
+
"""
|
|
9241
|
+
|
|
9242
|
+
akv_vault_url = sgqlc.types.Field(String, graphql_name="akvVaultUrl")
|
|
9243
|
+
"""URL of Azure Key Vault containing credentials. Required when
|
|
9244
|
+
self_hosted_credentials_type is 'azure_key_vault' and
|
|
9245
|
+
'akv_vault_name' is not provided.
|
|
9246
|
+
"""
|
|
9247
|
+
|
|
9248
|
+
akv_secret = sgqlc.types.Field(String, graphql_name="akvSecret")
|
|
9249
|
+
"""Name of Azure Key Vault secret containing credentials. Required
|
|
9250
|
+
when self_hosted_credentials_type is 'azure_key_vault'.
|
|
9251
|
+
"""
|
|
9252
|
+
|
|
9198
9253
|
aws_region = sgqlc.types.Field(String, graphql_name="awsRegion")
|
|
9199
9254
|
"""Optional AWS region to access ASM secret or KMS key"""
|
|
9200
9255
|
|
|
@@ -11117,6 +11172,7 @@ class IMonitor(sgqlc.types.Interface):
|
|
|
11117
11172
|
"notify_rule_run_failure",
|
|
11118
11173
|
"is_snoozeable",
|
|
11119
11174
|
"is_paused",
|
|
11175
|
+
"is_draft",
|
|
11120
11176
|
"migrated_to_uuid",
|
|
11121
11177
|
"is_template_managed",
|
|
11122
11178
|
"namespace",
|
|
@@ -11242,6 +11298,9 @@ class IMonitor(sgqlc.types.Interface):
|
|
|
11242
11298
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
11243
11299
|
"""Whether the monitor is currently paused"""
|
|
11244
11300
|
|
|
11301
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
11302
|
+
"""Whether the monitor is a draft"""
|
|
11303
|
+
|
|
11245
11304
|
migrated_to_uuid = sgqlc.types.Field(String, graphql_name="migratedToUuid")
|
|
11246
11305
|
"""UUID of the monitor this was migrated to, if applicable"""
|
|
11247
11306
|
|
|
@@ -11619,6 +11678,7 @@ class Account(sgqlc.types.Type):
|
|
|
11619
11678
|
"identity_provider",
|
|
11620
11679
|
"tableau_accounts",
|
|
11621
11680
|
"use_monitor_domains",
|
|
11681
|
+
"validate_monitor_domains",
|
|
11622
11682
|
"active_collection_regions",
|
|
11623
11683
|
"internal_notifications",
|
|
11624
11684
|
"can_generate_data_collector_template",
|
|
@@ -12188,6 +12248,9 @@ class Account(sgqlc.types.Type):
|
|
|
12188
12248
|
use_monitor_domains = sgqlc.types.Field(Boolean, graphql_name="useMonitorDomains")
|
|
12189
12249
|
"""Indicates whether the account is using monitor domains"""
|
|
12190
12250
|
|
|
12251
|
+
validate_monitor_domains = sgqlc.types.Field(Boolean, graphql_name="validateMonitorDomains")
|
|
12252
|
+
"""Indicates whether the account is validating monitor domains"""
|
|
12253
|
+
|
|
12191
12254
|
active_collection_regions = sgqlc.types.Field(
|
|
12192
12255
|
sgqlc.types.list_of(String), graphql_name="activeCollectionRegions"
|
|
12193
12256
|
)
|
|
@@ -14214,7 +14277,13 @@ class AudienceRoutingStats(sgqlc.types.Type):
|
|
|
14214
14277
|
"audience_label",
|
|
14215
14278
|
"mcons_covered_by_table_monitors",
|
|
14216
14279
|
"mcons_covered_by_notification_routing",
|
|
14280
|
+
"mcons_covered_by_notification_routing_excluding_importance",
|
|
14217
14281
|
"sample_mcons_routing_not_table_monitor",
|
|
14282
|
+
"sample_mcons_routing_not_table_monitor_excluding_importance",
|
|
14283
|
+
"sample_mcons_table_monitor_not_routing",
|
|
14284
|
+
"uses_monitoring_filters_fallback",
|
|
14285
|
+
"mcons_new_routed_from_importance",
|
|
14286
|
+
"ignored_routing_rules",
|
|
14218
14287
|
)
|
|
14219
14288
|
audience_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="audienceUuid")
|
|
14220
14289
|
|
|
@@ -14228,11 +14297,39 @@ class AudienceRoutingStats(sgqlc.types.Type):
|
|
|
14228
14297
|
sgqlc.types.non_null(Int), graphql_name="mconsCoveredByNotificationRouting"
|
|
14229
14298
|
)
|
|
14230
14299
|
|
|
14300
|
+
mcons_covered_by_notification_routing_excluding_importance = sgqlc.types.Field(
|
|
14301
|
+
sgqlc.types.non_null(Int),
|
|
14302
|
+
graphql_name="mconsCoveredByNotificationRoutingExcludingImportance",
|
|
14303
|
+
)
|
|
14304
|
+
|
|
14231
14305
|
sample_mcons_routing_not_table_monitor = sgqlc.types.Field(
|
|
14232
14306
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
14233
14307
|
graphql_name="sampleMconsRoutingNotTableMonitor",
|
|
14234
14308
|
)
|
|
14235
14309
|
|
|
14310
|
+
sample_mcons_routing_not_table_monitor_excluding_importance = sgqlc.types.Field(
|
|
14311
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
14312
|
+
graphql_name="sampleMconsRoutingNotTableMonitorExcludingImportance",
|
|
14313
|
+
)
|
|
14314
|
+
|
|
14315
|
+
sample_mcons_table_monitor_not_routing = sgqlc.types.Field(
|
|
14316
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
14317
|
+
graphql_name="sampleMconsTableMonitorNotRouting",
|
|
14318
|
+
)
|
|
14319
|
+
|
|
14320
|
+
uses_monitoring_filters_fallback = sgqlc.types.Field(
|
|
14321
|
+
sgqlc.types.non_null(Boolean), graphql_name="usesMonitoringFiltersFallback"
|
|
14322
|
+
)
|
|
14323
|
+
|
|
14324
|
+
mcons_new_routed_from_importance = sgqlc.types.Field(
|
|
14325
|
+
sgqlc.types.non_null(Int), graphql_name="mconsNewRoutedFromImportance"
|
|
14326
|
+
)
|
|
14327
|
+
|
|
14328
|
+
ignored_routing_rules = sgqlc.types.Field(
|
|
14329
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("IgnoredRoutingRuleInfo"))),
|
|
14330
|
+
graphql_name="ignoredRoutingRules",
|
|
14331
|
+
)
|
|
14332
|
+
|
|
14236
14333
|
|
|
14237
14334
|
class AuditLogEntryConnection(sgqlc.types.relay.Connection):
|
|
14238
14335
|
__schema__ = schema
|
|
@@ -15759,6 +15856,7 @@ class CategorizedSearchResult(sgqlc.types.Type):
|
|
|
15759
15856
|
"is_muted",
|
|
15760
15857
|
"etl_type",
|
|
15761
15858
|
"supports_data_explorer",
|
|
15859
|
+
"dbt_project_name",
|
|
15762
15860
|
"category",
|
|
15763
15861
|
"is_dynamic_schedule_supported",
|
|
15764
15862
|
)
|
|
@@ -15850,6 +15948,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
|
|
|
15850
15948
|
supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
|
|
15851
15949
|
"""Whether the table supports data explorer"""
|
|
15852
15950
|
|
|
15951
|
+
dbt_project_name = sgqlc.types.Field(String, graphql_name="dbtProjectName")
|
|
15952
|
+
"""Name of the dbt project for dbt-job assets"""
|
|
15953
|
+
|
|
15853
15954
|
category = sgqlc.types.Field(SearchCategoryEnum, graphql_name="category")
|
|
15854
15955
|
"""Name of the category for the table like: RESOLVED TABLES, ALL
|
|
15855
15956
|
TABLES etc
|
|
@@ -16589,7 +16690,17 @@ class ConversionResult(sgqlc.types.Type):
|
|
|
16589
16690
|
"sample_monitored_not_covered",
|
|
16590
16691
|
"mcons_covered_by_table_monitor_audiences",
|
|
16591
16692
|
"mcons_covered_by_notification_routing_audiences",
|
|
16693
|
+
"mcons_covered_by_notification_routing_audiences_excluding_importance",
|
|
16592
16694
|
"sample_mcons_routing_not_table_monitor",
|
|
16695
|
+
"sample_mcons_routing_not_table_monitor_excluding_importance",
|
|
16696
|
+
"sample_mcons_table_monitor_not_routing",
|
|
16697
|
+
"mcons_new_routed_from_importance",
|
|
16698
|
+
"mcons_monitored_from_empty_tag_values",
|
|
16699
|
+
"sample_mcons_monitored_from_empty_tag_values",
|
|
16700
|
+
"mcons_included_by_unexpanded_regex",
|
|
16701
|
+
"mcons_excluded_by_unexpanded_regex",
|
|
16702
|
+
"sample_mcons_affected_by_unexpanded_regex",
|
|
16703
|
+
"all_unexpanded_regex_patterns",
|
|
16593
16704
|
"audience_routing_stats",
|
|
16594
16705
|
"text_output",
|
|
16595
16706
|
"summary_text",
|
|
@@ -16710,11 +16821,56 @@ class ConversionResult(sgqlc.types.Type):
|
|
|
16710
16821
|
Int, graphql_name="mconsCoveredByNotificationRoutingAudiences"
|
|
16711
16822
|
)
|
|
16712
16823
|
|
|
16824
|
+
mcons_covered_by_notification_routing_audiences_excluding_importance = sgqlc.types.Field(
|
|
16825
|
+
Int, graphql_name="mconsCoveredByNotificationRoutingAudiencesExcludingImportance"
|
|
16826
|
+
)
|
|
16827
|
+
|
|
16713
16828
|
sample_mcons_routing_not_table_monitor = sgqlc.types.Field(
|
|
16714
16829
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16715
16830
|
graphql_name="sampleMconsRoutingNotTableMonitor",
|
|
16716
16831
|
)
|
|
16717
16832
|
|
|
16833
|
+
sample_mcons_routing_not_table_monitor_excluding_importance = sgqlc.types.Field(
|
|
16834
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16835
|
+
graphql_name="sampleMconsRoutingNotTableMonitorExcludingImportance",
|
|
16836
|
+
)
|
|
16837
|
+
|
|
16838
|
+
sample_mcons_table_monitor_not_routing = sgqlc.types.Field(
|
|
16839
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16840
|
+
graphql_name="sampleMconsTableMonitorNotRouting",
|
|
16841
|
+
)
|
|
16842
|
+
|
|
16843
|
+
mcons_new_routed_from_importance = sgqlc.types.Field(
|
|
16844
|
+
sgqlc.types.non_null(Int), graphql_name="mconsNewRoutedFromImportance"
|
|
16845
|
+
)
|
|
16846
|
+
|
|
16847
|
+
mcons_monitored_from_empty_tag_values = sgqlc.types.Field(
|
|
16848
|
+
sgqlc.types.non_null(Int), graphql_name="mconsMonitoredFromEmptyTagValues"
|
|
16849
|
+
)
|
|
16850
|
+
|
|
16851
|
+
sample_mcons_monitored_from_empty_tag_values = sgqlc.types.Field(
|
|
16852
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16853
|
+
graphql_name="sampleMconsMonitoredFromEmptyTagValues",
|
|
16854
|
+
)
|
|
16855
|
+
|
|
16856
|
+
mcons_included_by_unexpanded_regex = sgqlc.types.Field(
|
|
16857
|
+
sgqlc.types.non_null(Int), graphql_name="mconsIncludedByUnexpandedRegex"
|
|
16858
|
+
)
|
|
16859
|
+
|
|
16860
|
+
mcons_excluded_by_unexpanded_regex = sgqlc.types.Field(
|
|
16861
|
+
sgqlc.types.non_null(Int), graphql_name="mconsExcludedByUnexpandedRegex"
|
|
16862
|
+
)
|
|
16863
|
+
|
|
16864
|
+
sample_mcons_affected_by_unexpanded_regex = sgqlc.types.Field(
|
|
16865
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16866
|
+
graphql_name="sampleMconsAffectedByUnexpandedRegex",
|
|
16867
|
+
)
|
|
16868
|
+
|
|
16869
|
+
all_unexpanded_regex_patterns = sgqlc.types.Field(
|
|
16870
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("UnexpandedRegexPattern"))),
|
|
16871
|
+
graphql_name="allUnexpandedRegexPatterns",
|
|
16872
|
+
)
|
|
16873
|
+
|
|
16718
16874
|
audience_routing_stats = sgqlc.types.Field(
|
|
16719
16875
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AudienceRoutingStats))),
|
|
16720
16876
|
graphql_name="audienceRoutingStats",
|
|
@@ -23075,6 +23231,16 @@ class HostingInformation(sgqlc.types.Type):
|
|
|
23075
23231
|
"""List of enabled configurations (primary/secondary)"""
|
|
23076
23232
|
|
|
23077
23233
|
|
|
23234
|
+
class IgnoredRoutingRuleInfo(sgqlc.types.Type):
|
|
23235
|
+
__schema__ = schema
|
|
23236
|
+
__field_names__ = ("rule_uuid", "audience_label", "rule_summary")
|
|
23237
|
+
rule_uuid = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="ruleUuid")
|
|
23238
|
+
|
|
23239
|
+
audience_label = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="audienceLabel")
|
|
23240
|
+
|
|
23241
|
+
rule_summary = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="ruleSummary")
|
|
23242
|
+
|
|
23243
|
+
|
|
23078
23244
|
class IncidentCategoryCount(sgqlc.types.Type):
|
|
23079
23245
|
__schema__ = schema
|
|
23080
23246
|
__field_names__ = ("incident_category", "category_count")
|
|
@@ -24392,6 +24558,59 @@ class LineageEdgeJob(sgqlc.types.Type):
|
|
|
24392
24558
|
)
|
|
24393
24559
|
|
|
24394
24560
|
|
|
24561
|
+
class LineageFivetranJobAttributes(sgqlc.types.Type):
|
|
24562
|
+
__schema__ = schema
|
|
24563
|
+
__field_names__ = (
|
|
24564
|
+
"connector_id",
|
|
24565
|
+
"service",
|
|
24566
|
+
"connector_schema",
|
|
24567
|
+
"resource_id",
|
|
24568
|
+
"resource_name",
|
|
24569
|
+
"sync_state",
|
|
24570
|
+
"setup_state",
|
|
24571
|
+
"update_state",
|
|
24572
|
+
"display_name",
|
|
24573
|
+
"mcon",
|
|
24574
|
+
"status",
|
|
24575
|
+
"last_run_finished_at",
|
|
24576
|
+
)
|
|
24577
|
+
connector_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="connectorId")
|
|
24578
|
+
"""Fivetran connector ID"""
|
|
24579
|
+
|
|
24580
|
+
service = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="service")
|
|
24581
|
+
"""Fivetran connector service (e.g., facebook_ads)"""
|
|
24582
|
+
|
|
24583
|
+
connector_schema = sgqlc.types.Field(String, graphql_name="connectorSchema")
|
|
24584
|
+
"""Fivetran connector schema"""
|
|
24585
|
+
|
|
24586
|
+
resource_id = sgqlc.types.Field(String, graphql_name="resourceId")
|
|
24587
|
+
"""UUID of the Monte Carlo ETL container resource"""
|
|
24588
|
+
|
|
24589
|
+
resource_name = sgqlc.types.Field(String, graphql_name="resourceName")
|
|
24590
|
+
"""Name of the Fivetran ETL container"""
|
|
24591
|
+
|
|
24592
|
+
sync_state = sgqlc.types.Field(String, graphql_name="syncState")
|
|
24593
|
+
"""Current sync state of the connector"""
|
|
24594
|
+
|
|
24595
|
+
setup_state = sgqlc.types.Field(String, graphql_name="setupState")
|
|
24596
|
+
"""Current setup state of the connector"""
|
|
24597
|
+
|
|
24598
|
+
update_state = sgqlc.types.Field(String, graphql_name="updateState")
|
|
24599
|
+
"""Current update state of the connector"""
|
|
24600
|
+
|
|
24601
|
+
display_name = sgqlc.types.Field(String, graphql_name="displayName")
|
|
24602
|
+
"""Fivetran connector display name"""
|
|
24603
|
+
|
|
24604
|
+
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
24605
|
+
"""Fivetran connector MCON"""
|
|
24606
|
+
|
|
24607
|
+
status = sgqlc.types.Field(String, graphql_name="status")
|
|
24608
|
+
"""Status of most recent connector sync"""
|
|
24609
|
+
|
|
24610
|
+
last_run_finished_at = sgqlc.types.Field(DateTime, graphql_name="lastRunFinishedAt")
|
|
24611
|
+
"""Timestamp of the most recent successful sync"""
|
|
24612
|
+
|
|
24613
|
+
|
|
24395
24614
|
class LineageGraph(sgqlc.types.Type):
|
|
24396
24615
|
__schema__ = schema
|
|
24397
24616
|
__field_names__ = ("base_node", "base_nodes", "connected_nodes", "flattened_edges")
|
|
@@ -25218,11 +25437,16 @@ class MconCountPair(sgqlc.types.Type):
|
|
|
25218
25437
|
|
|
25219
25438
|
class MconMonitorPair(sgqlc.types.Type):
|
|
25220
25439
|
__schema__ = schema
|
|
25221
|
-
__field_names__ = ("mcon", "monitor_name")
|
|
25440
|
+
__field_names__ = ("mcon", "monitor_name", "table_tags")
|
|
25222
25441
|
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
25223
25442
|
|
|
25224
25443
|
monitor_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorName")
|
|
25225
25444
|
|
|
25445
|
+
table_tags = sgqlc.types.Field(
|
|
25446
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
25447
|
+
graphql_name="tableTags",
|
|
25448
|
+
)
|
|
25449
|
+
|
|
25226
25450
|
|
|
25227
25451
|
class MconRuleIdPair(sgqlc.types.Type):
|
|
25228
25452
|
__schema__ = schema
|
|
@@ -25767,6 +25991,12 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
25767
25991
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
25768
25992
|
),
|
|
25769
25993
|
),
|
|
25994
|
+
(
|
|
25995
|
+
"sensitivities",
|
|
25996
|
+
sgqlc.types.Arg(
|
|
25997
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
25998
|
+
),
|
|
25999
|
+
),
|
|
25770
26000
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
25771
26001
|
(
|
|
25772
26002
|
"domain_ids",
|
|
@@ -25905,6 +26135,8 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
25905
26135
|
user emails
|
|
25906
26136
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
25907
26137
|
null to include monitors without a priority set
|
|
26138
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
26139
|
+
include null to include monitors without a set sensitivity
|
|
25908
26140
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
25909
26141
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
25910
26142
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -26482,6 +26714,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
|
|
|
26482
26714
|
class Mutation(sgqlc.types.Type):
|
|
26483
26715
|
__schema__ = schema
|
|
26484
26716
|
__field_names__ = (
|
|
26717
|
+
"update_platform_service",
|
|
26485
26718
|
"create_or_update_agent_trace_table",
|
|
26486
26719
|
"delete_agent_trace_table",
|
|
26487
26720
|
"link_slack_app_installation",
|
|
@@ -26942,6 +27175,29 @@ class Mutation(sgqlc.types.Type):
|
|
|
26942
27175
|
"update_account_secret",
|
|
26943
27176
|
"delete_account_secret",
|
|
26944
27177
|
)
|
|
27178
|
+
update_platform_service = sgqlc.types.Field(
|
|
27179
|
+
"UpdatePlatformService",
|
|
27180
|
+
graphql_name="updatePlatformService",
|
|
27181
|
+
args=sgqlc.types.ArgDict(
|
|
27182
|
+
(
|
|
27183
|
+
("name", sgqlc.types.Arg(String, graphql_name="name", default=None)),
|
|
27184
|
+
(
|
|
27185
|
+
"service_uuid",
|
|
27186
|
+
sgqlc.types.Arg(
|
|
27187
|
+
sgqlc.types.non_null(UUID), graphql_name="serviceUuid", default=None
|
|
27188
|
+
),
|
|
27189
|
+
),
|
|
27190
|
+
)
|
|
27191
|
+
),
|
|
27192
|
+
)
|
|
27193
|
+
"""(general availability) Update platform service attributes.
|
|
27194
|
+
|
|
27195
|
+
Arguments:
|
|
27196
|
+
|
|
27197
|
+
* `name` (`String`): New service name
|
|
27198
|
+
* `service_uuid` (`UUID!`): UUID of the platform service to update
|
|
27199
|
+
"""
|
|
27200
|
+
|
|
26945
27201
|
create_or_update_agent_trace_table = sgqlc.types.Field(
|
|
26946
27202
|
CreateOrUpdateAgentTraceTable,
|
|
26947
27203
|
graphql_name="createOrUpdateAgentTraceTable",
|
|
@@ -27446,6 +27702,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
27446
27702
|
default=None,
|
|
27447
27703
|
),
|
|
27448
27704
|
),
|
|
27705
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
27449
27706
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
27450
27707
|
("priority", sgqlc.types.Arg(String, graphql_name="priority", default=None)),
|
|
27451
27708
|
(
|
|
@@ -27482,6 +27739,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
27482
27739
|
and return the YAML and queries. (default: `false`)
|
|
27483
27740
|
* `failure_audiences` (`[String!]`): The audiences to notify on
|
|
27484
27741
|
failure
|
|
27742
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
27743
|
+
`false`)
|
|
27485
27744
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
27486
27745
|
`""`)
|
|
27487
27746
|
* `priority` (`String`): The default priority for alerts involving
|
|
@@ -27915,6 +28174,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
27915
28174
|
"interval_minutes",
|
|
27916
28175
|
sgqlc.types.Arg(Int, graphql_name="intervalMinutes", default=None),
|
|
27917
28176
|
),
|
|
28177
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
27918
28178
|
(
|
|
27919
28179
|
"labels",
|
|
27920
28180
|
sgqlc.types.Arg(
|
|
@@ -27974,6 +28234,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
27974
28234
|
failure
|
|
27975
28235
|
* `interval_minutes` (`Int`): How often to run scheduled custom
|
|
27976
28236
|
rule check (DEPRECATED, use schedule instead)
|
|
28237
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
28238
|
+
`false`)
|
|
27977
28239
|
* `labels` (`[String]`): The monitor labels
|
|
27978
28240
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
27979
28241
|
`""`)
|
|
@@ -28277,6 +28539,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
28277
28539
|
graphql_name="addPlatformService",
|
|
28278
28540
|
args=sgqlc.types.ArgDict(
|
|
28279
28541
|
(
|
|
28542
|
+
(
|
|
28543
|
+
"assign_data_store",
|
|
28544
|
+
sgqlc.types.Arg(Boolean, graphql_name="assignDataStore", default=True),
|
|
28545
|
+
),
|
|
28280
28546
|
(
|
|
28281
28547
|
"settings_source_service_uuid",
|
|
28282
28548
|
sgqlc.types.Arg(UUID, graphql_name="settingsSourceServiceUuid", default=None),
|
|
@@ -28288,6 +28554,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
28288
28554
|
|
|
28289
28555
|
Arguments:
|
|
28290
28556
|
|
|
28557
|
+
* `assign_data_store` (`Boolean`): If True, a data store is
|
|
28558
|
+
assigned to the service (default: `true`)
|
|
28291
28559
|
* `settings_source_service_uuid` (`UUID`): Optional platform
|
|
28292
28560
|
service to use as the source for settings (concurrency, memory
|
|
28293
28561
|
and env vars). If not provided, default settings will be used.
|
|
@@ -35928,6 +36196,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
35928
36196
|
default=None,
|
|
35929
36197
|
),
|
|
35930
36198
|
),
|
|
36199
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
35931
36200
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
35932
36201
|
(
|
|
35933
36202
|
"notify_rule_run_failure",
|
|
@@ -36001,6 +36270,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
36001
36270
|
`false`)
|
|
36002
36271
|
* `failure_audiences` (`[String!]`): The monitor audiences to
|
|
36003
36272
|
notify on failure
|
|
36273
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
36274
|
+
`false`)
|
|
36004
36275
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
36005
36276
|
`""`)
|
|
36006
36277
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -36243,6 +36514,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
36243
36514
|
default=None,
|
|
36244
36515
|
),
|
|
36245
36516
|
),
|
|
36517
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
36246
36518
|
(
|
|
36247
36519
|
"labels",
|
|
36248
36520
|
sgqlc.types.Arg(
|
|
@@ -36285,6 +36557,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
36285
36557
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
36286
36558
|
and return the MaC YAML and queries. (default: `false`)
|
|
36287
36559
|
* `failure_audiences` (`[String!]`): The monitor failure audiences
|
|
36560
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
36561
|
+
`false`)
|
|
36288
36562
|
* `labels` (`[String]`): The monitor labels
|
|
36289
36563
|
* `notes` (`String`): Additional context for the rule
|
|
36290
36564
|
* `priority` (`String`): The default priority for alerts involving
|
|
@@ -37888,6 +38162,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
37888
38162
|
default=None,
|
|
37889
38163
|
),
|
|
37890
38164
|
),
|
|
38165
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
37891
38166
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
37892
38167
|
(
|
|
37893
38168
|
"notify_rule_run_failure",
|
|
@@ -37949,6 +38224,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37949
38224
|
`false`)
|
|
37950
38225
|
* `failure_audiences` (`[String!]`): The monitor notification
|
|
37951
38226
|
audiences for failures
|
|
38227
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38228
|
+
`false`)
|
|
37952
38229
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
37953
38230
|
`""`)
|
|
37954
38231
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -38056,6 +38333,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
38056
38333
|
"high_segment_count",
|
|
38057
38334
|
sgqlc.types.Arg(Boolean, graphql_name="highSegmentCount", default=False),
|
|
38058
38335
|
),
|
|
38336
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
38059
38337
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
38060
38338
|
(
|
|
38061
38339
|
"notify_rule_run_failure",
|
|
@@ -38139,6 +38417,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38139
38417
|
* `high_segment_count` (`Boolean`): Flag to apply additional
|
|
38140
38418
|
limits which increase the supported segment count (default:
|
|
38141
38419
|
`false`)
|
|
38420
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38421
|
+
`false`)
|
|
38142
38422
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
38143
38423
|
`""`)
|
|
38144
38424
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -38188,6 +38468,12 @@ class Mutation(sgqlc.types.Type):
|
|
|
38188
38468
|
default=None,
|
|
38189
38469
|
),
|
|
38190
38470
|
),
|
|
38471
|
+
(
|
|
38472
|
+
"aggregate_by",
|
|
38473
|
+
sgqlc.types.Arg(
|
|
38474
|
+
MonitorAggTimeInterval, graphql_name="aggregateBy", default="HOUR"
|
|
38475
|
+
),
|
|
38476
|
+
),
|
|
38191
38477
|
(
|
|
38192
38478
|
"alert_conditions",
|
|
38193
38479
|
sgqlc.types.Arg(
|
|
@@ -38206,6 +38492,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
38206
38492
|
default=None,
|
|
38207
38493
|
),
|
|
38208
38494
|
),
|
|
38495
|
+
(
|
|
38496
|
+
"collection_lag_hours",
|
|
38497
|
+
sgqlc.types.Arg(Int, graphql_name="collectionLagHours", default=0),
|
|
38498
|
+
),
|
|
38209
38499
|
("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
|
|
38210
38500
|
(
|
|
38211
38501
|
"data_quality_dimension",
|
|
@@ -38311,9 +38601,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
38311
38601
|
|
|
38312
38602
|
* `agent_span_filters` (`[AgentSpanFilterInput!]!`): Filter by
|
|
38313
38603
|
agent span fields (agent, workflow, task, span_name)
|
|
38604
|
+
* `aggregate_by` (`MonitorAggTimeInterval`): Aggregation time
|
|
38605
|
+
interval. When not using a hourly interval, the timecomponent of
|
|
38606
|
+
the event timestamp should be ignored. (default: `"HOUR"`)
|
|
38314
38607
|
* `alert_conditions` (`[MetricAlertConditionInput!]!`): Alert
|
|
38315
38608
|
conditions.
|
|
38316
38609
|
* `audiences` (`[String!]`): The monitor notification audiences
|
|
38610
|
+
* `collection_lag_hours` (`Int`): Collection lag in hours (for the
|
|
38611
|
+
provided timestamp) (default: `0`)
|
|
38317
38612
|
* `connection_id` (`UUID`): Specify a connection (e.g. query-
|
|
38318
38613
|
engine) to use
|
|
38319
38614
|
* `data_quality_dimension` (`String`): Data quality dimension.
|
|
@@ -38424,6 +38719,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
38424
38719
|
sgqlc.types.non_null(String), graphql_name="field", default=None
|
|
38425
38720
|
),
|
|
38426
38721
|
),
|
|
38722
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
38427
38723
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
38428
38724
|
(
|
|
38429
38725
|
"notify_rule_run_failure",
|
|
@@ -38472,6 +38768,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38472
38768
|
* `failure_audiences` (`[String!]`): The monitor notification
|
|
38473
38769
|
audiences for failures
|
|
38474
38770
|
* `field` (`String!`): Field to monitor
|
|
38771
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38772
|
+
`false`)
|
|
38475
38773
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
38476
38774
|
`""`)
|
|
38477
38775
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -45556,7 +45854,7 @@ class PlatformServiceObject(sgqlc.types.Type):
|
|
|
45556
45854
|
"""Platform service information"""
|
|
45557
45855
|
|
|
45558
45856
|
__schema__ = schema
|
|
45559
|
-
__field_names__ = ("uuid", "deployment", "connections", "support_status")
|
|
45857
|
+
__field_names__ = ("uuid", "deployment", "connections", "support_status", "name")
|
|
45560
45858
|
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
45561
45859
|
"""UUID of the platform service"""
|
|
45562
45860
|
|
|
@@ -45573,6 +45871,9 @@ class PlatformServiceObject(sgqlc.types.Type):
|
|
|
45573
45871
|
using supports* parameters
|
|
45574
45872
|
"""
|
|
45575
45873
|
|
|
45874
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
45875
|
+
"""Name of the platform service"""
|
|
45876
|
+
|
|
45576
45877
|
|
|
45577
45878
|
class PlatformServicePlatform(sgqlc.types.Type):
|
|
45578
45879
|
__schema__ = schema
|
|
@@ -46385,7 +46686,10 @@ class Query(sgqlc.types.Type):
|
|
|
46385
46686
|
sgqlc.types.list_of(AgentMetadata),
|
|
46386
46687
|
graphql_name="getAgentMetadata",
|
|
46387
46688
|
args=sgqlc.types.ArgDict(
|
|
46388
|
-
(
|
|
46689
|
+
(
|
|
46690
|
+
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
46691
|
+
("domain_uuid", sgqlc.types.Arg(UUID, graphql_name="domainUuid", default=None)),
|
|
46692
|
+
)
|
|
46389
46693
|
),
|
|
46390
46694
|
)
|
|
46391
46695
|
"""(experimental) Get metadata about AI agents for agent
|
|
@@ -46395,6 +46699,8 @@ class Query(sgqlc.types.Type):
|
|
|
46395
46699
|
|
|
46396
46700
|
* `start_time` (`DateTime`): Filter spans with start_time >= this
|
|
46397
46701
|
value
|
|
46702
|
+
* `domain_uuid` (`UUID`): Filter results to only include MCONs
|
|
46703
|
+
assigned to this domain UUID
|
|
46398
46704
|
"""
|
|
46399
46705
|
|
|
46400
46706
|
get_agent_trace_tables = sgqlc.types.Field(
|
|
@@ -53499,6 +53805,12 @@ class Query(sgqlc.types.Type):
|
|
|
53499
53805
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53500
53806
|
),
|
|
53501
53807
|
),
|
|
53808
|
+
(
|
|
53809
|
+
"sensitivities",
|
|
53810
|
+
sgqlc.types.Arg(
|
|
53811
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
53812
|
+
),
|
|
53813
|
+
),
|
|
53502
53814
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53503
53815
|
(
|
|
53504
53816
|
"domain_ids",
|
|
@@ -53637,6 +53949,8 @@ class Query(sgqlc.types.Type):
|
|
|
53637
53949
|
user emails
|
|
53638
53950
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
53639
53951
|
null to include monitors without a priority set
|
|
53952
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
53953
|
+
include null to include monitors without a set sensitivity
|
|
53640
53954
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
53641
53955
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
53642
53956
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -53739,6 +54053,12 @@ class Query(sgqlc.types.Type):
|
|
|
53739
54053
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53740
54054
|
),
|
|
53741
54055
|
),
|
|
54056
|
+
(
|
|
54057
|
+
"sensitivities",
|
|
54058
|
+
sgqlc.types.Arg(
|
|
54059
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54060
|
+
),
|
|
54061
|
+
),
|
|
53742
54062
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53743
54063
|
(
|
|
53744
54064
|
"domain_ids",
|
|
@@ -53877,6 +54197,8 @@ class Query(sgqlc.types.Type):
|
|
|
53877
54197
|
user emails
|
|
53878
54198
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
53879
54199
|
null to include monitors without a priority set
|
|
54200
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
54201
|
+
include null to include monitors without a set sensitivity
|
|
53880
54202
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
53881
54203
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
53882
54204
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -53979,6 +54301,12 @@ class Query(sgqlc.types.Type):
|
|
|
53979
54301
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53980
54302
|
),
|
|
53981
54303
|
),
|
|
54304
|
+
(
|
|
54305
|
+
"sensitivities",
|
|
54306
|
+
sgqlc.types.Arg(
|
|
54307
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54308
|
+
),
|
|
54309
|
+
),
|
|
53982
54310
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53983
54311
|
(
|
|
53984
54312
|
"domain_ids",
|
|
@@ -54117,6 +54445,8 @@ class Query(sgqlc.types.Type):
|
|
|
54117
54445
|
user emails
|
|
54118
54446
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54119
54447
|
null to include monitors without a priority set
|
|
54448
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
54449
|
+
include null to include monitors without a set sensitivity
|
|
54120
54450
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54121
54451
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54122
54452
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54219,6 +54549,12 @@ class Query(sgqlc.types.Type):
|
|
|
54219
54549
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54220
54550
|
),
|
|
54221
54551
|
),
|
|
54552
|
+
(
|
|
54553
|
+
"sensitivities",
|
|
54554
|
+
sgqlc.types.Arg(
|
|
54555
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54556
|
+
),
|
|
54557
|
+
),
|
|
54222
54558
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54223
54559
|
(
|
|
54224
54560
|
"domain_ids",
|
|
@@ -54357,6 +54693,8 @@ class Query(sgqlc.types.Type):
|
|
|
54357
54693
|
user emails
|
|
54358
54694
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54359
54695
|
null to include monitors without a priority set
|
|
54696
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
54697
|
+
include null to include monitors without a set sensitivity
|
|
54360
54698
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54361
54699
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54362
54700
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54459,6 +54797,12 @@ class Query(sgqlc.types.Type):
|
|
|
54459
54797
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54460
54798
|
),
|
|
54461
54799
|
),
|
|
54800
|
+
(
|
|
54801
|
+
"sensitivities",
|
|
54802
|
+
sgqlc.types.Arg(
|
|
54803
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54804
|
+
),
|
|
54805
|
+
),
|
|
54462
54806
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54463
54807
|
(
|
|
54464
54808
|
"domain_ids",
|
|
@@ -54597,6 +54941,8 @@ class Query(sgqlc.types.Type):
|
|
|
54597
54941
|
user emails
|
|
54598
54942
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54599
54943
|
null to include monitors without a priority set
|
|
54944
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
54945
|
+
include null to include monitors without a set sensitivity
|
|
54600
54946
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54601
54947
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54602
54948
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54699,6 +55045,12 @@ class Query(sgqlc.types.Type):
|
|
|
54699
55045
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54700
55046
|
),
|
|
54701
55047
|
),
|
|
55048
|
+
(
|
|
55049
|
+
"sensitivities",
|
|
55050
|
+
sgqlc.types.Arg(
|
|
55051
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55052
|
+
),
|
|
55053
|
+
),
|
|
54702
55054
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54703
55055
|
(
|
|
54704
55056
|
"domain_ids",
|
|
@@ -54837,6 +55189,8 @@ class Query(sgqlc.types.Type):
|
|
|
54837
55189
|
user emails
|
|
54838
55190
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54839
55191
|
null to include monitors without a priority set
|
|
55192
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
55193
|
+
include null to include monitors without a set sensitivity
|
|
54840
55194
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54841
55195
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54842
55196
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54939,6 +55293,12 @@ class Query(sgqlc.types.Type):
|
|
|
54939
55293
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54940
55294
|
),
|
|
54941
55295
|
),
|
|
55296
|
+
(
|
|
55297
|
+
"sensitivities",
|
|
55298
|
+
sgqlc.types.Arg(
|
|
55299
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55300
|
+
),
|
|
55301
|
+
),
|
|
54942
55302
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54943
55303
|
(
|
|
54944
55304
|
"domain_ids",
|
|
@@ -55077,6 +55437,8 @@ class Query(sgqlc.types.Type):
|
|
|
55077
55437
|
user emails
|
|
55078
55438
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55079
55439
|
null to include monitors without a priority set
|
|
55440
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
55441
|
+
include null to include monitors without a set sensitivity
|
|
55080
55442
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55081
55443
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55082
55444
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -55179,6 +55541,12 @@ class Query(sgqlc.types.Type):
|
|
|
55179
55541
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
55180
55542
|
),
|
|
55181
55543
|
),
|
|
55544
|
+
(
|
|
55545
|
+
"sensitivities",
|
|
55546
|
+
sgqlc.types.Arg(
|
|
55547
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55548
|
+
),
|
|
55549
|
+
),
|
|
55182
55550
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
55183
55551
|
(
|
|
55184
55552
|
"domain_ids",
|
|
@@ -55317,6 +55685,8 @@ class Query(sgqlc.types.Type):
|
|
|
55317
55685
|
user emails
|
|
55318
55686
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55319
55687
|
null to include monitors without a priority set
|
|
55688
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
55689
|
+
include null to include monitors without a set sensitivity
|
|
55320
55690
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55321
55691
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55322
55692
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -55419,6 +55789,12 @@ class Query(sgqlc.types.Type):
|
|
|
55419
55789
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
55420
55790
|
),
|
|
55421
55791
|
),
|
|
55792
|
+
(
|
|
55793
|
+
"sensitivities",
|
|
55794
|
+
sgqlc.types.Arg(
|
|
55795
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55796
|
+
),
|
|
55797
|
+
),
|
|
55422
55798
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
55423
55799
|
(
|
|
55424
55800
|
"domain_ids",
|
|
@@ -55557,6 +55933,8 @@ class Query(sgqlc.types.Type):
|
|
|
55557
55933
|
user emails
|
|
55558
55934
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55559
55935
|
null to include monitors without a priority set
|
|
55936
|
+
* `sensitivities` (`[String]`): Filter by given sensitivities. Can
|
|
55937
|
+
include null to include monitors without a set sensitivity
|
|
55560
55938
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55561
55939
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55562
55940
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -65312,6 +65690,7 @@ class SearchResult(sgqlc.types.Type):
|
|
|
65312
65690
|
"is_muted",
|
|
65313
65691
|
"etl_type",
|
|
65314
65692
|
"supports_data_explorer",
|
|
65693
|
+
"dbt_project_name",
|
|
65315
65694
|
)
|
|
65316
65695
|
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
65317
65696
|
"""Monte Carlo full identifier for an entity"""
|
|
@@ -65399,6 +65778,9 @@ class SearchResult(sgqlc.types.Type):
|
|
|
65399
65778
|
supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
|
|
65400
65779
|
"""Whether the table supports data explorer"""
|
|
65401
65780
|
|
|
65781
|
+
dbt_project_name = sgqlc.types.Field(String, graphql_name="dbtProjectName")
|
|
65782
|
+
"""Name of the dbt project for dbt-job assets"""
|
|
65783
|
+
|
|
65402
65784
|
|
|
65403
65785
|
class SearchResultProperty(sgqlc.types.Type):
|
|
65404
65786
|
"""An individual label. Part of the SearchResult"""
|
|
@@ -67794,6 +68176,9 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
67794
68176
|
"created_by_id",
|
|
67795
68177
|
"distinct_mcons_count",
|
|
67796
68178
|
"notes",
|
|
68179
|
+
"uses_monitoring_filters_fallback",
|
|
68180
|
+
"ignored_routing_rules",
|
|
68181
|
+
"unexpanded_regex_patterns",
|
|
67797
68182
|
)
|
|
67798
68183
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
67799
68184
|
|
|
@@ -67835,6 +68220,20 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
67835
68220
|
|
|
67836
68221
|
notes = sgqlc.types.Field(String, graphql_name="notes")
|
|
67837
68222
|
|
|
68223
|
+
uses_monitoring_filters_fallback = sgqlc.types.Field(
|
|
68224
|
+
sgqlc.types.non_null(Boolean), graphql_name="usesMonitoringFiltersFallback"
|
|
68225
|
+
)
|
|
68226
|
+
|
|
68227
|
+
ignored_routing_rules = sgqlc.types.Field(
|
|
68228
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(RoutingRuleData))),
|
|
68229
|
+
graphql_name="ignoredRoutingRules",
|
|
68230
|
+
)
|
|
68231
|
+
|
|
68232
|
+
unexpanded_regex_patterns = sgqlc.types.Field(
|
|
68233
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("UnexpandedRegexPattern"))),
|
|
68234
|
+
graphql_name="unexpandedRegexPatterns",
|
|
68235
|
+
)
|
|
68236
|
+
|
|
67838
68237
|
|
|
67839
68238
|
class TableMonitorStatus(sgqlc.types.Type):
|
|
67840
68239
|
__schema__ = schema
|
|
@@ -69758,7 +70157,13 @@ class TracePageInfo(sgqlc.types.Type):
|
|
|
69758
70157
|
"""PageInfo for trace pagination (Relay spec compliant)."""
|
|
69759
70158
|
|
|
69760
70159
|
__schema__ = schema
|
|
69761
|
-
__field_names__ = (
|
|
70160
|
+
__field_names__ = (
|
|
70161
|
+
"has_next_page",
|
|
70162
|
+
"has_previous_page",
|
|
70163
|
+
"start_cursor",
|
|
70164
|
+
"end_cursor",
|
|
70165
|
+
"total_count",
|
|
70166
|
+
)
|
|
69762
70167
|
has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasNextPage")
|
|
69763
70168
|
"""Whether there are more results after this page"""
|
|
69764
70169
|
|
|
@@ -69773,6 +70178,9 @@ class TracePageInfo(sgqlc.types.Type):
|
|
|
69773
70178
|
end_cursor = sgqlc.types.Field(String, graphql_name="endCursor")
|
|
69774
70179
|
"""Cursor of the last edge"""
|
|
69775
70180
|
|
|
70181
|
+
total_count = sgqlc.types.Field(Int, graphql_name="totalCount")
|
|
70182
|
+
"""Total number of results"""
|
|
70183
|
+
|
|
69776
70184
|
|
|
69777
70185
|
class TrackTablePayload(sgqlc.types.Type):
|
|
69778
70186
|
"""Add table to account's dashboard"""
|
|
@@ -70071,6 +70479,28 @@ class UCSTableMonitorConfigOutput(sgqlc.types.Type):
|
|
|
70071
70479
|
"""Detector freshness threshold"""
|
|
70072
70480
|
|
|
70073
70481
|
|
|
70482
|
+
class UnexpandedRegexPattern(sgqlc.types.Type):
|
|
70483
|
+
__schema__ = schema
|
|
70484
|
+
__field_names__ = (
|
|
70485
|
+
"original_regex",
|
|
70486
|
+
"converted_wildcard",
|
|
70487
|
+
"is_exclude",
|
|
70488
|
+
"rule_id",
|
|
70489
|
+
"warehouse_uuid",
|
|
70490
|
+
)
|
|
70491
|
+
original_regex = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="originalRegex")
|
|
70492
|
+
|
|
70493
|
+
converted_wildcard = sgqlc.types.Field(
|
|
70494
|
+
sgqlc.types.non_null(String), graphql_name="convertedWildcard"
|
|
70495
|
+
)
|
|
70496
|
+
|
|
70497
|
+
is_exclude = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isExclude")
|
|
70498
|
+
|
|
70499
|
+
rule_id = sgqlc.types.Field(Int, graphql_name="ruleId")
|
|
70500
|
+
|
|
70501
|
+
warehouse_uuid = sgqlc.types.Field(String, graphql_name="warehouseUuid")
|
|
70502
|
+
|
|
70503
|
+
|
|
70074
70504
|
class UnifiedUserAssignmentConnection(sgqlc.types.relay.Connection):
|
|
70075
70505
|
__schema__ = schema
|
|
70076
70506
|
__field_names__ = ("page_info", "edges")
|
|
@@ -70694,6 +71124,15 @@ class UpdatePineconeCredentialsV2Mutation(sgqlc.types.Type):
|
|
|
70694
71124
|
result = sgqlc.types.Field(UpdateCredentialsV2Result, graphql_name="result")
|
|
70695
71125
|
|
|
70696
71126
|
|
|
71127
|
+
class UpdatePlatformService(sgqlc.types.Type):
|
|
71128
|
+
"""Update platform service attributes."""
|
|
71129
|
+
|
|
71130
|
+
__schema__ = schema
|
|
71131
|
+
__field_names__ = ("ok",)
|
|
71132
|
+
ok = sgqlc.types.Field(Boolean, graphql_name="ok")
|
|
71133
|
+
"""Boolean indicating if the operation was successful"""
|
|
71134
|
+
|
|
71135
|
+
|
|
70697
71136
|
class UpdatePowerBiCredentialsV2Mutation(sgqlc.types.Type):
|
|
70698
71137
|
"""Update credentials for an existing PowerBi connection. Note:
|
|
70699
71138
|
This mutation only uploads credentials and returns a temporary
|
|
@@ -74707,6 +75146,8 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
74707
75146
|
"notes",
|
|
74708
75147
|
"namespace",
|
|
74709
75148
|
"priority",
|
|
75149
|
+
"is_paused",
|
|
75150
|
+
"is_draft",
|
|
74710
75151
|
"created_time",
|
|
74711
75152
|
"monitor_name",
|
|
74712
75153
|
"last_update_time",
|
|
@@ -74730,6 +75171,12 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
74730
75171
|
priority = sgqlc.types.Field(MetricMonitoringModelPriority, graphql_name="priority")
|
|
74731
75172
|
"""Default priority for alerts involving this monitor"""
|
|
74732
75173
|
|
|
75174
|
+
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
75175
|
+
"""Is this monitor paused?"""
|
|
75176
|
+
|
|
75177
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
75178
|
+
"""Is this a draft monitor?"""
|
|
75179
|
+
|
|
74733
75180
|
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
74734
75181
|
"""When the monitor was first created"""
|
|
74735
75182
|
|
|
@@ -75015,8 +75462,8 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
75015
75462
|
is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
|
|
75016
75463
|
"""True if rule is paused"""
|
|
75017
75464
|
|
|
75018
|
-
is_draft = sgqlc.types.Field(
|
|
75019
|
-
"""
|
|
75465
|
+
is_draft = sgqlc.types.Field(Boolean, graphql_name="isDraft")
|
|
75466
|
+
"""True if rule is a draft"""
|
|
75020
75467
|
|
|
75021
75468
|
rule_type = sgqlc.types.Field(CustomRuleModelRuleType, graphql_name="ruleType")
|
|
75022
75469
|
|
|
@@ -77608,7 +78055,6 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
77608
78055
|
"created_by",
|
|
77609
78056
|
"last_update_user",
|
|
77610
78057
|
"is_false_positive",
|
|
77611
|
-
"is_reintroduced",
|
|
77612
78058
|
"reason",
|
|
77613
78059
|
"metric",
|
|
77614
78060
|
"field",
|
|
@@ -77628,10 +78074,12 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
77628
78074
|
is_false_positive = sgqlc.types.Field(
|
|
77629
78075
|
sgqlc.types.non_null(Boolean), graphql_name="isFalsePositive"
|
|
77630
78076
|
)
|
|
78077
|
+
"""Deprecated - use 'reason' field instead. Whether the event is
|
|
78078
|
+
considered a false positive.
|
|
78079
|
+
"""
|
|
77631
78080
|
|
|
77632
|
-
|
|
77633
|
-
|
|
77634
|
-
reason = sgqlc.types.Field(EventDetectorFeedbackModelReason, graphql_name="reason")
|
|
78081
|
+
reason = sgqlc.types.Field(sgqlc.types.non_null(FeedbackReason), graphql_name="reason")
|
|
78082
|
+
"""Reason for the feedback."""
|
|
77635
78083
|
|
|
77636
78084
|
metric = sgqlc.types.Field(String, graphql_name="metric")
|
|
77637
78085
|
|
|
@@ -79236,6 +79684,7 @@ class TableMonitor(sgqlc.types.Type, Node):
|
|
|
79236
79684
|
"namespace",
|
|
79237
79685
|
"priority",
|
|
79238
79686
|
"is_paused",
|
|
79687
|
+
"is_draft",
|
|
79239
79688
|
"warehouse_uuid",
|
|
79240
79689
|
"monitor_name",
|
|
79241
79690
|
"deleted_by",
|
|
@@ -79286,6 +79735,9 @@ class TableMonitor(sgqlc.types.Type, Node):
|
|
|
79286
79735
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
79287
79736
|
"""Is this monitor paused?"""
|
|
79288
79737
|
|
|
79738
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
79739
|
+
"""Is this a draft monitor?"""
|
|
79740
|
+
|
|
79289
79741
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
79290
79742
|
|
|
79291
79743
|
monitor_name = sgqlc.types.Field(String, graphql_name="monitorName")
|
|
@@ -81015,6 +81467,7 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
81015
81467
|
"conditional_snooze",
|
|
81016
81468
|
"snooze_until_time",
|
|
81017
81469
|
"is_paused",
|
|
81470
|
+
"is_draft",
|
|
81018
81471
|
"where_condition",
|
|
81019
81472
|
"use_partition_clause",
|
|
81020
81473
|
"namespace",
|
|
@@ -81143,6 +81596,8 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
81143
81596
|
|
|
81144
81597
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
81145
81598
|
|
|
81599
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
81600
|
+
|
|
81146
81601
|
where_condition = sgqlc.types.Field(String, graphql_name="whereCondition")
|
|
81147
81602
|
|
|
81148
81603
|
use_partition_clause = sgqlc.types.Field(
|
|
@@ -82208,6 +82663,7 @@ class LineageJobAttributes(sgqlc.types.Union):
|
|
|
82208
82663
|
LineageDbtJobAttributes,
|
|
82209
82664
|
LineageInformaticaJobAttributes,
|
|
82210
82665
|
LineageAzureDataFactoryJobAttributes,
|
|
82666
|
+
LineageFivetranJobAttributes,
|
|
82211
82667
|
)
|
|
82212
82668
|
|
|
82213
82669
|
|