pycarlo 0.10.235__py3-none-any.whl → 0.11.15__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pycarlo/features/metadata/__init__.py +20 -3
- pycarlo/features/metadata/asset_allow_block_list.py +22 -0
- pycarlo/features/metadata/asset_filters_container.py +79 -0
- pycarlo/features/metadata/base_allow_block_list.py +137 -0
- pycarlo/features/metadata/metadata_allow_block_list.py +94 -0
- pycarlo/features/metadata/metadata_filters_container.py +12 -7
- pycarlo/lib/schema.json +3369 -1063
- pycarlo/lib/schema.py +859 -10
- {pycarlo-0.10.235.dist-info → pycarlo-0.11.15.dist-info}/METADATA +1 -1
- {pycarlo-0.10.235.dist-info → pycarlo-0.11.15.dist-info}/RECORD +13 -10
- pycarlo/features/metadata/allow_block_list.py +0 -159
- {pycarlo-0.10.235.dist-info → pycarlo-0.11.15.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.235.dist-info → pycarlo-0.11.15.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.235.dist-info → pycarlo-0.11.15.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -659,6 +659,17 @@ class AlertsFilterFieldName(sgqlc.types.Enum):
|
|
|
659
659
|
)
|
|
660
660
|
|
|
661
661
|
|
|
662
|
+
class AssetCollectionRuleEffect(sgqlc.types.Enum):
|
|
663
|
+
"""Enumeration Choices:
|
|
664
|
+
|
|
665
|
+
* `allow`None
|
|
666
|
+
* `block`None
|
|
667
|
+
"""
|
|
668
|
+
|
|
669
|
+
__schema__ = schema
|
|
670
|
+
__choices__ = ("allow", "block")
|
|
671
|
+
|
|
672
|
+
|
|
662
673
|
class AssetFilterTableNameOperator(sgqlc.types.Enum):
|
|
663
674
|
"""Enumeration Choices:
|
|
664
675
|
|
|
@@ -1453,6 +1464,7 @@ class DataCollectorModelDeploymentTypeEnum(sgqlc.types.Enum):
|
|
|
1453
1464
|
class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
|
|
1454
1465
|
"""Enumeration Choices:
|
|
1455
1466
|
|
|
1467
|
+
* `AGENT_TRACE_TABLE_DELETED`: agent_trace_table_deleted
|
|
1456
1468
|
* `CONNECTION_DELETED`: connection_deleted
|
|
1457
1469
|
* `DEPRECATED_JOB_TYPE`: deprecated_job_type
|
|
1458
1470
|
* `MONITOR_DELETED`: monitor_deleted
|
|
@@ -1464,6 +1476,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
|
|
|
1464
1476
|
|
|
1465
1477
|
__schema__ = schema
|
|
1466
1478
|
__choices__ = (
|
|
1479
|
+
"AGENT_TRACE_TABLE_DELETED",
|
|
1467
1480
|
"CONNECTION_DELETED",
|
|
1468
1481
|
"DEPRECATED_JOB_TYPE",
|
|
1469
1482
|
"MONITOR_DELETED",
|
|
@@ -1980,6 +1993,18 @@ class EtlType(sgqlc.types.Enum):
|
|
|
1980
1993
|
__choices__ = ("AIRFLOW", "AZURE_DATA_FACTORY", "DATABRICKS", "DBT", "FIVETRAN", "INFORMATICA")
|
|
1981
1994
|
|
|
1982
1995
|
|
|
1996
|
+
class EventDetectorFeedbackModelReason(sgqlc.types.Enum):
|
|
1997
|
+
"""Enumeration Choices:
|
|
1998
|
+
|
|
1999
|
+
* `DETECTOR_MARKED_AS_NORMAL`: detector_marked_as_normal
|
|
2000
|
+
* `USER_MARKED_AS_NORMAL`: user_marked_as_normal
|
|
2001
|
+
* `USER_UNMARKED_AS_NORMAL`: user_unmarked_as_normal
|
|
2002
|
+
"""
|
|
2003
|
+
|
|
2004
|
+
__schema__ = schema
|
|
2005
|
+
__choices__ = ("DETECTOR_MARKED_AS_NORMAL", "USER_MARKED_AS_NORMAL", "USER_UNMARKED_AS_NORMAL")
|
|
2006
|
+
|
|
2007
|
+
|
|
1983
2008
|
class EventModelEventState(sgqlc.types.Enum):
|
|
1984
2009
|
"""Enumeration Choices:
|
|
1985
2010
|
|
|
@@ -5225,6 +5250,47 @@ class TimeRangeUnit(sgqlc.types.Enum):
|
|
|
5225
5250
|
__choices__ = ("DAY", "MONTH", "WEEK")
|
|
5226
5251
|
|
|
5227
5252
|
|
|
5253
|
+
class TraceSortDirection(sgqlc.types.Enum):
|
|
5254
|
+
"""Sort direction for traces.
|
|
5255
|
+
|
|
5256
|
+
Enumeration Choices:
|
|
5257
|
+
|
|
5258
|
+
* `ASC`None
|
|
5259
|
+
* `DESC`None
|
|
5260
|
+
"""
|
|
5261
|
+
|
|
5262
|
+
__schema__ = schema
|
|
5263
|
+
__choices__ = ("ASC", "DESC")
|
|
5264
|
+
|
|
5265
|
+
|
|
5266
|
+
class TraceSortField(sgqlc.types.Enum):
|
|
5267
|
+
"""Fields that can be used for sorting traces.
|
|
5268
|
+
|
|
5269
|
+
Enumeration Choices:
|
|
5270
|
+
|
|
5271
|
+
* `COMPLETION_TOKENS`None
|
|
5272
|
+
* `COUNT_LLM_CALLS`None
|
|
5273
|
+
* `DURATION_SECONDS`None
|
|
5274
|
+
* `PROMPT_TOKENS`None
|
|
5275
|
+
* `TOTAL_TOKENS`None
|
|
5276
|
+
* `TRACE_END_TIME`None
|
|
5277
|
+
* `TRACE_ID`None
|
|
5278
|
+
* `TRACE_START_TIME`None
|
|
5279
|
+
"""
|
|
5280
|
+
|
|
5281
|
+
__schema__ = schema
|
|
5282
|
+
__choices__ = (
|
|
5283
|
+
"COMPLETION_TOKENS",
|
|
5284
|
+
"COUNT_LLM_CALLS",
|
|
5285
|
+
"DURATION_SECONDS",
|
|
5286
|
+
"PROMPT_TOKENS",
|
|
5287
|
+
"TOTAL_TOKENS",
|
|
5288
|
+
"TRACE_END_TIME",
|
|
5289
|
+
"TRACE_ID",
|
|
5290
|
+
"TRACE_START_TIME",
|
|
5291
|
+
)
|
|
5292
|
+
|
|
5293
|
+
|
|
5228
5294
|
class TutorialStatusType(sgqlc.types.Enum):
|
|
5229
5295
|
"""Enumeration Choices:
|
|
5230
5296
|
|
|
@@ -5632,6 +5698,7 @@ class WebhookServiceTypes(sgqlc.types.Enum):
|
|
|
5632
5698
|
"""Enumeration Choices:
|
|
5633
5699
|
|
|
5634
5700
|
* `DATABRICKS`None
|
|
5701
|
+
* `GITLAB`None
|
|
5635
5702
|
* `JIRA`None
|
|
5636
5703
|
* `OPSGENIE`None
|
|
5637
5704
|
* `PAGERDUTY`None
|
|
@@ -5639,7 +5706,7 @@ class WebhookServiceTypes(sgqlc.types.Enum):
|
|
|
5639
5706
|
"""
|
|
5640
5707
|
|
|
5641
5708
|
__schema__ = schema
|
|
5642
|
-
__choices__ = ("DATABRICKS", "JIRA", "OPSGENIE", "PAGERDUTY", "SERVICENOW")
|
|
5709
|
+
__choices__ = ("DATABRICKS", "GITLAB", "JIRA", "OPSGENIE", "PAGERDUTY", "SERVICENOW")
|
|
5643
5710
|
|
|
5644
5711
|
|
|
5645
5712
|
class WidgetType(sgqlc.types.Enum):
|
|
@@ -5977,6 +6044,35 @@ class ApiCallReference(sgqlc.types.Input):
|
|
|
5977
6044
|
"""List of values for the parameter"""
|
|
5978
6045
|
|
|
5979
6046
|
|
|
6047
|
+
class AssetCollectionRuleConditionInput(sgqlc.types.Input):
|
|
6048
|
+
__schema__ = schema
|
|
6049
|
+
__field_names__ = ("attribute_name", "value", "comparison_type")
|
|
6050
|
+
attribute_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="attributeName")
|
|
6051
|
+
"""The name of the attribute to match"""
|
|
6052
|
+
|
|
6053
|
+
value = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="value")
|
|
6054
|
+
"""The value (or pattern) to compare the attribute against"""
|
|
6055
|
+
|
|
6056
|
+
comparison_type = sgqlc.types.Field(
|
|
6057
|
+
CollectionPreferenceMatchType, graphql_name="comparisonType"
|
|
6058
|
+
)
|
|
6059
|
+
"""The method for comparing the attribute to the given value"""
|
|
6060
|
+
|
|
6061
|
+
|
|
6062
|
+
class AssetCollectionRuleInput(sgqlc.types.Input):
|
|
6063
|
+
__schema__ = schema
|
|
6064
|
+
__field_names__ = ("conditions", "effect")
|
|
6065
|
+
conditions = sgqlc.types.Field(
|
|
6066
|
+
sgqlc.types.list_of(AssetCollectionRuleConditionInput), graphql_name="conditions"
|
|
6067
|
+
)
|
|
6068
|
+
"""The set of conditions that need to match in order for this rule to
|
|
6069
|
+
apply
|
|
6070
|
+
"""
|
|
6071
|
+
|
|
6072
|
+
effect = sgqlc.types.Field(AssetCollectionRuleEffect, graphql_name="effect")
|
|
6073
|
+
"""Whether to allow or block the asset when this rule matches."""
|
|
6074
|
+
|
|
6075
|
+
|
|
5980
6076
|
class AssetFilterUnionInput(sgqlc.types.Input):
|
|
5981
6077
|
__schema__ = schema
|
|
5982
6078
|
__field_names__ = (
|
|
@@ -7152,6 +7248,13 @@ class DbtCloudUpdateConnectionDetails(sgqlc.types.Input):
|
|
|
7152
7248
|
"""dbt cloud account ID"""
|
|
7153
7249
|
|
|
7154
7250
|
|
|
7251
|
+
class DeleteAgentTraceTableInput(sgqlc.types.Input):
|
|
7252
|
+
__schema__ = schema
|
|
7253
|
+
__field_names__ = ("uuid",)
|
|
7254
|
+
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
7255
|
+
"""UUID of the agent trace table to delete"""
|
|
7256
|
+
|
|
7257
|
+
|
|
7155
7258
|
class ExtendedDataSourceInput(sgqlc.types.Input):
|
|
7156
7259
|
__schema__ = schema
|
|
7157
7260
|
__field_names__ = (
|
|
@@ -7450,6 +7553,57 @@ class GetExplanationRequestType(sgqlc.types.Input):
|
|
|
7450
7553
|
"""End time range. By default, current time"""
|
|
7451
7554
|
|
|
7452
7555
|
|
|
7556
|
+
class GetTracesInput(sgqlc.types.Input):
|
|
7557
|
+
"""Input parameters for GetTraces query."""
|
|
7558
|
+
|
|
7559
|
+
__schema__ = schema
|
|
7560
|
+
__field_names__ = (
|
|
7561
|
+
"agent_name",
|
|
7562
|
+
"trace_table_mcon",
|
|
7563
|
+
"start_time",
|
|
7564
|
+
"end_time",
|
|
7565
|
+
"first",
|
|
7566
|
+
"after",
|
|
7567
|
+
"last",
|
|
7568
|
+
"before",
|
|
7569
|
+
"sort_field",
|
|
7570
|
+
"sort_direction",
|
|
7571
|
+
)
|
|
7572
|
+
agent_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="agentName")
|
|
7573
|
+
"""Agent name to filter by"""
|
|
7574
|
+
|
|
7575
|
+
trace_table_mcon = sgqlc.types.Field(
|
|
7576
|
+
sgqlc.types.non_null(String), graphql_name="traceTableMcon"
|
|
7577
|
+
)
|
|
7578
|
+
"""MCON of the trace table to query. Filters traces to only those
|
|
7579
|
+
from this table.
|
|
7580
|
+
"""
|
|
7581
|
+
|
|
7582
|
+
start_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startTime")
|
|
7583
|
+
"""Start of time range (inclusive)"""
|
|
7584
|
+
|
|
7585
|
+
end_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="endTime")
|
|
7586
|
+
"""End of time range (inclusive)"""
|
|
7587
|
+
|
|
7588
|
+
first = sgqlc.types.Field(Int, graphql_name="first")
|
|
7589
|
+
"""Number of records to fetch for forward pagination"""
|
|
7590
|
+
|
|
7591
|
+
after = sgqlc.types.Field(String, graphql_name="after")
|
|
7592
|
+
"""Cursor for forward pagination"""
|
|
7593
|
+
|
|
7594
|
+
last = sgqlc.types.Field(Int, graphql_name="last")
|
|
7595
|
+
"""Number of records to fetch for backward pagination"""
|
|
7596
|
+
|
|
7597
|
+
before = sgqlc.types.Field(String, graphql_name="before")
|
|
7598
|
+
"""Cursor for backward pagination"""
|
|
7599
|
+
|
|
7600
|
+
sort_field = sgqlc.types.Field(TraceSortField, graphql_name="sortField")
|
|
7601
|
+
"""Field to sort by"""
|
|
7602
|
+
|
|
7603
|
+
sort_direction = sgqlc.types.Field(TraceSortDirection, graphql_name="sortDirection")
|
|
7604
|
+
"""Sort direction"""
|
|
7605
|
+
|
|
7606
|
+
|
|
7453
7607
|
class GitlabNamespaceSelection(sgqlc.types.Input):
|
|
7454
7608
|
__schema__ = schema
|
|
7455
7609
|
__field_names__ = ("namespace_id", "select_all", "projects", "parents")
|
|
@@ -10367,6 +10521,13 @@ class WildcardTemplateInput(sgqlc.types.Input):
|
|
|
10367
10521
|
########################################################################
|
|
10368
10522
|
# Output Objects and Interfaces
|
|
10369
10523
|
########################################################################
|
|
10524
|
+
class AssetCollectionPreferenceNode(sgqlc.types.Interface):
|
|
10525
|
+
__schema__ = schema
|
|
10526
|
+
__field_names__ = ("id",)
|
|
10527
|
+
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
10528
|
+
"""The ID of the object."""
|
|
10529
|
+
|
|
10530
|
+
|
|
10370
10531
|
class AssetFilterInterface(sgqlc.types.Interface):
|
|
10371
10532
|
__schema__ = schema
|
|
10372
10533
|
__field_names__ = ("type", "negated")
|
|
@@ -11277,6 +11438,7 @@ class Account(sgqlc.types.Type):
|
|
|
11277
11438
|
"alation_integrations",
|
|
11278
11439
|
"slack_credentials_v2",
|
|
11279
11440
|
"collection_preferences",
|
|
11441
|
+
"asset_collection_preferences",
|
|
11280
11442
|
"data_products",
|
|
11281
11443
|
"opsgenie_integrations",
|
|
11282
11444
|
"collibra_integrations",
|
|
@@ -11287,6 +11449,7 @@ class Account(sgqlc.types.Type):
|
|
|
11287
11449
|
"widgets",
|
|
11288
11450
|
"identity_provider",
|
|
11289
11451
|
"tableau_accounts",
|
|
11452
|
+
"use_monitor_domains",
|
|
11290
11453
|
"active_collection_regions",
|
|
11291
11454
|
"internal_notifications",
|
|
11292
11455
|
"can_generate_data_collector_template",
|
|
@@ -11681,6 +11844,28 @@ class Account(sgqlc.types.Type):
|
|
|
11681
11844
|
* `last` (`Int`)None
|
|
11682
11845
|
"""
|
|
11683
11846
|
|
|
11847
|
+
asset_collection_preferences = sgqlc.types.Field(
|
|
11848
|
+
sgqlc.types.non_null("AssetCollectionPreferencesConnection"),
|
|
11849
|
+
graphql_name="assetCollectionPreferences",
|
|
11850
|
+
args=sgqlc.types.ArgDict(
|
|
11851
|
+
(
|
|
11852
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
11853
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
11854
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
11855
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
11856
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
11857
|
+
)
|
|
11858
|
+
),
|
|
11859
|
+
)
|
|
11860
|
+
"""Arguments:
|
|
11861
|
+
|
|
11862
|
+
* `offset` (`Int`)None
|
|
11863
|
+
* `before` (`String`)None
|
|
11864
|
+
* `after` (`String`)None
|
|
11865
|
+
* `first` (`Int`)None
|
|
11866
|
+
* `last` (`Int`)None
|
|
11867
|
+
"""
|
|
11868
|
+
|
|
11684
11869
|
data_products = sgqlc.types.Field(
|
|
11685
11870
|
sgqlc.types.non_null("DataProductConnection"),
|
|
11686
11871
|
graphql_name="dataProducts",
|
|
@@ -11831,6 +12016,9 @@ class Account(sgqlc.types.Type):
|
|
|
11831
12016
|
sgqlc.types.list_of("TableauAccount"), graphql_name="tableauAccounts"
|
|
11832
12017
|
)
|
|
11833
12018
|
|
|
12019
|
+
use_monitor_domains = sgqlc.types.Field(Boolean, graphql_name="useMonitorDomains")
|
|
12020
|
+
"""Indicates whether the account is using monitor domains"""
|
|
12021
|
+
|
|
11834
12022
|
active_collection_regions = sgqlc.types.Field(
|
|
11835
12023
|
sgqlc.types.list_of(String), graphql_name="activeCollectionRegions"
|
|
11836
12024
|
)
|
|
@@ -12761,6 +12949,23 @@ class AgentLogEntry(sgqlc.types.Type):
|
|
|
12761
12949
|
"""
|
|
12762
12950
|
|
|
12763
12951
|
|
|
12952
|
+
class AgentMetadata(sgqlc.types.Type):
|
|
12953
|
+
"""Metadata about AI agents for agent observability."""
|
|
12954
|
+
|
|
12955
|
+
__schema__ = schema
|
|
12956
|
+
__field_names__ = ("account_uuid", "agent_name", "trace_table_mcon")
|
|
12957
|
+
account_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="accountUuid")
|
|
12958
|
+
"""Account UUID"""
|
|
12959
|
+
|
|
12960
|
+
agent_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="agentName")
|
|
12961
|
+
"""Name of the agent"""
|
|
12962
|
+
|
|
12963
|
+
trace_table_mcon = sgqlc.types.Field(
|
|
12964
|
+
sgqlc.types.non_null(String), graphql_name="traceTableMcon"
|
|
12965
|
+
)
|
|
12966
|
+
"""MCON of the trace table associated with this agent"""
|
|
12967
|
+
|
|
12968
|
+
|
|
12764
12969
|
class AgentSpanFieldFilter(sgqlc.types.Type):
|
|
12765
12970
|
__schema__ = schema
|
|
12766
12971
|
__field_names__ = ("value",)
|
|
@@ -13483,6 +13688,94 @@ class AlertsFilterDataValue(sgqlc.types.Type):
|
|
|
13483
13688
|
"""
|
|
13484
13689
|
|
|
13485
13690
|
|
|
13691
|
+
class ApiUsageLimits(sgqlc.types.Type):
|
|
13692
|
+
__schema__ = schema
|
|
13693
|
+
__field_names__ = ("total_requests_per_day", "requests_per_second", "burst_limit")
|
|
13694
|
+
total_requests_per_day = sgqlc.types.Field(
|
|
13695
|
+
sgqlc.types.non_null(Int), graphql_name="totalRequestsPerDay"
|
|
13696
|
+
)
|
|
13697
|
+
|
|
13698
|
+
requests_per_second = sgqlc.types.Field(
|
|
13699
|
+
sgqlc.types.non_null(Float), graphql_name="requestsPerSecond"
|
|
13700
|
+
)
|
|
13701
|
+
|
|
13702
|
+
burst_limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="burstLimit")
|
|
13703
|
+
|
|
13704
|
+
|
|
13705
|
+
class ApiUsageResponse(sgqlc.types.Type):
|
|
13706
|
+
__schema__ = schema
|
|
13707
|
+
__field_names__ = ("limits", "usage")
|
|
13708
|
+
limits = sgqlc.types.Field(sgqlc.types.non_null(ApiUsageLimits), graphql_name="limits")
|
|
13709
|
+
|
|
13710
|
+
usage = sgqlc.types.Field(
|
|
13711
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("DailyUsage"))),
|
|
13712
|
+
graphql_name="usage",
|
|
13713
|
+
)
|
|
13714
|
+
|
|
13715
|
+
|
|
13716
|
+
class AssetCollectionPreferencesConnection(sgqlc.types.relay.Connection):
|
|
13717
|
+
__schema__ = schema
|
|
13718
|
+
__field_names__ = ("page_info", "edges")
|
|
13719
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null("PageInfo"), graphql_name="pageInfo")
|
|
13720
|
+
"""Pagination data for this connection."""
|
|
13721
|
+
|
|
13722
|
+
edges = sgqlc.types.Field(
|
|
13723
|
+
sgqlc.types.non_null(sgqlc.types.list_of("AssetCollectionPreferencesEdge")),
|
|
13724
|
+
graphql_name="edges",
|
|
13725
|
+
)
|
|
13726
|
+
"""Contains the nodes in this connection."""
|
|
13727
|
+
|
|
13728
|
+
|
|
13729
|
+
class AssetCollectionPreferencesEdge(sgqlc.types.Type):
|
|
13730
|
+
"""A Relay edge containing a `AssetCollectionPreferences` and its
|
|
13731
|
+
cursor.
|
|
13732
|
+
"""
|
|
13733
|
+
|
|
13734
|
+
__schema__ = schema
|
|
13735
|
+
__field_names__ = ("node", "cursor")
|
|
13736
|
+
node = sgqlc.types.Field("AssetCollectionPreferences", graphql_name="node")
|
|
13737
|
+
"""The item at the end of the edge"""
|
|
13738
|
+
|
|
13739
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cursor")
|
|
13740
|
+
"""A cursor for use in pagination"""
|
|
13741
|
+
|
|
13742
|
+
|
|
13743
|
+
class AssetCollectionRule(sgqlc.types.Type):
|
|
13744
|
+
"""Asset collection rule."""
|
|
13745
|
+
|
|
13746
|
+
__schema__ = schema
|
|
13747
|
+
__field_names__ = ("conditions", "effect")
|
|
13748
|
+
conditions = sgqlc.types.Field(
|
|
13749
|
+
sgqlc.types.non_null(sgqlc.types.list_of("AssetCollectionRuleCondition")),
|
|
13750
|
+
graphql_name="conditions",
|
|
13751
|
+
)
|
|
13752
|
+
"""The set of conditions that need to match in order for this rule to
|
|
13753
|
+
apply
|
|
13754
|
+
"""
|
|
13755
|
+
|
|
13756
|
+
effect = sgqlc.types.Field(
|
|
13757
|
+
sgqlc.types.non_null(AssetCollectionRuleEffect), graphql_name="effect"
|
|
13758
|
+
)
|
|
13759
|
+
"""Whether to allow or block the asset when this rule matches."""
|
|
13760
|
+
|
|
13761
|
+
|
|
13762
|
+
class AssetCollectionRuleCondition(sgqlc.types.Type):
|
|
13763
|
+
"""Asset collection rule condition."""
|
|
13764
|
+
|
|
13765
|
+
__schema__ = schema
|
|
13766
|
+
__field_names__ = ("attribute_name", "value", "comparison_type")
|
|
13767
|
+
attribute_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="attributeName")
|
|
13768
|
+
"""The name of the attribute to match"""
|
|
13769
|
+
|
|
13770
|
+
value = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="value")
|
|
13771
|
+
"""The value (or pattern) to compare the attribute against"""
|
|
13772
|
+
|
|
13773
|
+
comparison_type = sgqlc.types.Field(
|
|
13774
|
+
CollectionPreferenceMatchType, graphql_name="comparisonType"
|
|
13775
|
+
)
|
|
13776
|
+
"""The method for comparing the attribute to the given value"""
|
|
13777
|
+
|
|
13778
|
+
|
|
13486
13779
|
class AssetIncludeDatabase(sgqlc.types.Type):
|
|
13487
13780
|
__schema__ = schema
|
|
13488
13781
|
__field_names__ = ("name", "schemas")
|
|
@@ -17562,6 +17855,18 @@ class DODCriteriaOutput(sgqlc.types.Type):
|
|
|
17562
17855
|
"""Monitor tags filters."""
|
|
17563
17856
|
|
|
17564
17857
|
|
|
17858
|
+
class DailyUsage(sgqlc.types.Type):
|
|
17859
|
+
__schema__ = schema
|
|
17860
|
+
__field_names__ = ("date", "requests_used", "requests_remaining")
|
|
17861
|
+
date = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name="date")
|
|
17862
|
+
|
|
17863
|
+
requests_used = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="requestsUsed")
|
|
17864
|
+
|
|
17865
|
+
requests_remaining = sgqlc.types.Field(
|
|
17866
|
+
sgqlc.types.non_null(Int), graphql_name="requestsRemaining"
|
|
17867
|
+
)
|
|
17868
|
+
|
|
17869
|
+
|
|
17565
17870
|
class DataAssetDashboard(sgqlc.types.Type):
|
|
17566
17871
|
__schema__ = schema
|
|
17567
17872
|
__field_names__ = (
|
|
@@ -19364,6 +19669,13 @@ class DeleteAgent(sgqlc.types.Type):
|
|
|
19364
19669
|
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
19365
19670
|
|
|
19366
19671
|
|
|
19672
|
+
class DeleteAgentTraceTable(sgqlc.types.Type):
|
|
19673
|
+
__schema__ = schema
|
|
19674
|
+
__field_names__ = ("success",)
|
|
19675
|
+
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
19676
|
+
"""Whether the agent trace table was successfully deleted"""
|
|
19677
|
+
|
|
19678
|
+
|
|
19367
19679
|
class DeleteAlationIntegration(sgqlc.types.Type):
|
|
19368
19680
|
"""Delete Alation integration"""
|
|
19369
19681
|
|
|
@@ -19391,6 +19703,19 @@ class DeleteAllowListEntry(sgqlc.types.Type):
|
|
|
19391
19703
|
"""The dataset which was deleted."""
|
|
19392
19704
|
|
|
19393
19705
|
|
|
19706
|
+
class DeleteAssetCollectionPreferences(sgqlc.types.Type):
|
|
19707
|
+
__schema__ = schema
|
|
19708
|
+
__field_names__ = ("success", "resource_id", "asset_type")
|
|
19709
|
+
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
19710
|
+
"""Whether the mutation succeeded."""
|
|
19711
|
+
|
|
19712
|
+
resource_id = sgqlc.types.Field(UUID, graphql_name="resourceId")
|
|
19713
|
+
"""The resource UUID the preferences were removed from."""
|
|
19714
|
+
|
|
19715
|
+
asset_type = sgqlc.types.Field(String, graphql_name="assetType")
|
|
19716
|
+
"""The asset type that the preferences were removed for."""
|
|
19717
|
+
|
|
19718
|
+
|
|
19394
19719
|
class DeleteAudienceNotificationSetting(sgqlc.types.Type):
|
|
19395
19720
|
__schema__ = schema
|
|
19396
19721
|
__field_names__ = ("deleted",)
|
|
@@ -25954,6 +26279,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
25954
26279
|
__schema__ = schema
|
|
25955
26280
|
__field_names__ = (
|
|
25956
26281
|
"create_or_update_agent_trace_table",
|
|
26282
|
+
"delete_agent_trace_table",
|
|
25957
26283
|
"link_slack_app_installation",
|
|
25958
26284
|
"create_logs_integration",
|
|
25959
26285
|
"update_logs_integration",
|
|
@@ -26173,6 +26499,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
26173
26499
|
"add_allow_list_entry",
|
|
26174
26500
|
"delete_allow_list_entry",
|
|
26175
26501
|
"set_workspaces_allow_list_for_power_bi_reports_collection",
|
|
26502
|
+
"set_asset_collection_preferences",
|
|
26503
|
+
"delete_asset_collection_preferences",
|
|
26176
26504
|
"delete_data_maintenance_entry",
|
|
26177
26505
|
"create_or_update_data_maintenance_entry",
|
|
26178
26506
|
"create_data_maintenance_window_from_holidays",
|
|
@@ -26432,6 +26760,29 @@ class Mutation(sgqlc.types.Type):
|
|
|
26432
26760
|
* `input` (`CreateOrUpdateAgentTraceTableInput!`)None
|
|
26433
26761
|
"""
|
|
26434
26762
|
|
|
26763
|
+
delete_agent_trace_table = sgqlc.types.Field(
|
|
26764
|
+
DeleteAgentTraceTable,
|
|
26765
|
+
graphql_name="deleteAgentTraceTable",
|
|
26766
|
+
args=sgqlc.types.ArgDict(
|
|
26767
|
+
(
|
|
26768
|
+
(
|
|
26769
|
+
"input",
|
|
26770
|
+
sgqlc.types.Arg(
|
|
26771
|
+
sgqlc.types.non_null(DeleteAgentTraceTableInput),
|
|
26772
|
+
graphql_name="input",
|
|
26773
|
+
default=None,
|
|
26774
|
+
),
|
|
26775
|
+
),
|
|
26776
|
+
)
|
|
26777
|
+
),
|
|
26778
|
+
)
|
|
26779
|
+
"""(experimental) Delete an agent trace table
|
|
26780
|
+
|
|
26781
|
+
Arguments:
|
|
26782
|
+
|
|
26783
|
+
* `input` (`DeleteAgentTraceTableInput!`)None
|
|
26784
|
+
"""
|
|
26785
|
+
|
|
26435
26786
|
link_slack_app_installation = sgqlc.types.Field(
|
|
26436
26787
|
LinkSlackAppInstallation,
|
|
26437
26788
|
graphql_name="linkSlackAppInstallation",
|
|
@@ -34082,6 +34433,87 @@ class Mutation(sgqlc.types.Type):
|
|
|
34082
34433
|
handles the Power BI Reports collection.
|
|
34083
34434
|
"""
|
|
34084
34435
|
|
|
34436
|
+
set_asset_collection_preferences = sgqlc.types.Field(
|
|
34437
|
+
"SetAssetCollectionPreferences",
|
|
34438
|
+
graphql_name="setAssetCollectionPreferences",
|
|
34439
|
+
args=sgqlc.types.ArgDict(
|
|
34440
|
+
(
|
|
34441
|
+
(
|
|
34442
|
+
"asset_type",
|
|
34443
|
+
sgqlc.types.Arg(
|
|
34444
|
+
sgqlc.types.non_null(String), graphql_name="assetType", default=None
|
|
34445
|
+
),
|
|
34446
|
+
),
|
|
34447
|
+
(
|
|
34448
|
+
"default_effect",
|
|
34449
|
+
sgqlc.types.Arg(
|
|
34450
|
+
AssetCollectionRuleEffect, graphql_name="defaultEffect", default="allow"
|
|
34451
|
+
),
|
|
34452
|
+
),
|
|
34453
|
+
(
|
|
34454
|
+
"resource_id",
|
|
34455
|
+
sgqlc.types.Arg(
|
|
34456
|
+
sgqlc.types.non_null(UUID), graphql_name="resourceId", default=None
|
|
34457
|
+
),
|
|
34458
|
+
),
|
|
34459
|
+
(
|
|
34460
|
+
"rules",
|
|
34461
|
+
sgqlc.types.Arg(
|
|
34462
|
+
sgqlc.types.list_of(AssetCollectionRuleInput),
|
|
34463
|
+
graphql_name="rules",
|
|
34464
|
+
default=None,
|
|
34465
|
+
),
|
|
34466
|
+
),
|
|
34467
|
+
)
|
|
34468
|
+
),
|
|
34469
|
+
)
|
|
34470
|
+
"""(experimental) Sets rules for collection of a particular asset
|
|
34471
|
+
type.
|
|
34472
|
+
|
|
34473
|
+
Arguments:
|
|
34474
|
+
|
|
34475
|
+
* `asset_type` (`String!`): The asset type that these collection
|
|
34476
|
+
preferences will apply to (e.g. 'workbook', 'project' etc.)
|
|
34477
|
+
* `default_effect` (`AssetCollectionRuleEffect`): Whether to allow
|
|
34478
|
+
or block assets of this type when no rules match. (default:
|
|
34479
|
+
`"allow"`)
|
|
34480
|
+
* `resource_id` (`UUID!`): The resource UUID that these collection
|
|
34481
|
+
preferences will apply to.
|
|
34482
|
+
* `rules` (`[AssetCollectionRuleInput]`): The set of rules for
|
|
34483
|
+
collection of this asset type.
|
|
34484
|
+
"""
|
|
34485
|
+
|
|
34486
|
+
delete_asset_collection_preferences = sgqlc.types.Field(
|
|
34487
|
+
DeleteAssetCollectionPreferences,
|
|
34488
|
+
graphql_name="deleteAssetCollectionPreferences",
|
|
34489
|
+
args=sgqlc.types.ArgDict(
|
|
34490
|
+
(
|
|
34491
|
+
(
|
|
34492
|
+
"asset_type",
|
|
34493
|
+
sgqlc.types.Arg(
|
|
34494
|
+
sgqlc.types.non_null(String), graphql_name="assetType", default=None
|
|
34495
|
+
),
|
|
34496
|
+
),
|
|
34497
|
+
(
|
|
34498
|
+
"resource_id",
|
|
34499
|
+
sgqlc.types.Arg(
|
|
34500
|
+
sgqlc.types.non_null(UUID), graphql_name="resourceId", default=None
|
|
34501
|
+
),
|
|
34502
|
+
),
|
|
34503
|
+
)
|
|
34504
|
+
),
|
|
34505
|
+
)
|
|
34506
|
+
"""(experimental) Deletes rules for collection of a particular asset
|
|
34507
|
+
type.
|
|
34508
|
+
|
|
34509
|
+
Arguments:
|
|
34510
|
+
|
|
34511
|
+
* `asset_type` (`String!`): The asset type of the preferences to
|
|
34512
|
+
delete.
|
|
34513
|
+
* `resource_id` (`UUID!`): The resource UUID of the preferences to
|
|
34514
|
+
delete.
|
|
34515
|
+
"""
|
|
34516
|
+
|
|
34085
34517
|
delete_data_maintenance_entry = sgqlc.types.Field(
|
|
34086
34518
|
DeleteDataMaintenanceEntry,
|
|
34087
34519
|
graphql_name="deleteDataMaintenanceEntry",
|
|
@@ -45044,7 +45476,9 @@ class QueriedTable(sgqlc.types.Type):
|
|
|
45044
45476
|
class Query(sgqlc.types.Type):
|
|
45045
45477
|
__schema__ = schema
|
|
45046
45478
|
__field_names__ = (
|
|
45479
|
+
"get_agent_metadata",
|
|
45047
45480
|
"get_agent_trace_tables",
|
|
45481
|
+
"get_traces",
|
|
45048
45482
|
"get_table_monitor_metric",
|
|
45049
45483
|
"get_tables_for_coverage_dashboard",
|
|
45050
45484
|
"get_monitor_counts_by_creator",
|
|
@@ -45206,6 +45640,7 @@ class Query(sgqlc.types.Type):
|
|
|
45206
45640
|
"get_collection_block_list",
|
|
45207
45641
|
"get_allow_list",
|
|
45208
45642
|
"get_workspaces_allow_list_for_power_bi_reports_collection",
|
|
45643
|
+
"get_asset_collection_preferences",
|
|
45209
45644
|
"get_fivetran_connectors",
|
|
45210
45645
|
"get_pii_filtering_preferences",
|
|
45211
45646
|
"get_pii_filters",
|
|
@@ -45439,6 +45874,7 @@ class Query(sgqlc.types.Type):
|
|
|
45439
45874
|
"get_common_fields_v2",
|
|
45440
45875
|
"get_tsa_availability",
|
|
45441
45876
|
"get_user_settings",
|
|
45877
|
+
"get_shared_query",
|
|
45442
45878
|
"get_user",
|
|
45443
45879
|
"get_user_by_id",
|
|
45444
45880
|
"get_warehouses",
|
|
@@ -45477,6 +45913,7 @@ class Query(sgqlc.types.Type):
|
|
|
45477
45913
|
"get_event_onboarding_data",
|
|
45478
45914
|
"get_etl_containers",
|
|
45479
45915
|
"get_account_feature_flag_status",
|
|
45916
|
+
"get_api_usage",
|
|
45480
45917
|
"get_tables_upstream_counts",
|
|
45481
45918
|
"get_tutorial_state",
|
|
45482
45919
|
"get_data_lake_catalog_mappings",
|
|
@@ -45530,11 +45967,51 @@ class Query(sgqlc.types.Type):
|
|
|
45530
45967
|
"get_account_secret",
|
|
45531
45968
|
"get_account_secrets",
|
|
45532
45969
|
)
|
|
45970
|
+
get_agent_metadata = sgqlc.types.Field(
|
|
45971
|
+
sgqlc.types.list_of(AgentMetadata),
|
|
45972
|
+
graphql_name="getAgentMetadata",
|
|
45973
|
+
args=sgqlc.types.ArgDict(
|
|
45974
|
+
(("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),)
|
|
45975
|
+
),
|
|
45976
|
+
)
|
|
45977
|
+
"""(experimental) Get metadata about AI agents for agent
|
|
45978
|
+
observability
|
|
45979
|
+
|
|
45980
|
+
Arguments:
|
|
45981
|
+
|
|
45982
|
+
* `start_time` (`DateTime`): Filter spans with start_time >= this
|
|
45983
|
+
value
|
|
45984
|
+
"""
|
|
45985
|
+
|
|
45533
45986
|
get_agent_trace_tables = sgqlc.types.Field(
|
|
45534
45987
|
sgqlc.types.list_of("AgentTraceTable"), graphql_name="getAgentTraceTables"
|
|
45535
45988
|
)
|
|
45536
45989
|
"""(experimental) Get all agent trace tables"""
|
|
45537
45990
|
|
|
45991
|
+
get_traces = sgqlc.types.Field(
|
|
45992
|
+
"TraceConnection",
|
|
45993
|
+
graphql_name="getTraces",
|
|
45994
|
+
args=sgqlc.types.ArgDict(
|
|
45995
|
+
(
|
|
45996
|
+
(
|
|
45997
|
+
"input",
|
|
45998
|
+
sgqlc.types.Arg(
|
|
45999
|
+
sgqlc.types.non_null(GetTracesInput), graphql_name="input", default=None
|
|
46000
|
+
),
|
|
46001
|
+
),
|
|
46002
|
+
)
|
|
46003
|
+
),
|
|
46004
|
+
)
|
|
46005
|
+
"""(experimental) Get traces from the agent_spans table with
|
|
46006
|
+
bidirectional cursor-based pagination. Traces are aggregations of
|
|
46007
|
+
individual spans grouped by trace_id. Supports sorting by multiple
|
|
46008
|
+
fields and filtering by agent name and time range.
|
|
46009
|
+
|
|
46010
|
+
Arguments:
|
|
46011
|
+
|
|
46012
|
+
* `input` (`GetTracesInput!`)None
|
|
46013
|
+
"""
|
|
46014
|
+
|
|
45538
46015
|
get_table_monitor_metric = sgqlc.types.Field(
|
|
45539
46016
|
"TableMonitorMetric",
|
|
45540
46017
|
graphql_name="getTableMonitorMetric",
|
|
@@ -49865,6 +50342,34 @@ class Query(sgqlc.types.Type):
|
|
|
49865
50342
|
handles the Power BI Reports collection.
|
|
49866
50343
|
"""
|
|
49867
50344
|
|
|
50345
|
+
get_asset_collection_preferences = sgqlc.types.Field(
|
|
50346
|
+
AssetCollectionPreferencesConnection,
|
|
50347
|
+
graphql_name="getAssetCollectionPreferences",
|
|
50348
|
+
args=sgqlc.types.ArgDict(
|
|
50349
|
+
(
|
|
50350
|
+
("resource_id", sgqlc.types.Arg(UUID, graphql_name="resourceId", default=None)),
|
|
50351
|
+
("asset_type", sgqlc.types.Arg(String, graphql_name="assetType", default=None)),
|
|
50352
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
50353
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
50354
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
50355
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
50356
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
50357
|
+
)
|
|
50358
|
+
),
|
|
50359
|
+
)
|
|
50360
|
+
"""(experimental) Get asset collection preferences for my account.
|
|
50361
|
+
|
|
50362
|
+
Arguments:
|
|
50363
|
+
|
|
50364
|
+
* `resource_id` (`UUID`): Filter by resource id
|
|
50365
|
+
* `asset_type` (`String`): Filter by asset type
|
|
50366
|
+
* `offset` (`Int`)None
|
|
50367
|
+
* `before` (`String`)None
|
|
50368
|
+
* `after` (`String`)None
|
|
50369
|
+
* `first` (`Int`)None
|
|
50370
|
+
* `last` (`Int`)None
|
|
50371
|
+
"""
|
|
50372
|
+
|
|
49868
50373
|
get_fivetran_connectors = sgqlc.types.Field(
|
|
49869
50374
|
FivetranConnectorConnection,
|
|
49870
50375
|
graphql_name="getFivetranConnectors",
|
|
@@ -58097,12 +58602,6 @@ class Query(sgqlc.types.Type):
|
|
|
58097
58602
|
default=None,
|
|
58098
58603
|
),
|
|
58099
58604
|
),
|
|
58100
|
-
(
|
|
58101
|
-
"resource_types",
|
|
58102
|
-
sgqlc.types.Arg(
|
|
58103
|
-
sgqlc.types.list_of(String), graphql_name="resourceTypes", default=None
|
|
58104
|
-
),
|
|
58105
|
-
),
|
|
58106
58605
|
(
|
|
58107
58606
|
"warehouse_types",
|
|
58108
58607
|
sgqlc.types.Arg(
|
|
@@ -58164,9 +58663,6 @@ class Query(sgqlc.types.Type):
|
|
|
58164
58663
|
* `project_filter` (`ProjectFilterInput`): Project filter
|
|
58165
58664
|
* `dataset_filter` (`DatasetFilterInput`): Dataset filter
|
|
58166
58665
|
* `data_product_ids` (`[UUID!]`): Filter by data product IDs
|
|
58167
|
-
* `resource_types` (`[String]`): Filter by resource types
|
|
58168
|
-
(DEPRECATED, use warehouse_types, etl_types, or bi_types
|
|
58169
|
-
instead)
|
|
58170
58666
|
* `warehouse_types` (`[String]`): Filter by warehouse types
|
|
58171
58667
|
* `etl_types` (`[String]`): Filter by ETL types
|
|
58172
58668
|
* `bi_types` (`[String]`): Filter by BI types
|
|
@@ -59880,6 +60376,25 @@ class Query(sgqlc.types.Type):
|
|
|
59880
60376
|
* `keys` (`[String]!`): User setting's keys
|
|
59881
60377
|
"""
|
|
59882
60378
|
|
|
60379
|
+
get_shared_query = sgqlc.types.Field(
|
|
60380
|
+
"SharedQueryOutput",
|
|
60381
|
+
graphql_name="getSharedQuery",
|
|
60382
|
+
args=sgqlc.types.ArgDict(
|
|
60383
|
+
(
|
|
60384
|
+
(
|
|
60385
|
+
"key",
|
|
60386
|
+
sgqlc.types.Arg(sgqlc.types.non_null(String), graphql_name="key", default=None),
|
|
60387
|
+
),
|
|
60388
|
+
)
|
|
60389
|
+
),
|
|
60390
|
+
)
|
|
60391
|
+
"""(experimental) Get a shared API Explorer query
|
|
60392
|
+
|
|
60393
|
+
Arguments:
|
|
60394
|
+
|
|
60395
|
+
* `key` (`String!`): S3 object key of shared query file
|
|
60396
|
+
"""
|
|
60397
|
+
|
|
59883
60398
|
get_user = sgqlc.types.Field("User", graphql_name="getUser")
|
|
59884
60399
|
|
|
59885
60400
|
get_user_by_id = sgqlc.types.Field("User", graphql_name="getUserById")
|
|
@@ -61227,6 +61742,27 @@ class Query(sgqlc.types.Type):
|
|
|
61227
61742
|
* `feature` (`String!`): Name of the feature flag
|
|
61228
61743
|
"""
|
|
61229
61744
|
|
|
61745
|
+
get_api_usage = sgqlc.types.Field(
|
|
61746
|
+
ApiUsageResponse,
|
|
61747
|
+
graphql_name="getApiUsage",
|
|
61748
|
+
args=sgqlc.types.ArgDict(
|
|
61749
|
+
(
|
|
61750
|
+
("start_date", sgqlc.types.Arg(Date, graphql_name="startDate", default=None)),
|
|
61751
|
+
("end_date", sgqlc.types.Arg(Date, graphql_name="endDate", default=None)),
|
|
61752
|
+
)
|
|
61753
|
+
),
|
|
61754
|
+
)
|
|
61755
|
+
"""(experimental) Get API Gateway usage data for the account's API
|
|
61756
|
+
key
|
|
61757
|
+
|
|
61758
|
+
Arguments:
|
|
61759
|
+
|
|
61760
|
+
* `start_date` (`Date`): Start date for the usage query (defaults
|
|
61761
|
+
to current date)
|
|
61762
|
+
* `end_date` (`Date`): End date for the usage query (defaults to
|
|
61763
|
+
current date)
|
|
61764
|
+
"""
|
|
61765
|
+
|
|
61230
61766
|
get_tables_upstream_counts = sgqlc.types.Field(
|
|
61231
61767
|
sgqlc.types.list_of("TableUpstreamData"),
|
|
61232
61768
|
graphql_name="getTablesUpstreamCounts",
|
|
@@ -64558,6 +65094,18 @@ class SetAlertSeverity(sgqlc.types.Type):
|
|
|
64558
65094
|
"""The updated alert/incident"""
|
|
64559
65095
|
|
|
64560
65096
|
|
|
65097
|
+
class SetAssetCollectionPreferences(sgqlc.types.Type):
|
|
65098
|
+
__schema__ = schema
|
|
65099
|
+
__field_names__ = ("success", "asset_collection_preferences")
|
|
65100
|
+
success = sgqlc.types.Field(Boolean, graphql_name="success")
|
|
65101
|
+
"""Whether the mutation succeeded."""
|
|
65102
|
+
|
|
65103
|
+
asset_collection_preferences = sgqlc.types.Field(
|
|
65104
|
+
"AssetCollectionPreferences", graphql_name="assetCollectionPreferences"
|
|
65105
|
+
)
|
|
65106
|
+
"""The created or updated asset collection preferences."""
|
|
65107
|
+
|
|
65108
|
+
|
|
64561
65109
|
class SetAzureDevopsSourceSelections(sgqlc.types.Type):
|
|
64562
65110
|
__schema__ = schema
|
|
64563
65111
|
__field_names__ = ("success",)
|
|
@@ -64909,6 +65457,16 @@ class SetWorkspacesAllowListForPowerBiReportsCollection(sgqlc.types.Type):
|
|
|
64909
65457
|
"""Whether the mutation succeeded."""
|
|
64910
65458
|
|
|
64911
65459
|
|
|
65460
|
+
class SharedQueryOutput(sgqlc.types.Type):
|
|
65461
|
+
__schema__ = schema
|
|
65462
|
+
__field_names__ = ("query", "variables")
|
|
65463
|
+
query = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="query")
|
|
65464
|
+
"""GraphQL query"""
|
|
65465
|
+
|
|
65466
|
+
variables = sgqlc.types.Field(sgqlc.types.non_null(GenericScalar), graphql_name="variables")
|
|
65467
|
+
"""GraphQL query variables"""
|
|
65468
|
+
|
|
65469
|
+
|
|
64912
65470
|
class SheetDashboardRef(sgqlc.types.Type):
|
|
64913
65471
|
__schema__ = schema
|
|
64914
65472
|
__field_names__ = (
|
|
@@ -68161,6 +68719,137 @@ class TopQueryGroupsResponseType(sgqlc.types.Type):
|
|
|
68161
68719
|
)
|
|
68162
68720
|
|
|
68163
68721
|
|
|
68722
|
+
class Trace(sgqlc.types.Type):
|
|
68723
|
+
"""Traces from the agent_spans table."""
|
|
68724
|
+
|
|
68725
|
+
__schema__ = schema
|
|
68726
|
+
__field_names__ = (
|
|
68727
|
+
"agent_uuid",
|
|
68728
|
+
"agent_name",
|
|
68729
|
+
"trace_id",
|
|
68730
|
+
"trace_start_time",
|
|
68731
|
+
"trace_end_time",
|
|
68732
|
+
"ingest_start_time",
|
|
68733
|
+
"ingest_end_time",
|
|
68734
|
+
"duration_seconds",
|
|
68735
|
+
"prompt_tokens",
|
|
68736
|
+
"completion_tokens",
|
|
68737
|
+
"total_tokens",
|
|
68738
|
+
"count_llm_calls",
|
|
68739
|
+
"models",
|
|
68740
|
+
"workflows",
|
|
68741
|
+
"tasks",
|
|
68742
|
+
)
|
|
68743
|
+
agent_uuid = sgqlc.types.Field(UUID, graphql_name="agentUuid")
|
|
68744
|
+
"""Agent UUID (nullable for now, will be required in the future)"""
|
|
68745
|
+
|
|
68746
|
+
agent_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="agentName")
|
|
68747
|
+
"""Agent name"""
|
|
68748
|
+
|
|
68749
|
+
trace_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="traceId")
|
|
68750
|
+
"""Trace ID (hex-encoded)"""
|
|
68751
|
+
|
|
68752
|
+
trace_start_time = sgqlc.types.Field(
|
|
68753
|
+
sgqlc.types.non_null(DateTime), graphql_name="traceStartTime"
|
|
68754
|
+
)
|
|
68755
|
+
"""Earliest span start time in trace"""
|
|
68756
|
+
|
|
68757
|
+
trace_end_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="traceEndTime")
|
|
68758
|
+
"""Latest span end time in trace"""
|
|
68759
|
+
|
|
68760
|
+
ingest_start_time = sgqlc.types.Field(
|
|
68761
|
+
sgqlc.types.non_null(DateTime), graphql_name="ingestStartTime"
|
|
68762
|
+
)
|
|
68763
|
+
"""Earliest span ingest time in trace"""
|
|
68764
|
+
|
|
68765
|
+
ingest_end_time = sgqlc.types.Field(
|
|
68766
|
+
sgqlc.types.non_null(DateTime), graphql_name="ingestEndTime"
|
|
68767
|
+
)
|
|
68768
|
+
"""Latest span ingest time in trace"""
|
|
68769
|
+
|
|
68770
|
+
duration_seconds = sgqlc.types.Field(
|
|
68771
|
+
sgqlc.types.non_null(Float), graphql_name="durationSeconds"
|
|
68772
|
+
)
|
|
68773
|
+
"""Trace duration in seconds"""
|
|
68774
|
+
|
|
68775
|
+
prompt_tokens = sgqlc.types.Field(Int, graphql_name="promptTokens")
|
|
68776
|
+
"""Total prompt tokens"""
|
|
68777
|
+
|
|
68778
|
+
completion_tokens = sgqlc.types.Field(Int, graphql_name="completionTokens")
|
|
68779
|
+
"""Total completion tokens"""
|
|
68780
|
+
|
|
68781
|
+
total_tokens = sgqlc.types.Field(Int, graphql_name="totalTokens")
|
|
68782
|
+
"""Total tokens"""
|
|
68783
|
+
|
|
68784
|
+
count_llm_calls = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="countLlmCalls")
|
|
68785
|
+
"""Number of LLM calls in trace"""
|
|
68786
|
+
|
|
68787
|
+
models = sgqlc.types.Field(
|
|
68788
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
68789
|
+
graphql_name="models",
|
|
68790
|
+
)
|
|
68791
|
+
"""Unique models used in trace"""
|
|
68792
|
+
|
|
68793
|
+
workflows = sgqlc.types.Field(
|
|
68794
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
68795
|
+
graphql_name="workflows",
|
|
68796
|
+
)
|
|
68797
|
+
"""Unique workflows in trace"""
|
|
68798
|
+
|
|
68799
|
+
tasks = sgqlc.types.Field(
|
|
68800
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
68801
|
+
graphql_name="tasks",
|
|
68802
|
+
)
|
|
68803
|
+
"""Unique tasks in trace"""
|
|
68804
|
+
|
|
68805
|
+
|
|
68806
|
+
class TraceConnection(sgqlc.types.relay.Connection):
|
|
68807
|
+
"""Connection type for trace pagination."""
|
|
68808
|
+
|
|
68809
|
+
__schema__ = schema
|
|
68810
|
+
__field_names__ = ("edges", "page_info")
|
|
68811
|
+
edges = sgqlc.types.Field(
|
|
68812
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("TraceEdge"))),
|
|
68813
|
+
graphql_name="edges",
|
|
68814
|
+
)
|
|
68815
|
+
"""List of edges"""
|
|
68816
|
+
|
|
68817
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null("TracePageInfo"), graphql_name="pageInfo")
|
|
68818
|
+
"""Pagination information"""
|
|
68819
|
+
|
|
68820
|
+
|
|
68821
|
+
class TraceEdge(sgqlc.types.Type):
|
|
68822
|
+
"""Edge type for trace pagination."""
|
|
68823
|
+
|
|
68824
|
+
__schema__ = schema
|
|
68825
|
+
__field_names__ = ("node", "cursor")
|
|
68826
|
+
node = sgqlc.types.Field(sgqlc.types.non_null(Trace), graphql_name="node")
|
|
68827
|
+
"""The trace"""
|
|
68828
|
+
|
|
68829
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cursor")
|
|
68830
|
+
"""Cursor for this edge"""
|
|
68831
|
+
|
|
68832
|
+
|
|
68833
|
+
class TracePageInfo(sgqlc.types.Type):
|
|
68834
|
+
"""PageInfo for trace pagination (Relay spec compliant)."""
|
|
68835
|
+
|
|
68836
|
+
__schema__ = schema
|
|
68837
|
+
__field_names__ = ("has_next_page", "has_previous_page", "start_cursor", "end_cursor")
|
|
68838
|
+
has_next_page = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="hasNextPage")
|
|
68839
|
+
"""Whether there are more results after this page"""
|
|
68840
|
+
|
|
68841
|
+
has_previous_page = sgqlc.types.Field(
|
|
68842
|
+
sgqlc.types.non_null(Boolean), graphql_name="hasPreviousPage"
|
|
68843
|
+
)
|
|
68844
|
+
"""Whether there are more results before this page"""
|
|
68845
|
+
|
|
68846
|
+
start_cursor = sgqlc.types.Field(String, graphql_name="startCursor")
|
|
68847
|
+
"""Cursor of the first edge"""
|
|
68848
|
+
|
|
68849
|
+
end_cursor = sgqlc.types.Field(String, graphql_name="endCursor")
|
|
68850
|
+
"""Cursor of the last edge"""
|
|
68851
|
+
|
|
68852
|
+
|
|
68164
68853
|
class TrackTablePayload(sgqlc.types.Type):
|
|
68165
68854
|
"""Add table to account's dashboard"""
|
|
68166
68855
|
|
|
@@ -71378,6 +72067,45 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
|
|
|
71378
72067
|
"""URL of the alert"""
|
|
71379
72068
|
|
|
71380
72069
|
|
|
72070
|
+
class AssetCollectionPreferences(sgqlc.types.Type, AssetCollectionPreferenceNode):
|
|
72071
|
+
"""Describes assets with a defined metadata collection preference."""
|
|
72072
|
+
|
|
72073
|
+
__schema__ = schema
|
|
72074
|
+
__field_names__ = (
|
|
72075
|
+
"account",
|
|
72076
|
+
"resource",
|
|
72077
|
+
"asset_type",
|
|
72078
|
+
"default_effect",
|
|
72079
|
+
"rules",
|
|
72080
|
+
"created_by",
|
|
72081
|
+
"created_time",
|
|
72082
|
+
"last_updated_by",
|
|
72083
|
+
"updated_time",
|
|
72084
|
+
)
|
|
72085
|
+
account = sgqlc.types.Field(Account, graphql_name="account")
|
|
72086
|
+
|
|
72087
|
+
resource = sgqlc.types.Field("Resource", graphql_name="resource")
|
|
72088
|
+
|
|
72089
|
+
asset_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="assetType")
|
|
72090
|
+
"""The asset type that these collection preferences apply to"""
|
|
72091
|
+
|
|
72092
|
+
default_effect = sgqlc.types.Field(
|
|
72093
|
+
sgqlc.types.non_null(AssetCollectionRuleEffect), graphql_name="defaultEffect"
|
|
72094
|
+
)
|
|
72095
|
+
"""Whether to allow or block assets of this type when no rules match."""
|
|
72096
|
+
|
|
72097
|
+
rules = sgqlc.types.Field(sgqlc.types.list_of(AssetCollectionRule), graphql_name="rules")
|
|
72098
|
+
"""The set of rules for collection of this asset type."""
|
|
72099
|
+
|
|
72100
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
72101
|
+
|
|
72102
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
72103
|
+
|
|
72104
|
+
last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
|
|
72105
|
+
|
|
72106
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
72107
|
+
|
|
72108
|
+
|
|
71381
72109
|
class AssetFilterActivityRead(sgqlc.types.Type, AssetFilterInterface):
|
|
71382
72110
|
__schema__ = schema
|
|
71383
72111
|
__field_names__ = ("read_days",)
|
|
@@ -71622,6 +72350,8 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
71622
72350
|
"collection_preference_created_by",
|
|
71623
72351
|
"collection_preference_last_updated_by",
|
|
71624
72352
|
"collection_preference_deleted_by",
|
|
72353
|
+
"asset_collection_preference_created_by",
|
|
72354
|
+
"asset_collection_preference_last_updated_by",
|
|
71625
72355
|
"data_product_created_by",
|
|
71626
72356
|
"data_product_last_updated_by",
|
|
71627
72357
|
"data_product_deleted_by",
|
|
@@ -72532,6 +73262,50 @@ class AuthUser(sgqlc.types.Type, Node):
|
|
|
72532
73262
|
* `last` (`Int`)None
|
|
72533
73263
|
"""
|
|
72534
73264
|
|
|
73265
|
+
asset_collection_preference_created_by = sgqlc.types.Field(
|
|
73266
|
+
sgqlc.types.non_null(AssetCollectionPreferencesConnection),
|
|
73267
|
+
graphql_name="assetCollectionPreferenceCreatedBy",
|
|
73268
|
+
args=sgqlc.types.ArgDict(
|
|
73269
|
+
(
|
|
73270
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
73271
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
73272
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
73273
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
73274
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
73275
|
+
)
|
|
73276
|
+
),
|
|
73277
|
+
)
|
|
73278
|
+
"""Arguments:
|
|
73279
|
+
|
|
73280
|
+
* `offset` (`Int`)None
|
|
73281
|
+
* `before` (`String`)None
|
|
73282
|
+
* `after` (`String`)None
|
|
73283
|
+
* `first` (`Int`)None
|
|
73284
|
+
* `last` (`Int`)None
|
|
73285
|
+
"""
|
|
73286
|
+
|
|
73287
|
+
asset_collection_preference_last_updated_by = sgqlc.types.Field(
|
|
73288
|
+
sgqlc.types.non_null(AssetCollectionPreferencesConnection),
|
|
73289
|
+
graphql_name="assetCollectionPreferenceLastUpdatedBy",
|
|
73290
|
+
args=sgqlc.types.ArgDict(
|
|
73291
|
+
(
|
|
73292
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
73293
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
73294
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
73295
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
73296
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
73297
|
+
)
|
|
73298
|
+
),
|
|
73299
|
+
)
|
|
73300
|
+
"""Arguments:
|
|
73301
|
+
|
|
73302
|
+
* `offset` (`Int`)None
|
|
73303
|
+
* `before` (`String`)None
|
|
73304
|
+
* `after` (`String`)None
|
|
73305
|
+
* `first` (`Int`)None
|
|
73306
|
+
* `last` (`Int`)None
|
|
73307
|
+
"""
|
|
73308
|
+
|
|
72535
73309
|
data_product_created_by = sgqlc.types.Field(
|
|
72536
73310
|
sgqlc.types.non_null(DataProductConnection),
|
|
72537
73311
|
graphql_name="dataProductCreatedBy",
|
|
@@ -75894,6 +76668,8 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
75894
76668
|
"created_by",
|
|
75895
76669
|
"last_update_user",
|
|
75896
76670
|
"is_false_positive",
|
|
76671
|
+
"is_reintroduced",
|
|
76672
|
+
"reason",
|
|
75897
76673
|
"metric",
|
|
75898
76674
|
"field",
|
|
75899
76675
|
"where_condition",
|
|
@@ -75913,6 +76689,10 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
|
|
|
75913
76689
|
sgqlc.types.non_null(Boolean), graphql_name="isFalsePositive"
|
|
75914
76690
|
)
|
|
75915
76691
|
|
|
76692
|
+
is_reintroduced = sgqlc.types.Field(Boolean, graphql_name="isReintroduced")
|
|
76693
|
+
|
|
76694
|
+
reason = sgqlc.types.Field(EventDetectorFeedbackModelReason, graphql_name="reason")
|
|
76695
|
+
|
|
75916
76696
|
metric = sgqlc.types.Field(String, graphql_name="metric")
|
|
75917
76697
|
|
|
75918
76698
|
field = sgqlc.types.Field(String, graphql_name="field")
|
|
@@ -77092,6 +77872,7 @@ class Resource(sgqlc.types.Type, Node):
|
|
|
77092
77872
|
"last_update_user",
|
|
77093
77873
|
"last_update_time",
|
|
77094
77874
|
"collection_preferences",
|
|
77875
|
+
"asset_collection_preferences",
|
|
77095
77876
|
)
|
|
77096
77877
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
77097
77878
|
"""The resource id"""
|
|
@@ -77144,6 +77925,28 @@ class Resource(sgqlc.types.Type, Node):
|
|
|
77144
77925
|
* `last` (`Int`)None
|
|
77145
77926
|
"""
|
|
77146
77927
|
|
|
77928
|
+
asset_collection_preferences = sgqlc.types.Field(
|
|
77929
|
+
sgqlc.types.non_null(AssetCollectionPreferencesConnection),
|
|
77930
|
+
graphql_name="assetCollectionPreferences",
|
|
77931
|
+
args=sgqlc.types.ArgDict(
|
|
77932
|
+
(
|
|
77933
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
77934
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
77935
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
77936
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
77937
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
77938
|
+
)
|
|
77939
|
+
),
|
|
77940
|
+
)
|
|
77941
|
+
"""Arguments:
|
|
77942
|
+
|
|
77943
|
+
* `offset` (`Int`)None
|
|
77944
|
+
* `before` (`String`)None
|
|
77945
|
+
* `after` (`String`)None
|
|
77946
|
+
* `first` (`Int`)None
|
|
77947
|
+
* `last` (`Int`)None
|
|
77948
|
+
"""
|
|
77949
|
+
|
|
77147
77950
|
|
|
77148
77951
|
class ResponseMetadataMonitorRecommendations(sgqlc.types.Type, ResponseMetadataInterface):
|
|
77149
77952
|
__schema__ = schema
|
|
@@ -77926,6 +78729,8 @@ class User(sgqlc.types.Type, Node):
|
|
|
77926
78729
|
"collection_preference_created_by",
|
|
77927
78730
|
"collection_preference_last_updated_by",
|
|
77928
78731
|
"collection_preference_deleted_by",
|
|
78732
|
+
"asset_collection_preference_created_by",
|
|
78733
|
+
"asset_collection_preference_last_updated_by",
|
|
77929
78734
|
"data_product_created_by",
|
|
77930
78735
|
"data_product_last_updated_by",
|
|
77931
78736
|
"data_product_deleted_by",
|
|
@@ -78840,6 +79645,50 @@ class User(sgqlc.types.Type, Node):
|
|
|
78840
79645
|
* `last` (`Int`)None
|
|
78841
79646
|
"""
|
|
78842
79647
|
|
|
79648
|
+
asset_collection_preference_created_by = sgqlc.types.Field(
|
|
79649
|
+
sgqlc.types.non_null(AssetCollectionPreferencesConnection),
|
|
79650
|
+
graphql_name="assetCollectionPreferenceCreatedBy",
|
|
79651
|
+
args=sgqlc.types.ArgDict(
|
|
79652
|
+
(
|
|
79653
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
79654
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
79655
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
79656
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
79657
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
79658
|
+
)
|
|
79659
|
+
),
|
|
79660
|
+
)
|
|
79661
|
+
"""Arguments:
|
|
79662
|
+
|
|
79663
|
+
* `offset` (`Int`)None
|
|
79664
|
+
* `before` (`String`)None
|
|
79665
|
+
* `after` (`String`)None
|
|
79666
|
+
* `first` (`Int`)None
|
|
79667
|
+
* `last` (`Int`)None
|
|
79668
|
+
"""
|
|
79669
|
+
|
|
79670
|
+
asset_collection_preference_last_updated_by = sgqlc.types.Field(
|
|
79671
|
+
sgqlc.types.non_null(AssetCollectionPreferencesConnection),
|
|
79672
|
+
graphql_name="assetCollectionPreferenceLastUpdatedBy",
|
|
79673
|
+
args=sgqlc.types.ArgDict(
|
|
79674
|
+
(
|
|
79675
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
79676
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
79677
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
79678
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
79679
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
79680
|
+
)
|
|
79681
|
+
),
|
|
79682
|
+
)
|
|
79683
|
+
"""Arguments:
|
|
79684
|
+
|
|
79685
|
+
* `offset` (`Int`)None
|
|
79686
|
+
* `before` (`String`)None
|
|
79687
|
+
* `after` (`String`)None
|
|
79688
|
+
* `first` (`Int`)None
|
|
79689
|
+
* `last` (`Int`)None
|
|
79690
|
+
"""
|
|
79691
|
+
|
|
78843
79692
|
data_product_created_by = sgqlc.types.Field(
|
|
78844
79693
|
sgqlc.types.non_null(DataProductConnection),
|
|
78845
79694
|
graphql_name="dataProductCreatedBy",
|