pycarlo 0.12.2__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 +1407 -29
- pycarlo/lib/schema.py +541 -28
- {pycarlo-0.12.2.dist-info → pycarlo-0.12.30.dist-info}/METADATA +1 -1
- {pycarlo-0.12.2.dist-info → pycarlo-0.12.30.dist-info}/RECORD +7 -7
- {pycarlo-0.12.2.dist-info → pycarlo-0.12.30.dist-info}/LICENSE +0 -0
- {pycarlo-0.12.2.dist-info → pycarlo-0.12.30.dist-info}/WHEEL +0 -0
- {pycarlo-0.12.2.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
|
)
|
|
@@ -13015,6 +13078,7 @@ class Agent(sgqlc.types.Type):
|
|
|
13015
13078
|
__field_names__ = (
|
|
13016
13079
|
"id",
|
|
13017
13080
|
"uuid",
|
|
13081
|
+
"name",
|
|
13018
13082
|
"data_collector",
|
|
13019
13083
|
"endpoint",
|
|
13020
13084
|
"platform",
|
|
@@ -13037,6 +13101,9 @@ class Agent(sgqlc.types.Type):
|
|
|
13037
13101
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
13038
13102
|
"""Unique UUID of the Agent."""
|
|
13039
13103
|
|
|
13104
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
13105
|
+
"""Name of the Agent."""
|
|
13106
|
+
|
|
13040
13107
|
data_collector = sgqlc.types.Field(
|
|
13041
13108
|
sgqlc.types.non_null("DataCollector"), graphql_name="dataCollector"
|
|
13042
13109
|
)
|
|
@@ -14210,7 +14277,13 @@ class AudienceRoutingStats(sgqlc.types.Type):
|
|
|
14210
14277
|
"audience_label",
|
|
14211
14278
|
"mcons_covered_by_table_monitors",
|
|
14212
14279
|
"mcons_covered_by_notification_routing",
|
|
14280
|
+
"mcons_covered_by_notification_routing_excluding_importance",
|
|
14213
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",
|
|
14214
14287
|
)
|
|
14215
14288
|
audience_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="audienceUuid")
|
|
14216
14289
|
|
|
@@ -14224,11 +14297,39 @@ class AudienceRoutingStats(sgqlc.types.Type):
|
|
|
14224
14297
|
sgqlc.types.non_null(Int), graphql_name="mconsCoveredByNotificationRouting"
|
|
14225
14298
|
)
|
|
14226
14299
|
|
|
14300
|
+
mcons_covered_by_notification_routing_excluding_importance = sgqlc.types.Field(
|
|
14301
|
+
sgqlc.types.non_null(Int),
|
|
14302
|
+
graphql_name="mconsCoveredByNotificationRoutingExcludingImportance",
|
|
14303
|
+
)
|
|
14304
|
+
|
|
14227
14305
|
sample_mcons_routing_not_table_monitor = sgqlc.types.Field(
|
|
14228
14306
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
14229
14307
|
graphql_name="sampleMconsRoutingNotTableMonitor",
|
|
14230
14308
|
)
|
|
14231
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
|
+
|
|
14232
14333
|
|
|
14233
14334
|
class AuditLogEntryConnection(sgqlc.types.relay.Connection):
|
|
14234
14335
|
__schema__ = schema
|
|
@@ -15755,6 +15856,7 @@ class CategorizedSearchResult(sgqlc.types.Type):
|
|
|
15755
15856
|
"is_muted",
|
|
15756
15857
|
"etl_type",
|
|
15757
15858
|
"supports_data_explorer",
|
|
15859
|
+
"dbt_project_name",
|
|
15758
15860
|
"category",
|
|
15759
15861
|
"is_dynamic_schedule_supported",
|
|
15760
15862
|
)
|
|
@@ -15846,6 +15948,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
|
|
|
15846
15948
|
supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
|
|
15847
15949
|
"""Whether the table supports data explorer"""
|
|
15848
15950
|
|
|
15951
|
+
dbt_project_name = sgqlc.types.Field(String, graphql_name="dbtProjectName")
|
|
15952
|
+
"""Name of the dbt project for dbt-job assets"""
|
|
15953
|
+
|
|
15849
15954
|
category = sgqlc.types.Field(SearchCategoryEnum, graphql_name="category")
|
|
15850
15955
|
"""Name of the category for the table like: RESOLVED TABLES, ALL
|
|
15851
15956
|
TABLES etc
|
|
@@ -16585,7 +16690,17 @@ class ConversionResult(sgqlc.types.Type):
|
|
|
16585
16690
|
"sample_monitored_not_covered",
|
|
16586
16691
|
"mcons_covered_by_table_monitor_audiences",
|
|
16587
16692
|
"mcons_covered_by_notification_routing_audiences",
|
|
16693
|
+
"mcons_covered_by_notification_routing_audiences_excluding_importance",
|
|
16588
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",
|
|
16589
16704
|
"audience_routing_stats",
|
|
16590
16705
|
"text_output",
|
|
16591
16706
|
"summary_text",
|
|
@@ -16706,11 +16821,56 @@ class ConversionResult(sgqlc.types.Type):
|
|
|
16706
16821
|
Int, graphql_name="mconsCoveredByNotificationRoutingAudiences"
|
|
16707
16822
|
)
|
|
16708
16823
|
|
|
16824
|
+
mcons_covered_by_notification_routing_audiences_excluding_importance = sgqlc.types.Field(
|
|
16825
|
+
Int, graphql_name="mconsCoveredByNotificationRoutingAudiencesExcludingImportance"
|
|
16826
|
+
)
|
|
16827
|
+
|
|
16709
16828
|
sample_mcons_routing_not_table_monitor = sgqlc.types.Field(
|
|
16710
16829
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("MconMonitorPair"))),
|
|
16711
16830
|
graphql_name="sampleMconsRoutingNotTableMonitor",
|
|
16712
16831
|
)
|
|
16713
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
|
+
|
|
16714
16874
|
audience_routing_stats = sgqlc.types.Field(
|
|
16715
16875
|
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(AudienceRoutingStats))),
|
|
16716
16876
|
graphql_name="audienceRoutingStats",
|
|
@@ -17595,6 +17755,18 @@ class CreateSharedQuery(sgqlc.types.Type):
|
|
|
17595
17755
|
"""Link to newly shared query"""
|
|
17596
17756
|
|
|
17597
17757
|
|
|
17758
|
+
class CreateSingleTableMonitoringNotification(sgqlc.types.Type):
|
|
17759
|
+
"""Record that monitoring was enabled for a single table. Must
|
|
17760
|
+
provide the table mcon and exactly one of a usage rule ID or a
|
|
17761
|
+
table monitor UUID.
|
|
17762
|
+
"""
|
|
17763
|
+
|
|
17764
|
+
__schema__ = schema
|
|
17765
|
+
__field_names__ = ("success",)
|
|
17766
|
+
success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="success")
|
|
17767
|
+
"""True if the event was recorded"""
|
|
17768
|
+
|
|
17769
|
+
|
|
17598
17770
|
class CreateTableauAssetWarning(sgqlc.types.Type):
|
|
17599
17771
|
"""Creates a warning on an asset."""
|
|
17600
17772
|
|
|
@@ -18097,6 +18269,7 @@ class DataCollector(sgqlc.types.Type):
|
|
|
18097
18269
|
"id",
|
|
18098
18270
|
"account",
|
|
18099
18271
|
"uuid",
|
|
18272
|
+
"name",
|
|
18100
18273
|
"api_gateway_id",
|
|
18101
18274
|
"kinesis_endpoint_id",
|
|
18102
18275
|
"cloudwatch_log_endpoint_id",
|
|
@@ -18132,6 +18305,8 @@ class DataCollector(sgqlc.types.Type):
|
|
|
18132
18305
|
|
|
18133
18306
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
18134
18307
|
|
|
18308
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
18309
|
+
|
|
18135
18310
|
api_gateway_id = sgqlc.types.Field(String, graphql_name="apiGatewayId")
|
|
18136
18311
|
|
|
18137
18312
|
kinesis_endpoint_id = sgqlc.types.Field(String, graphql_name="kinesisEndpointId")
|
|
@@ -23056,6 +23231,16 @@ class HostingInformation(sgqlc.types.Type):
|
|
|
23056
23231
|
"""List of enabled configurations (primary/secondary)"""
|
|
23057
23232
|
|
|
23058
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
|
+
|
|
23059
23244
|
class IncidentCategoryCount(sgqlc.types.Type):
|
|
23060
23245
|
__schema__ = schema
|
|
23061
23246
|
__field_names__ = ("incident_category", "category_count")
|
|
@@ -24373,6 +24558,59 @@ class LineageEdgeJob(sgqlc.types.Type):
|
|
|
24373
24558
|
)
|
|
24374
24559
|
|
|
24375
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
|
+
|
|
24376
24614
|
class LineageGraph(sgqlc.types.Type):
|
|
24377
24615
|
__schema__ = schema
|
|
24378
24616
|
__field_names__ = ("base_node", "base_nodes", "connected_nodes", "flattened_edges")
|
|
@@ -25199,11 +25437,16 @@ class MconCountPair(sgqlc.types.Type):
|
|
|
25199
25437
|
|
|
25200
25438
|
class MconMonitorPair(sgqlc.types.Type):
|
|
25201
25439
|
__schema__ = schema
|
|
25202
|
-
__field_names__ = ("mcon", "monitor_name")
|
|
25440
|
+
__field_names__ = ("mcon", "monitor_name", "table_tags")
|
|
25203
25441
|
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
25204
25442
|
|
|
25205
25443
|
monitor_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorName")
|
|
25206
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
|
+
|
|
25207
25450
|
|
|
25208
25451
|
class MconRuleIdPair(sgqlc.types.Type):
|
|
25209
25452
|
__schema__ = schema
|
|
@@ -25748,6 +25991,12 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
25748
25991
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
25749
25992
|
),
|
|
25750
25993
|
),
|
|
25994
|
+
(
|
|
25995
|
+
"sensitivities",
|
|
25996
|
+
sgqlc.types.Arg(
|
|
25997
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
25998
|
+
),
|
|
25999
|
+
),
|
|
25751
26000
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
25752
26001
|
(
|
|
25753
26002
|
"domain_ids",
|
|
@@ -25886,6 +26135,8 @@ class MonitorLabelObject(sgqlc.types.Type):
|
|
|
25886
26135
|
user emails
|
|
25887
26136
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
25888
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
|
|
25889
26140
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
25890
26141
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
25891
26142
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -26463,6 +26714,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
|
|
|
26463
26714
|
class Mutation(sgqlc.types.Type):
|
|
26464
26715
|
__schema__ = schema
|
|
26465
26716
|
__field_names__ = (
|
|
26717
|
+
"update_platform_service",
|
|
26466
26718
|
"create_or_update_agent_trace_table",
|
|
26467
26719
|
"delete_agent_trace_table",
|
|
26468
26720
|
"link_slack_app_installation",
|
|
@@ -26479,6 +26731,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
26479
26731
|
"create_or_update_table_monitor",
|
|
26480
26732
|
"pause_table_monitor",
|
|
26481
26733
|
"delete_table_monitor",
|
|
26734
|
+
"create_single_table_monitoring_notification",
|
|
26482
26735
|
"update_monitor_tags",
|
|
26483
26736
|
"bulk_add_monitor_tags",
|
|
26484
26737
|
"delete_monitor_tag",
|
|
@@ -26922,6 +27175,29 @@ class Mutation(sgqlc.types.Type):
|
|
|
26922
27175
|
"update_account_secret",
|
|
26923
27176
|
"delete_account_secret",
|
|
26924
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
|
+
|
|
26925
27201
|
create_or_update_agent_trace_table = sgqlc.types.Field(
|
|
26926
27202
|
CreateOrUpdateAgentTraceTable,
|
|
26927
27203
|
graphql_name="createOrUpdateAgentTraceTable",
|
|
@@ -27426,6 +27702,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
27426
27702
|
default=None,
|
|
27427
27703
|
),
|
|
27428
27704
|
),
|
|
27705
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
27429
27706
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
27430
27707
|
("priority", sgqlc.types.Arg(String, graphql_name="priority", default=None)),
|
|
27431
27708
|
(
|
|
@@ -27462,6 +27739,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
27462
27739
|
and return the YAML and queries. (default: `false`)
|
|
27463
27740
|
* `failure_audiences` (`[String!]`): The audiences to notify on
|
|
27464
27741
|
failure
|
|
27742
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
27743
|
+
`false`)
|
|
27465
27744
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
27466
27745
|
`""`)
|
|
27467
27746
|
* `priority` (`String`): The default priority for alerts involving
|
|
@@ -27522,6 +27801,39 @@ class Mutation(sgqlc.types.Type):
|
|
|
27522
27801
|
* `monitor_uuid` (`UUID!`): UUID of the table monitor to delete
|
|
27523
27802
|
"""
|
|
27524
27803
|
|
|
27804
|
+
create_single_table_monitoring_notification = sgqlc.types.Field(
|
|
27805
|
+
CreateSingleTableMonitoringNotification,
|
|
27806
|
+
graphql_name="createSingleTableMonitoringNotification",
|
|
27807
|
+
args=sgqlc.types.ArgDict(
|
|
27808
|
+
(
|
|
27809
|
+
(
|
|
27810
|
+
"mcon",
|
|
27811
|
+
sgqlc.types.Arg(
|
|
27812
|
+
sgqlc.types.non_null(String), graphql_name="mcon", default=None
|
|
27813
|
+
),
|
|
27814
|
+
),
|
|
27815
|
+
(
|
|
27816
|
+
"table_monitor_uuid",
|
|
27817
|
+
sgqlc.types.Arg(UUID, graphql_name="tableMonitorUuid", default=None),
|
|
27818
|
+
),
|
|
27819
|
+
("usage_rule_id", sgqlc.types.Arg(Int, graphql_name="usageRuleId", default=None)),
|
|
27820
|
+
)
|
|
27821
|
+
),
|
|
27822
|
+
)
|
|
27823
|
+
"""(experimental) Record a single-table monitoring enablement event
|
|
27824
|
+
|
|
27825
|
+
Arguments:
|
|
27826
|
+
|
|
27827
|
+
* `mcon` (`String!`): MCON of the table for which monitoring was
|
|
27828
|
+
enabled
|
|
27829
|
+
* `table_monitor_uuid` (`UUID`): UUID of the TableMonitor that
|
|
27830
|
+
enabled monitoring for this table. Provide either this or
|
|
27831
|
+
usageRuleId, but not both.
|
|
27832
|
+
* `usage_rule_id` (`Int`): ID of the MonitoredTableRule that
|
|
27833
|
+
enabled monitoring for this table. Provide either this or
|
|
27834
|
+
tableMonitorUuid, but not both.
|
|
27835
|
+
"""
|
|
27836
|
+
|
|
27525
27837
|
update_monitor_tags = sgqlc.types.Field(
|
|
27526
27838
|
"UpdateMonitorTags",
|
|
27527
27839
|
graphql_name="updateMonitorTags",
|
|
@@ -27862,6 +28174,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
27862
28174
|
"interval_minutes",
|
|
27863
28175
|
sgqlc.types.Arg(Int, graphql_name="intervalMinutes", default=None),
|
|
27864
28176
|
),
|
|
28177
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
27865
28178
|
(
|
|
27866
28179
|
"labels",
|
|
27867
28180
|
sgqlc.types.Arg(
|
|
@@ -27921,6 +28234,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
27921
28234
|
failure
|
|
27922
28235
|
* `interval_minutes` (`Int`): How often to run scheduled custom
|
|
27923
28236
|
rule check (DEPRECATED, use schedule instead)
|
|
28237
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
28238
|
+
`false`)
|
|
27924
28239
|
* `labels` (`[String]`): The monitor labels
|
|
27925
28240
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
27926
28241
|
`""`)
|
|
@@ -28224,6 +28539,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
28224
28539
|
graphql_name="addPlatformService",
|
|
28225
28540
|
args=sgqlc.types.ArgDict(
|
|
28226
28541
|
(
|
|
28542
|
+
(
|
|
28543
|
+
"assign_data_store",
|
|
28544
|
+
sgqlc.types.Arg(Boolean, graphql_name="assignDataStore", default=True),
|
|
28545
|
+
),
|
|
28227
28546
|
(
|
|
28228
28547
|
"settings_source_service_uuid",
|
|
28229
28548
|
sgqlc.types.Arg(UUID, graphql_name="settingsSourceServiceUuid", default=None),
|
|
@@ -28235,6 +28554,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
28235
28554
|
|
|
28236
28555
|
Arguments:
|
|
28237
28556
|
|
|
28557
|
+
* `assign_data_store` (`Boolean`): If True, a data store is
|
|
28558
|
+
assigned to the service (default: `true`)
|
|
28238
28559
|
* `settings_source_service_uuid` (`UUID`): Optional platform
|
|
28239
28560
|
service to use as the source for settings (concurrency, memory
|
|
28240
28561
|
and env vars). If not provided, default settings will be used.
|
|
@@ -35875,6 +36196,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
35875
36196
|
default=None,
|
|
35876
36197
|
),
|
|
35877
36198
|
),
|
|
36199
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
35878
36200
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
35879
36201
|
(
|
|
35880
36202
|
"notify_rule_run_failure",
|
|
@@ -35948,6 +36270,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
35948
36270
|
`false`)
|
|
35949
36271
|
* `failure_audiences` (`[String!]`): The monitor audiences to
|
|
35950
36272
|
notify on failure
|
|
36273
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
36274
|
+
`false`)
|
|
35951
36275
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
35952
36276
|
`""`)
|
|
35953
36277
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -36190,6 +36514,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
36190
36514
|
default=None,
|
|
36191
36515
|
),
|
|
36192
36516
|
),
|
|
36517
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
36193
36518
|
(
|
|
36194
36519
|
"labels",
|
|
36195
36520
|
sgqlc.types.Arg(
|
|
@@ -36232,6 +36557,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
36232
36557
|
* `dry_run` (`Boolean`): Dry run the monitor creation or update
|
|
36233
36558
|
and return the MaC YAML and queries. (default: `false`)
|
|
36234
36559
|
* `failure_audiences` (`[String!]`): The monitor failure audiences
|
|
36560
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
36561
|
+
`false`)
|
|
36235
36562
|
* `labels` (`[String]`): The monitor labels
|
|
36236
36563
|
* `notes` (`String`): Additional context for the rule
|
|
36237
36564
|
* `priority` (`String`): The default priority for alerts involving
|
|
@@ -37835,6 +38162,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
37835
38162
|
default=None,
|
|
37836
38163
|
),
|
|
37837
38164
|
),
|
|
38165
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
37838
38166
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
37839
38167
|
(
|
|
37840
38168
|
"notify_rule_run_failure",
|
|
@@ -37896,6 +38224,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
37896
38224
|
`false`)
|
|
37897
38225
|
* `failure_audiences` (`[String!]`): The monitor notification
|
|
37898
38226
|
audiences for failures
|
|
38227
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38228
|
+
`false`)
|
|
37899
38229
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
37900
38230
|
`""`)
|
|
37901
38231
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -38003,6 +38333,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
38003
38333
|
"high_segment_count",
|
|
38004
38334
|
sgqlc.types.Arg(Boolean, graphql_name="highSegmentCount", default=False),
|
|
38005
38335
|
),
|
|
38336
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
38006
38337
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
38007
38338
|
(
|
|
38008
38339
|
"notify_rule_run_failure",
|
|
@@ -38086,6 +38417,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38086
38417
|
* `high_segment_count` (`Boolean`): Flag to apply additional
|
|
38087
38418
|
limits which increase the supported segment count (default:
|
|
38088
38419
|
`false`)
|
|
38420
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38421
|
+
`false`)
|
|
38089
38422
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
38090
38423
|
`""`)
|
|
38091
38424
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -38135,6 +38468,12 @@ class Mutation(sgqlc.types.Type):
|
|
|
38135
38468
|
default=None,
|
|
38136
38469
|
),
|
|
38137
38470
|
),
|
|
38471
|
+
(
|
|
38472
|
+
"aggregate_by",
|
|
38473
|
+
sgqlc.types.Arg(
|
|
38474
|
+
MonitorAggTimeInterval, graphql_name="aggregateBy", default="HOUR"
|
|
38475
|
+
),
|
|
38476
|
+
),
|
|
38138
38477
|
(
|
|
38139
38478
|
"alert_conditions",
|
|
38140
38479
|
sgqlc.types.Arg(
|
|
@@ -38153,6 +38492,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
38153
38492
|
default=None,
|
|
38154
38493
|
),
|
|
38155
38494
|
),
|
|
38495
|
+
(
|
|
38496
|
+
"collection_lag_hours",
|
|
38497
|
+
sgqlc.types.Arg(Int, graphql_name="collectionLagHours", default=0),
|
|
38498
|
+
),
|
|
38156
38499
|
("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
|
|
38157
38500
|
(
|
|
38158
38501
|
"data_quality_dimension",
|
|
@@ -38258,9 +38601,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
38258
38601
|
|
|
38259
38602
|
* `agent_span_filters` (`[AgentSpanFilterInput!]!`): Filter by
|
|
38260
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"`)
|
|
38261
38607
|
* `alert_conditions` (`[MetricAlertConditionInput!]!`): Alert
|
|
38262
38608
|
conditions.
|
|
38263
38609
|
* `audiences` (`[String!]`): The monitor notification audiences
|
|
38610
|
+
* `collection_lag_hours` (`Int`): Collection lag in hours (for the
|
|
38611
|
+
provided timestamp) (default: `0`)
|
|
38264
38612
|
* `connection_id` (`UUID`): Specify a connection (e.g. query-
|
|
38265
38613
|
engine) to use
|
|
38266
38614
|
* `data_quality_dimension` (`String`): Data quality dimension.
|
|
@@ -38371,6 +38719,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
38371
38719
|
sgqlc.types.non_null(String), graphql_name="field", default=None
|
|
38372
38720
|
),
|
|
38373
38721
|
),
|
|
38722
|
+
("is_draft", sgqlc.types.Arg(Boolean, graphql_name="isDraft", default=False)),
|
|
38374
38723
|
("notes", sgqlc.types.Arg(String, graphql_name="notes", default="")),
|
|
38375
38724
|
(
|
|
38376
38725
|
"notify_rule_run_failure",
|
|
@@ -38419,6 +38768,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38419
38768
|
* `failure_audiences` (`[String!]`): The monitor notification
|
|
38420
38769
|
audiences for failures
|
|
38421
38770
|
* `field` (`String!`): Field to monitor
|
|
38771
|
+
* `is_draft` (`Boolean`): Make target a draft monitor. (default:
|
|
38772
|
+
`false`)
|
|
38422
38773
|
* `notes` (`String`): Additional context for the monitor (default:
|
|
38423
38774
|
`""`)
|
|
38424
38775
|
* `notify_rule_run_failure` (`Boolean`): DEPRECATED: Completely
|
|
@@ -45503,7 +45854,7 @@ class PlatformServiceObject(sgqlc.types.Type):
|
|
|
45503
45854
|
"""Platform service information"""
|
|
45504
45855
|
|
|
45505
45856
|
__schema__ = schema
|
|
45506
|
-
__field_names__ = ("uuid", "deployment", "connections", "support_status")
|
|
45857
|
+
__field_names__ = ("uuid", "deployment", "connections", "support_status", "name")
|
|
45507
45858
|
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
45508
45859
|
"""UUID of the platform service"""
|
|
45509
45860
|
|
|
@@ -45520,6 +45871,9 @@ class PlatformServiceObject(sgqlc.types.Type):
|
|
|
45520
45871
|
using supports* parameters
|
|
45521
45872
|
"""
|
|
45522
45873
|
|
|
45874
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
45875
|
+
"""Name of the platform service"""
|
|
45876
|
+
|
|
45523
45877
|
|
|
45524
45878
|
class PlatformServicePlatform(sgqlc.types.Type):
|
|
45525
45879
|
__schema__ = schema
|
|
@@ -46332,7 +46686,10 @@ class Query(sgqlc.types.Type):
|
|
|
46332
46686
|
sgqlc.types.list_of(AgentMetadata),
|
|
46333
46687
|
graphql_name="getAgentMetadata",
|
|
46334
46688
|
args=sgqlc.types.ArgDict(
|
|
46335
|
-
(
|
|
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
|
+
)
|
|
46336
46693
|
),
|
|
46337
46694
|
)
|
|
46338
46695
|
"""(experimental) Get metadata about AI agents for agent
|
|
@@ -46342,6 +46699,8 @@ class Query(sgqlc.types.Type):
|
|
|
46342
46699
|
|
|
46343
46700
|
* `start_time` (`DateTime`): Filter spans with start_time >= this
|
|
46344
46701
|
value
|
|
46702
|
+
* `domain_uuid` (`UUID`): Filter results to only include MCONs
|
|
46703
|
+
assigned to this domain UUID
|
|
46345
46704
|
"""
|
|
46346
46705
|
|
|
46347
46706
|
get_agent_trace_tables = sgqlc.types.Field(
|
|
@@ -53446,6 +53805,12 @@ class Query(sgqlc.types.Type):
|
|
|
53446
53805
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53447
53806
|
),
|
|
53448
53807
|
),
|
|
53808
|
+
(
|
|
53809
|
+
"sensitivities",
|
|
53810
|
+
sgqlc.types.Arg(
|
|
53811
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
53812
|
+
),
|
|
53813
|
+
),
|
|
53449
53814
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53450
53815
|
(
|
|
53451
53816
|
"domain_ids",
|
|
@@ -53584,6 +53949,8 @@ class Query(sgqlc.types.Type):
|
|
|
53584
53949
|
user emails
|
|
53585
53950
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
53586
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
|
|
53587
53954
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
53588
53955
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
53589
53956
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -53686,6 +54053,12 @@ class Query(sgqlc.types.Type):
|
|
|
53686
54053
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53687
54054
|
),
|
|
53688
54055
|
),
|
|
54056
|
+
(
|
|
54057
|
+
"sensitivities",
|
|
54058
|
+
sgqlc.types.Arg(
|
|
54059
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54060
|
+
),
|
|
54061
|
+
),
|
|
53689
54062
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53690
54063
|
(
|
|
53691
54064
|
"domain_ids",
|
|
@@ -53824,6 +54197,8 @@ class Query(sgqlc.types.Type):
|
|
|
53824
54197
|
user emails
|
|
53825
54198
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
53826
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
|
|
53827
54202
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
53828
54203
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
53829
54204
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -53926,6 +54301,12 @@ class Query(sgqlc.types.Type):
|
|
|
53926
54301
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
53927
54302
|
),
|
|
53928
54303
|
),
|
|
54304
|
+
(
|
|
54305
|
+
"sensitivities",
|
|
54306
|
+
sgqlc.types.Arg(
|
|
54307
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54308
|
+
),
|
|
54309
|
+
),
|
|
53929
54310
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
53930
54311
|
(
|
|
53931
54312
|
"domain_ids",
|
|
@@ -54064,6 +54445,8 @@ class Query(sgqlc.types.Type):
|
|
|
54064
54445
|
user emails
|
|
54065
54446
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54066
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
|
|
54067
54450
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54068
54451
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54069
54452
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54166,6 +54549,12 @@ class Query(sgqlc.types.Type):
|
|
|
54166
54549
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54167
54550
|
),
|
|
54168
54551
|
),
|
|
54552
|
+
(
|
|
54553
|
+
"sensitivities",
|
|
54554
|
+
sgqlc.types.Arg(
|
|
54555
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54556
|
+
),
|
|
54557
|
+
),
|
|
54169
54558
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54170
54559
|
(
|
|
54171
54560
|
"domain_ids",
|
|
@@ -54304,6 +54693,8 @@ class Query(sgqlc.types.Type):
|
|
|
54304
54693
|
user emails
|
|
54305
54694
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54306
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
|
|
54307
54698
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54308
54699
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54309
54700
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54406,6 +54797,12 @@ class Query(sgqlc.types.Type):
|
|
|
54406
54797
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54407
54798
|
),
|
|
54408
54799
|
),
|
|
54800
|
+
(
|
|
54801
|
+
"sensitivities",
|
|
54802
|
+
sgqlc.types.Arg(
|
|
54803
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
54804
|
+
),
|
|
54805
|
+
),
|
|
54409
54806
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54410
54807
|
(
|
|
54411
54808
|
"domain_ids",
|
|
@@ -54544,6 +54941,8 @@ class Query(sgqlc.types.Type):
|
|
|
54544
54941
|
user emails
|
|
54545
54942
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54546
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
|
|
54547
54946
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54548
54947
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54549
54948
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54646,6 +55045,12 @@ class Query(sgqlc.types.Type):
|
|
|
54646
55045
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54647
55046
|
),
|
|
54648
55047
|
),
|
|
55048
|
+
(
|
|
55049
|
+
"sensitivities",
|
|
55050
|
+
sgqlc.types.Arg(
|
|
55051
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55052
|
+
),
|
|
55053
|
+
),
|
|
54649
55054
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54650
55055
|
(
|
|
54651
55056
|
"domain_ids",
|
|
@@ -54784,6 +55189,8 @@ class Query(sgqlc.types.Type):
|
|
|
54784
55189
|
user emails
|
|
54785
55190
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
54786
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
|
|
54787
55194
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
54788
55195
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
54789
55196
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -54886,6 +55293,12 @@ class Query(sgqlc.types.Type):
|
|
|
54886
55293
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
54887
55294
|
),
|
|
54888
55295
|
),
|
|
55296
|
+
(
|
|
55297
|
+
"sensitivities",
|
|
55298
|
+
sgqlc.types.Arg(
|
|
55299
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55300
|
+
),
|
|
55301
|
+
),
|
|
54889
55302
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
54890
55303
|
(
|
|
54891
55304
|
"domain_ids",
|
|
@@ -55024,6 +55437,8 @@ class Query(sgqlc.types.Type):
|
|
|
55024
55437
|
user emails
|
|
55025
55438
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55026
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
|
|
55027
55442
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55028
55443
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55029
55444
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -55126,6 +55541,12 @@ class Query(sgqlc.types.Type):
|
|
|
55126
55541
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
55127
55542
|
),
|
|
55128
55543
|
),
|
|
55544
|
+
(
|
|
55545
|
+
"sensitivities",
|
|
55546
|
+
sgqlc.types.Arg(
|
|
55547
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55548
|
+
),
|
|
55549
|
+
),
|
|
55129
55550
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
55130
55551
|
(
|
|
55131
55552
|
"domain_ids",
|
|
@@ -55264,6 +55685,8 @@ class Query(sgqlc.types.Type):
|
|
|
55264
55685
|
user emails
|
|
55265
55686
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55266
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
|
|
55267
55690
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55268
55691
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55269
55692
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -55366,6 +55789,12 @@ class Query(sgqlc.types.Type):
|
|
|
55366
55789
|
sgqlc.types.list_of(String), graphql_name="priorities", default=None
|
|
55367
55790
|
),
|
|
55368
55791
|
),
|
|
55792
|
+
(
|
|
55793
|
+
"sensitivities",
|
|
55794
|
+
sgqlc.types.Arg(
|
|
55795
|
+
sgqlc.types.list_of(String), graphql_name="sensitivities", default=None
|
|
55796
|
+
),
|
|
55797
|
+
),
|
|
55369
55798
|
("domain_id", sgqlc.types.Arg(UUID, graphql_name="domainId", default=None)),
|
|
55370
55799
|
(
|
|
55371
55800
|
"domain_ids",
|
|
@@ -55504,6 +55933,8 @@ class Query(sgqlc.types.Type):
|
|
|
55504
55933
|
user emails
|
|
55505
55934
|
* `priorities` (`[String]`): Filter by priorities. It can include
|
|
55506
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
|
|
55507
55938
|
* `domain_id` (`UUID`): Domain uuid to filter by
|
|
55508
55939
|
* `domain_ids` (`[UUID!]`): List of domain uuids to filter by
|
|
55509
55940
|
* `uuids` (`[String]`): list of uuids of the monitors to filter by
|
|
@@ -65259,6 +65690,7 @@ class SearchResult(sgqlc.types.Type):
|
|
|
65259
65690
|
"is_muted",
|
|
65260
65691
|
"etl_type",
|
|
65261
65692
|
"supports_data_explorer",
|
|
65693
|
+
"dbt_project_name",
|
|
65262
65694
|
)
|
|
65263
65695
|
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
65264
65696
|
"""Monte Carlo full identifier for an entity"""
|
|
@@ -65346,6 +65778,9 @@ class SearchResult(sgqlc.types.Type):
|
|
|
65346
65778
|
supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
|
|
65347
65779
|
"""Whether the table supports data explorer"""
|
|
65348
65780
|
|
|
65781
|
+
dbt_project_name = sgqlc.types.Field(String, graphql_name="dbtProjectName")
|
|
65782
|
+
"""Name of the dbt project for dbt-job assets"""
|
|
65783
|
+
|
|
65349
65784
|
|
|
65350
65785
|
class SearchResultProperty(sgqlc.types.Type):
|
|
65351
65786
|
"""An individual label. Part of the SearchResult"""
|
|
@@ -67741,6 +68176,9 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
67741
68176
|
"created_by_id",
|
|
67742
68177
|
"distinct_mcons_count",
|
|
67743
68178
|
"notes",
|
|
68179
|
+
"uses_monitoring_filters_fallback",
|
|
68180
|
+
"ignored_routing_rules",
|
|
68181
|
+
"unexpanded_regex_patterns",
|
|
67744
68182
|
)
|
|
67745
68183
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
67746
68184
|
|
|
@@ -67782,6 +68220,20 @@ class TableMonitorSpec(sgqlc.types.Type):
|
|
|
67782
68220
|
|
|
67783
68221
|
notes = sgqlc.types.Field(String, graphql_name="notes")
|
|
67784
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
|
+
|
|
67785
68237
|
|
|
67786
68238
|
class TableMonitorStatus(sgqlc.types.Type):
|
|
67787
68239
|
__schema__ = schema
|
|
@@ -69705,7 +70157,13 @@ class TracePageInfo(sgqlc.types.Type):
|
|
|
69705
70157
|
"""PageInfo for trace pagination (Relay spec compliant)."""
|
|
69706
70158
|
|
|
69707
70159
|
__schema__ = schema
|
|
69708
|
-
__field_names__ = (
|
|
70160
|
+
__field_names__ = (
|
|
70161
|
+
"has_next_page",
|
|
70162
|
+
"has_previous_page",
|
|
70163
|
+
"start_cursor",
|
|
70164
|
+
"end_cursor",
|
|
70165
|
+
"total_count",
|
|
70166
|
+
)
|
|
69709
70167
|
has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasNextPage")
|
|
69710
70168
|
"""Whether there are more results after this page"""
|
|
69711
70169
|
|
|
@@ -69720,6 +70178,9 @@ class TracePageInfo(sgqlc.types.Type):
|
|
|
69720
70178
|
end_cursor = sgqlc.types.Field(String, graphql_name="endCursor")
|
|
69721
70179
|
"""Cursor of the last edge"""
|
|
69722
70180
|
|
|
70181
|
+
total_count = sgqlc.types.Field(Int, graphql_name="totalCount")
|
|
70182
|
+
"""Total number of results"""
|
|
70183
|
+
|
|
69723
70184
|
|
|
69724
70185
|
class TrackTablePayload(sgqlc.types.Type):
|
|
69725
70186
|
"""Add table to account's dashboard"""
|
|
@@ -70018,6 +70479,28 @@ class UCSTableMonitorConfigOutput(sgqlc.types.Type):
|
|
|
70018
70479
|
"""Detector freshness threshold"""
|
|
70019
70480
|
|
|
70020
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
|
+
|
|
70021
70504
|
class UnifiedUserAssignmentConnection(sgqlc.types.relay.Connection):
|
|
70022
70505
|
__schema__ = schema
|
|
70023
70506
|
__field_names__ = ("page_info", "edges")
|
|
@@ -70641,6 +71124,15 @@ class UpdatePineconeCredentialsV2Mutation(sgqlc.types.Type):
|
|
|
70641
71124
|
result = sgqlc.types.Field(UpdateCredentialsV2Result, graphql_name="result")
|
|
70642
71125
|
|
|
70643
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
|
+
|
|
70644
71136
|
class UpdatePowerBiCredentialsV2Mutation(sgqlc.types.Type):
|
|
70645
71137
|
"""Update credentials for an existing PowerBi connection. Note:
|
|
70646
71138
|
This mutation only uploads credentials and returns a temporary
|
|
@@ -74654,6 +75146,8 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
74654
75146
|
"notes",
|
|
74655
75147
|
"namespace",
|
|
74656
75148
|
"priority",
|
|
75149
|
+
"is_paused",
|
|
75150
|
+
"is_draft",
|
|
74657
75151
|
"created_time",
|
|
74658
75152
|
"monitor_name",
|
|
74659
75153
|
"last_update_time",
|
|
@@ -74677,6 +75171,12 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
74677
75171
|
priority = sgqlc.types.Field(MetricMonitoringModelPriority, graphql_name="priority")
|
|
74678
75172
|
"""Default priority for alerts involving this monitor"""
|
|
74679
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
|
+
|
|
74680
75180
|
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
74681
75181
|
"""When the monitor was first created"""
|
|
74682
75182
|
|
|
@@ -74962,8 +75462,8 @@ class CustomRule(sgqlc.types.Type, Node):
|
|
|
74962
75462
|
is_paused = sgqlc.types.Field(Boolean, graphql_name="isPaused")
|
|
74963
75463
|
"""True if rule is paused"""
|
|
74964
75464
|
|
|
74965
|
-
is_draft = sgqlc.types.Field(
|
|
74966
|
-
"""
|
|
75465
|
+
is_draft = sgqlc.types.Field(Boolean, graphql_name="isDraft")
|
|
75466
|
+
"""True if rule is a draft"""
|
|
74967
75467
|
|
|
74968
75468
|
rule_type = sgqlc.types.Field(CustomRuleModelRuleType, graphql_name="ruleType")
|
|
74969
75469
|
|
|
@@ -77555,7 +78055,6 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
77555
78055
|
"created_by",
|
|
77556
78056
|
"last_update_user",
|
|
77557
78057
|
"is_false_positive",
|
|
77558
|
-
"is_reintroduced",
|
|
77559
78058
|
"reason",
|
|
77560
78059
|
"metric",
|
|
77561
78060
|
"field",
|
|
@@ -77575,10 +78074,12 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
77575
78074
|
is_false_positive = sgqlc.types.Field(
|
|
77576
78075
|
sgqlc.types.non_null(Boolean), graphql_name="isFalsePositive"
|
|
77577
78076
|
)
|
|
78077
|
+
"""Deprecated - use 'reason' field instead. Whether the event is
|
|
78078
|
+
considered a false positive.
|
|
78079
|
+
"""
|
|
77578
78080
|
|
|
77579
|
-
|
|
77580
|
-
|
|
77581
|
-
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."""
|
|
77582
78083
|
|
|
77583
78084
|
metric = sgqlc.types.Field(String, graphql_name="metric")
|
|
77584
78085
|
|
|
@@ -78910,6 +79411,7 @@ class SlackChannelV2(sgqlc.types.Type, Node):
|
|
|
78910
79411
|
"channel_id",
|
|
78911
79412
|
"topic",
|
|
78912
79413
|
"purpose",
|
|
79414
|
+
"loading_start_time",
|
|
78913
79415
|
"created_time",
|
|
78914
79416
|
"team_id",
|
|
78915
79417
|
)
|
|
@@ -78928,6 +79430,9 @@ class SlackChannelV2(sgqlc.types.Type, Node):
|
|
|
78928
79430
|
purpose = sgqlc.types.Field(String, graphql_name="purpose")
|
|
78929
79431
|
"""The slack channel purpose"""
|
|
78930
79432
|
|
|
79433
|
+
loading_start_time = sgqlc.types.Field(DateTime, graphql_name="loadingStartTime")
|
|
79434
|
+
"""Timestamp when the channel was marked as loading"""
|
|
79435
|
+
|
|
78931
79436
|
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
78932
79437
|
"""The time this record was created."""
|
|
78933
79438
|
|
|
@@ -79179,6 +79684,7 @@ class TableMonitor(sgqlc.types.Type, Node):
|
|
|
79179
79684
|
"namespace",
|
|
79180
79685
|
"priority",
|
|
79181
79686
|
"is_paused",
|
|
79687
|
+
"is_draft",
|
|
79182
79688
|
"warehouse_uuid",
|
|
79183
79689
|
"monitor_name",
|
|
79184
79690
|
"deleted_by",
|
|
@@ -79229,6 +79735,9 @@ class TableMonitor(sgqlc.types.Type, Node):
|
|
|
79229
79735
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
79230
79736
|
"""Is this monitor paused?"""
|
|
79231
79737
|
|
|
79738
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
79739
|
+
"""Is this a draft monitor?"""
|
|
79740
|
+
|
|
79232
79741
|
warehouse_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="warehouseUuid")
|
|
79233
79742
|
|
|
79234
79743
|
monitor_name = sgqlc.types.Field(String, graphql_name="monitorName")
|
|
@@ -80958,6 +81467,7 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
80958
81467
|
"conditional_snooze",
|
|
80959
81468
|
"snooze_until_time",
|
|
80960
81469
|
"is_paused",
|
|
81470
|
+
"is_draft",
|
|
80961
81471
|
"where_condition",
|
|
80962
81472
|
"use_partition_clause",
|
|
80963
81473
|
"namespace",
|
|
@@ -81086,6 +81596,8 @@ class UserDefinedMonitorV2(sgqlc.types.Type, Node):
|
|
|
81086
81596
|
|
|
81087
81597
|
is_paused = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isPaused")
|
|
81088
81598
|
|
|
81599
|
+
is_draft = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isDraft")
|
|
81600
|
+
|
|
81089
81601
|
where_condition = sgqlc.types.Field(String, graphql_name="whereCondition")
|
|
81090
81602
|
|
|
81091
81603
|
use_partition_clause = sgqlc.types.Field(
|
|
@@ -82151,6 +82663,7 @@ class LineageJobAttributes(sgqlc.types.Union):
|
|
|
82151
82663
|
LineageDbtJobAttributes,
|
|
82152
82664
|
LineageInformaticaJobAttributes,
|
|
82153
82665
|
LineageAzureDataFactoryJobAttributes,
|
|
82666
|
+
LineageFivetranJobAttributes,
|
|
82154
82667
|
)
|
|
82155
82668
|
|
|
82156
82669
|
|