pycarlo 0.10.194__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/lib/schema.py CHANGED
@@ -252,6 +252,30 @@ class AgentModelWrapperType(sgqlc.types.Enum):
252
252
  __choices__ = ("CLOUDFORMATION", "SNA_CONTAINER", "TERRAFORM")
253
253
 
254
254
 
255
+ class AgentTraceFormatEnum(sgqlc.types.Enum):
256
+ """Enum for agent trace format types.
257
+
258
+ Enumeration Choices:
259
+
260
+ * `STANDARD`None
261
+ * `STRANDS`None
262
+ """
263
+
264
+ __schema__ = schema
265
+ __choices__ = ("STANDARD", "STRANDS")
266
+
267
+
268
+ class AgentTraceTableModelSpanFormat(sgqlc.types.Enum):
269
+ """Enumeration Choices:
270
+
271
+ * `STANDARD`: standard
272
+ * `STRANDS`: strands
273
+ """
274
+
275
+ __schema__ = schema
276
+ __choices__ = ("STANDARD", "STRANDS")
277
+
278
+
255
279
  class AgentTypeEnum(sgqlc.types.Enum):
256
280
  """Enumeration Choices:
257
281
 
@@ -635,6 +659,17 @@ class AlertsFilterFieldName(sgqlc.types.Enum):
635
659
  )
636
660
 
637
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
+
638
673
  class AssetFilterTableNameOperator(sgqlc.types.Enum):
639
674
  """Enumeration Choices:
640
675
 
@@ -1429,6 +1464,7 @@ class DataCollectorModelDeploymentTypeEnum(sgqlc.types.Enum):
1429
1464
  class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1430
1465
  """Enumeration Choices:
1431
1466
 
1467
+ * `AGENT_TRACE_TABLE_DELETED`: agent_trace_table_deleted
1432
1468
  * `CONNECTION_DELETED`: connection_deleted
1433
1469
  * `DEPRECATED_JOB_TYPE`: deprecated_job_type
1434
1470
  * `MONITOR_DELETED`: monitor_deleted
@@ -1440,6 +1476,7 @@ class DataCollectorScheduleModelDeleteReason(sgqlc.types.Enum):
1440
1476
 
1441
1477
  __schema__ = schema
1442
1478
  __choices__ = (
1479
+ "AGENT_TRACE_TABLE_DELETED",
1443
1480
  "CONNECTION_DELETED",
1444
1481
  "DEPRECATED_JOB_TYPE",
1445
1482
  "MONITOR_DELETED",
@@ -1740,7 +1777,6 @@ class DecryptionServiceUpdateTypeEnum(sgqlc.types.Enum):
1740
1777
  class DenialReason(sgqlc.types.Enum):
1741
1778
  """Enumeration Choices:
1742
1779
 
1743
- * `AI_FEATURES_OFF`None
1744
1780
  * `ENTITLEMENTS`None
1745
1781
  * `INVALID_USER`None
1746
1782
  * `TROUBLESHOOTING_AGENT_OFF`None
@@ -1749,7 +1785,6 @@ class DenialReason(sgqlc.types.Enum):
1749
1785
 
1750
1786
  __schema__ = schema
1751
1787
  __choices__ = (
1752
- "AI_FEATURES_OFF",
1753
1788
  "ENTITLEMENTS",
1754
1789
  "INVALID_USER",
1755
1790
  "TROUBLESHOOTING_AGENT_OFF",
@@ -1769,6 +1804,19 @@ class DetectorStatus(sgqlc.types.Enum):
1769
1804
  __choices__ = ("ACTIVE", "INACTIVE", "TRAINING")
1770
1805
 
1771
1806
 
1807
+ class ETLAssetType(sgqlc.types.Enum):
1808
+ """Enum to distinguish between jobs and tasks
1809
+
1810
+ Enumeration Choices:
1811
+
1812
+ * `JOB`None
1813
+ * `TASK`None
1814
+ """
1815
+
1816
+ __schema__ = schema
1817
+ __choices__ = ("JOB", "TASK")
1818
+
1819
+
1772
1820
  class EdgeType(sgqlc.types.Enum):
1773
1821
  """Enumeration Choices:
1774
1822
 
@@ -1803,6 +1851,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1803
1851
  * `ADVANCED_SECURITY_V1_2`None
1804
1852
  * `API_CALLS`None
1805
1853
  * `AUDIT_LOGGING`None
1854
+ * `AUTH_GROUP_CONNECTION_RESTRICTION`None
1806
1855
  * `DATA_LAKES`None
1807
1856
  * `DATA_MESH`None
1808
1857
  * `EDW`None
@@ -1824,6 +1873,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1824
1873
  "ADVANCED_SECURITY_V1_2",
1825
1874
  "API_CALLS",
1826
1875
  "AUDIT_LOGGING",
1876
+ "AUTH_GROUP_CONNECTION_RESTRICTION",
1827
1877
  "DATA_LAKES",
1828
1878
  "DATA_MESH",
1829
1879
  "EDW",
@@ -1943,6 +1993,18 @@ class EtlType(sgqlc.types.Enum):
1943
1993
  __choices__ = ("AIRFLOW", "AZURE_DATA_FACTORY", "DATABRICKS", "DBT", "FIVETRAN", "INFORMATICA")
1944
1994
 
1945
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
+
1946
2008
  class EventModelEventState(sgqlc.types.Enum):
1947
2009
  """Enumeration Choices:
1948
2010
 
@@ -3171,6 +3233,7 @@ class InternalJobType(sgqlc.types.Enum):
3171
3233
  """Enumeration Choices:
3172
3234
 
3173
3235
  * `AGENT_REACHABILITY`None
3236
+ * `AGENT_SPANS`None
3174
3237
  * `DIRECT_LINEAGE`None
3175
3238
  * `ETL`None
3176
3239
  * `JSON_SCHEMA`None
@@ -3189,6 +3252,7 @@ class InternalJobType(sgqlc.types.Enum):
3189
3252
  __schema__ = schema
3190
3253
  __choices__ = (
3191
3254
  "AGENT_REACHABILITY",
3255
+ "AGENT_SPANS",
3192
3256
  "DIRECT_LINEAGE",
3193
3257
  "ETL",
3194
3258
  "JSON_SCHEMA",
@@ -4826,10 +4890,11 @@ class Status(sgqlc.types.Enum):
4826
4890
 
4827
4891
  * `NOTIFIED`None
4828
4892
  * `PENDING`None
4893
+ * `RESOLVED`None
4829
4894
  """
4830
4895
 
4831
4896
  __schema__ = schema
4832
- __choices__ = ("NOTIFIED", "PENDING")
4897
+ __choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
4833
4898
 
4834
4899
 
4835
4900
  class StorageEncryptionType(sgqlc.types.Enum):
@@ -5185,6 +5250,47 @@ class TimeRangeUnit(sgqlc.types.Enum):
5185
5250
  __choices__ = ("DAY", "MONTH", "WEEK")
5186
5251
 
5187
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
+
5188
5294
  class TutorialStatusType(sgqlc.types.Enum):
5189
5295
  """Enumeration Choices:
5190
5296
 
@@ -5592,6 +5698,7 @@ class WebhookServiceTypes(sgqlc.types.Enum):
5592
5698
  """Enumeration Choices:
5593
5699
 
5594
5700
  * `DATABRICKS`None
5701
+ * `GITLAB`None
5595
5702
  * `JIRA`None
5596
5703
  * `OPSGENIE`None
5597
5704
  * `PAGERDUTY`None
@@ -5599,7 +5706,7 @@ class WebhookServiceTypes(sgqlc.types.Enum):
5599
5706
  """
5600
5707
 
5601
5708
  __schema__ = schema
5602
- __choices__ = ("DATABRICKS", "JIRA", "OPSGENIE", "PAGERDUTY", "SERVICENOW")
5709
+ __choices__ = ("DATABRICKS", "GITLAB", "JIRA", "OPSGENIE", "PAGERDUTY", "SERVICENOW")
5603
5710
 
5604
5711
 
5605
5712
  class WidgetType(sgqlc.types.Enum):
@@ -5937,6 +6044,35 @@ class ApiCallReference(sgqlc.types.Input):
5937
6044
  """List of values for the parameter"""
5938
6045
 
5939
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
+
5940
6076
  class AssetFilterUnionInput(sgqlc.types.Input):
5941
6077
  __schema__ = schema
5942
6078
  __field_names__ = (
@@ -6408,6 +6544,22 @@ class ConnectionTestOptions(sgqlc.types.Input):
6408
6544
  """Specify tests to run (Redshift only)."""
6409
6545
 
6410
6546
 
6547
+ class CreateOrUpdateAgentTraceTableInput(sgqlc.types.Input):
6548
+ __schema__ = schema
6549
+ __field_names__ = ("uuid", "mcon", "connection_uuid", "span_format")
6550
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
6551
+ """UUID of existing agent trace table to update"""
6552
+
6553
+ mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
6554
+ """MCON of the table"""
6555
+
6556
+ connection_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="connectionUuid")
6557
+ """Connection UUID to query the table"""
6558
+
6559
+ span_format = sgqlc.types.Field(AgentTraceFormatEnum, graphql_name="spanFormat")
6560
+ """Format of spans in the table"""
6561
+
6562
+
6411
6563
  class CreatedByFilters(sgqlc.types.Input):
6412
6564
  __schema__ = schema
6413
6565
  __field_names__ = ("created_by", "is_template_managed", "namespace", "rule_name")
@@ -7096,6 +7248,13 @@ class DbtCloudUpdateConnectionDetails(sgqlc.types.Input):
7096
7248
  """dbt cloud account ID"""
7097
7249
 
7098
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
+
7099
7258
  class ExtendedDataSourceInput(sgqlc.types.Input):
7100
7259
  __schema__ = schema
7101
7260
  __field_names__ = (
@@ -7305,13 +7464,15 @@ class FilterUnionInput(sgqlc.types.Input):
7305
7464
 
7306
7465
  class FilterValueUnionInput(sgqlc.types.Input):
7307
7466
  __schema__ = schema
7308
- __field_names__ = ("literal", "sql", "field", "mcon", "type", "id")
7467
+ __field_names__ = ("literal", "sql", "field", "table", "mcon", "type", "id")
7309
7468
  literal = sgqlc.types.Field(String, graphql_name="literal")
7310
7469
 
7311
7470
  sql = sgqlc.types.Field(String, graphql_name="sql")
7312
7471
 
7313
7472
  field = sgqlc.types.Field(String, graphql_name="field")
7314
7473
 
7474
+ table = sgqlc.types.Field(String, graphql_name="table")
7475
+
7315
7476
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
7316
7477
 
7317
7478
  type = sgqlc.types.Field(sgqlc.types.non_null(FilterValueType), graphql_name="type")
@@ -7392,6 +7553,57 @@ class GetExplanationRequestType(sgqlc.types.Input):
7392
7553
  """End time range. By default, current time"""
7393
7554
 
7394
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
+
7395
7607
  class GitlabNamespaceSelection(sgqlc.types.Input):
7396
7608
  __schema__ = schema
7397
7609
  __field_names__ = ("namespace_id", "select_all", "projects", "parents")
@@ -8131,7 +8343,7 @@ class NotificationExtra(sgqlc.types.Input):
8131
8343
 
8132
8344
  include_incident_fields = sgqlc.types.Field(JSONString, graphql_name="includeIncidentFields")
8133
8345
  """Field-value pairs to include as additional fields (when creating
8134
- incidents in ServiceNow or JIRA)
8346
+ incidents in ServiceNow, Datadog or JIRA)
8135
8347
  """
8136
8348
 
8137
8349
  jira_project_id = sgqlc.types.Field(Int, graphql_name="jiraProjectId")
@@ -10309,6 +10521,13 @@ class WildcardTemplateInput(sgqlc.types.Input):
10309
10521
  ########################################################################
10310
10522
  # Output Objects and Interfaces
10311
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
+
10312
10531
  class AssetFilterInterface(sgqlc.types.Interface):
10313
10532
  __schema__ = schema
10314
10533
  __field_names__ = ("type", "negated")
@@ -11219,15 +11438,18 @@ class Account(sgqlc.types.Type):
11219
11438
  "alation_integrations",
11220
11439
  "slack_credentials_v2",
11221
11440
  "collection_preferences",
11441
+ "asset_collection_preferences",
11222
11442
  "data_products",
11223
11443
  "opsgenie_integrations",
11224
11444
  "collibra_integrations",
11445
+ "agenttracetablemodel_set",
11225
11446
  "entitlements",
11226
11447
  "dashboards",
11227
11448
  "comparison_dashboards",
11228
11449
  "widgets",
11229
11450
  "identity_provider",
11230
11451
  "tableau_accounts",
11452
+ "use_monitor_domains",
11231
11453
  "active_collection_regions",
11232
11454
  "internal_notifications",
11233
11455
  "can_generate_data_collector_template",
@@ -11622,6 +11844,28 @@ class Account(sgqlc.types.Type):
11622
11844
  * `last` (`Int`)None
11623
11845
  """
11624
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
+
11625
11869
  data_products = sgqlc.types.Field(
11626
11870
  sgqlc.types.non_null("DataProductConnection"),
11627
11871
  graphql_name="dataProducts",
@@ -11673,6 +11917,28 @@ class Account(sgqlc.types.Type):
11673
11917
  * `last` (`Int`)None
11674
11918
  """
11675
11919
 
11920
+ agenttracetablemodel_set = sgqlc.types.Field(
11921
+ sgqlc.types.non_null("AgentTraceTableConnection"),
11922
+ graphql_name="agenttracetablemodelSet",
11923
+ args=sgqlc.types.ArgDict(
11924
+ (
11925
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
11926
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
11927
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
11928
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
11929
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
11930
+ )
11931
+ ),
11932
+ )
11933
+ """Arguments:
11934
+
11935
+ * `offset` (`Int`)None
11936
+ * `before` (`String`)None
11937
+ * `after` (`String`)None
11938
+ * `first` (`Int`)None
11939
+ * `last` (`Int`)None
11940
+ """
11941
+
11676
11942
  entitlements = sgqlc.types.Field(
11677
11943
  sgqlc.types.list_of(EntitlementTypes), graphql_name="entitlements"
11678
11944
  )
@@ -11750,6 +12016,9 @@ class Account(sgqlc.types.Type):
11750
12016
  sgqlc.types.list_of("TableauAccount"), graphql_name="tableauAccounts"
11751
12017
  )
11752
12018
 
12019
+ use_monitor_domains = sgqlc.types.Field(Boolean, graphql_name="useMonitorDomains")
12020
+ """Indicates whether the account is using monitor domains"""
12021
+
11753
12022
  active_collection_regions = sgqlc.types.Field(
11754
12023
  sgqlc.types.list_of(String), graphql_name="activeCollectionRegions"
11755
12024
  )
@@ -12432,12 +12701,17 @@ class AdditionalMonitoredTablesCountOutput(sgqlc.types.Type):
12432
12701
  """Number of additional tables that would be monitored by"""
12433
12702
 
12434
12703
  __schema__ = schema
12435
- __field_names__ = ("count",)
12704
+ __field_names__ = ("count", "total_count")
12436
12705
  count = sgqlc.types.Field(Int, graphql_name="count")
12437
12706
  """Number of additional tables that would be monitored by current and
12438
12707
  new rules if applied
12439
12708
  """
12440
12709
 
12710
+ total_count = sgqlc.types.Field(Int, graphql_name="totalCount")
12711
+ """Total number of tables encapsulated by the rule (both currently
12712
+ monitored and unmonitored)
12713
+ """
12714
+
12441
12715
 
12442
12716
  class AdfJobConnection(sgqlc.types.relay.Connection):
12443
12717
  __schema__ = schema
@@ -12675,6 +12949,23 @@ class AgentLogEntry(sgqlc.types.Type):
12675
12949
  """
12676
12950
 
12677
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
+
12678
12969
  class AgentSpanFieldFilter(sgqlc.types.Type):
12679
12970
  __schema__ = schema
12680
12971
  __field_names__ = ("value",)
@@ -12723,6 +13014,30 @@ class AgentSpanTree(sgqlc.types.Type):
12723
13014
  query = sgqlc.types.Field(String, graphql_name="query")
12724
13015
 
12725
13016
 
13017
+ class AgentTraceTableConnection(sgqlc.types.relay.Connection):
13018
+ __schema__ = schema
13019
+ __field_names__ = ("page_info", "edges")
13020
+ page_info = sgqlc.types.Field(sgqlc.types.non_null("PageInfo"), graphql_name="pageInfo")
13021
+ """Pagination data for this connection."""
13022
+
13023
+ edges = sgqlc.types.Field(
13024
+ sgqlc.types.non_null(sgqlc.types.list_of("AgentTraceTableEdge")), graphql_name="edges"
13025
+ )
13026
+ """Contains the nodes in this connection."""
13027
+
13028
+
13029
+ class AgentTraceTableEdge(sgqlc.types.Type):
13030
+ """A Relay edge containing a `AgentTraceTable` and its cursor."""
13031
+
13032
+ __schema__ = schema
13033
+ __field_names__ = ("node", "cursor")
13034
+ node = sgqlc.types.Field("AgentTraceTable", graphql_name="node")
13035
+ """The item at the end of the edge"""
13036
+
13037
+ cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cursor")
13038
+ """A cursor for use in pagination"""
13039
+
13040
+
12726
13041
  class AggregatedMetricDataType(sgqlc.types.Type):
12727
13042
  __schema__ = schema
12728
13043
  __field_names__ = ("query_group", "metric_aggregation", "timestamp", "value")
@@ -12929,6 +13244,41 @@ class AirflowTaskEdge(sgqlc.types.Type):
12929
13244
  """A cursor for use in pagination"""
12930
13245
 
12931
13246
 
13247
+ class AirflowTaskRunAttempt(sgqlc.types.Type):
13248
+ """Individual attempt details for an Airflow task run"""
13249
+
13250
+ __schema__ = schema
13251
+ __field_names__ = (
13252
+ "attempt_number",
13253
+ "start_date",
13254
+ "end_date",
13255
+ "state",
13256
+ "success",
13257
+ "duration",
13258
+ "exception_message",
13259
+ )
13260
+ attempt_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="attemptNumber")
13261
+ """Attempt number"""
13262
+
13263
+ start_date = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startDate")
13264
+ """Attempt start time"""
13265
+
13266
+ end_date = sgqlc.types.Field(DateTime, graphql_name="endDate")
13267
+ """Attempt end time"""
13268
+
13269
+ state = sgqlc.types.Field(sgqlc.types.non_null(AirflowRunState), graphql_name="state")
13270
+ """Attempt state"""
13271
+
13272
+ success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="success")
13273
+ """Whether attempt succeeded"""
13274
+
13275
+ duration = sgqlc.types.Field(Float, graphql_name="duration")
13276
+ """Attempt duration in seconds"""
13277
+
13278
+ exception_message = sgqlc.types.Field(String, graphql_name="exceptionMessage")
13279
+ """Error message if failed"""
13280
+
13281
+
12932
13282
  class AirflowTaskRunConnection(sgqlc.types.relay.Connection):
12933
13283
  __schema__ = schema
12934
13284
  __field_names__ = ("page_info", "edges")
@@ -13338,6 +13688,94 @@ class AlertsFilterDataValue(sgqlc.types.Type):
13338
13688
  """
13339
13689
 
13340
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
+
13341
13779
  class AssetIncludeDatabase(sgqlc.types.Type):
13342
13780
  __schema__ = schema
13343
13781
  __field_names__ = ("name", "schemas")
@@ -13586,6 +14024,16 @@ class AudienceMonitorEdge(sgqlc.types.Type):
13586
14024
  """A cursor for use in pagination"""
13587
14025
 
13588
14026
 
14027
+ class AudienceRef(sgqlc.types.Type):
14028
+ __schema__ = schema
14029
+ __field_names__ = ("uuid", "label")
14030
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
14031
+ """Audience UUID"""
14032
+
14033
+ label = sgqlc.types.Field(String, graphql_name="label")
14034
+ """Audience label"""
14035
+
14036
+
13589
14037
  class AudienceRoutingStats(sgqlc.types.Type):
13590
14038
  __schema__ = schema
13591
14039
  __field_names__ = (
@@ -13662,6 +14110,7 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13662
14110
  "description",
13663
14111
  "users",
13664
14112
  "domain_restrictions",
14113
+ "connection_restrictions",
13665
14114
  "sso_group",
13666
14115
  "source",
13667
14116
  "is_membership_managed",
@@ -13703,6 +14152,12 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13703
14152
  )
13704
14153
  """List of domains this group is limited to."""
13705
14154
 
14155
+ connection_restrictions = sgqlc.types.Field(
14156
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("ConnectionRestriction"))),
14157
+ graphql_name="connectionRestrictions",
14158
+ )
14159
+ """List of connections this group is limited to."""
14160
+
13706
14161
  sso_group = sgqlc.types.Field(String, graphql_name="ssoGroup")
13707
14162
  """SSO group name to map this authorization group to"""
13708
14163
 
@@ -14019,7 +14474,15 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14019
14474
  """Output type for Azure DevOps integration."""
14020
14475
 
14021
14476
  __schema__ = schema
14022
- __field_names__ = ("integration_id", "integration_name", "organization")
14477
+ __field_names__ = (
14478
+ "integration_id",
14479
+ "integration_name",
14480
+ "organization",
14481
+ "created_time",
14482
+ "updated_time",
14483
+ "created_by",
14484
+ "last_update_user",
14485
+ )
14023
14486
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
14024
14487
  """The integration ID"""
14025
14488
 
@@ -14031,6 +14494,18 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14031
14494
  organization = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="organization")
14032
14495
  """Azure DevOps organization name"""
14033
14496
 
14497
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
14498
+ """When the integration was created"""
14499
+
14500
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
14501
+ """When the integration was last updated"""
14502
+
14503
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14504
+ """Who created the integration"""
14505
+
14506
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14507
+ """Who last updated the integration"""
14508
+
14034
14509
 
14035
14510
  class AzureDevOpsProjectOutput(sgqlc.types.Type):
14036
14511
  """Output type for Azure DevOps project."""
@@ -14238,6 +14713,10 @@ class BiContainer(sgqlc.types.Type):
14238
14713
  __schema__ = schema
14239
14714
  __field_names__ = (
14240
14715
  "id",
14716
+ "created_time",
14717
+ "updated_time",
14718
+ "created_by",
14719
+ "last_update_user",
14241
14720
  "deleted_at",
14242
14721
  "account",
14243
14722
  "uuid",
@@ -14248,6 +14727,16 @@ class BiContainer(sgqlc.types.Type):
14248
14727
  )
14249
14728
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
14250
14729
 
14730
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
14731
+
14732
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
14733
+
14734
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14735
+ """Creator"""
14736
+
14737
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14738
+ """Last updated by"""
14739
+
14251
14740
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
14252
14741
 
14253
14742
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -15091,6 +15580,7 @@ class CategorizedSearchResult(sgqlc.types.Type):
15091
15580
  "is_monitored",
15092
15581
  "is_muted",
15093
15582
  "etl_type",
15583
+ "supports_data_explorer",
15094
15584
  "category",
15095
15585
  "is_dynamic_schedule_supported",
15096
15586
  )
@@ -15179,6 +15669,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
15179
15669
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
15180
15670
  """ETL type of the job asset (if object_type=job)"""
15181
15671
 
15672
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
15673
+ """Whether the table supports data explorer"""
15674
+
15182
15675
  category = sgqlc.types.Field(SearchCategoryEnum, graphql_name="category")
15183
15676
  """Name of the category for the table like: RESOLVED TABLES, ALL
15184
15677
  TABLES etc
@@ -15675,12 +16168,15 @@ class Connection(sgqlc.types.Type):
15675
16168
  __schema__ = schema
15676
16169
  __field_names__ = (
15677
16170
  "id",
16171
+ "created_time",
16172
+ "updated_time",
16173
+ "created_by",
16174
+ "last_update_user",
15678
16175
  "deleted_at",
15679
16176
  "uuid",
15680
16177
  "type",
15681
16178
  "subtype",
15682
16179
  "name",
15683
- "account",
15684
16180
  "warehouse",
15685
16181
  "bi_container",
15686
16182
  "etl_container",
@@ -15695,6 +16191,7 @@ class Connection(sgqlc.types.Type):
15695
16191
  "is_active",
15696
16192
  "disabled_on",
15697
16193
  "dbt_projects",
16194
+ "account",
15698
16195
  "connection_identifier",
15699
16196
  "connection_identifiers",
15700
16197
  "job_errors",
@@ -15703,6 +16200,16 @@ class Connection(sgqlc.types.Type):
15703
16200
  )
15704
16201
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
15705
16202
 
16203
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
16204
+
16205
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
16206
+
16207
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
16208
+ """Creator"""
16209
+
16210
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
16211
+ """Last updated by"""
16212
+
15706
16213
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
15707
16214
 
15708
16215
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -15715,8 +16222,6 @@ class Connection(sgqlc.types.Type):
15715
16222
  name = sgqlc.types.Field(String, graphql_name="name")
15716
16223
  """Connection name"""
15717
16224
 
15718
- account = sgqlc.types.Field(Account, graphql_name="account")
15719
-
15720
16225
  warehouse = sgqlc.types.Field("Warehouse", graphql_name="warehouse")
15721
16226
 
15722
16227
  bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
@@ -15775,6 +16280,8 @@ class Connection(sgqlc.types.Type):
15775
16280
  * `last` (`Int`)None
15776
16281
  """
15777
16282
 
16283
+ account = sgqlc.types.Field(Account, graphql_name="account")
16284
+
15778
16285
  connection_identifier = sgqlc.types.Field(
15779
16286
  "ConnectionIdentifier", graphql_name="connectionIdentifier"
15780
16287
  )
@@ -16347,6 +16854,12 @@ class CreateOrUpdateAgentMonitor(sgqlc.types.Type):
16347
16854
  """SQL queries that will be run by the monitor on each execution."""
16348
16855
 
16349
16856
 
16857
+ class CreateOrUpdateAgentTraceTable(sgqlc.types.Type):
16858
+ __schema__ = schema
16859
+ __field_names__ = ("agent_trace_table",)
16860
+ agent_trace_table = sgqlc.types.Field("AgentTraceTable", graphql_name="agentTraceTable")
16861
+
16862
+
16350
16863
  class CreateOrUpdateAlationIntegration(sgqlc.types.Type):
16351
16864
  """Create or update Alation integration"""
16352
16865
 
@@ -16925,6 +17438,38 @@ class CreateWebexIntegration(sgqlc.types.Type):
16925
17438
  """The integration that was created"""
16926
17439
 
16927
17440
 
17441
+ class CreatorDimension(sgqlc.types.Type):
17442
+ __schema__ = schema
17443
+ __field_names__ = ("full_name", "email", "user_id")
17444
+ full_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="fullName")
17445
+
17446
+ email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="email")
17447
+
17448
+ user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="userId")
17449
+
17450
+
17451
+ class CreatorMonitorCount(sgqlc.types.Type):
17452
+ __schema__ = schema
17453
+ __field_names__ = ("creator", "count")
17454
+ creator = sgqlc.types.Field(sgqlc.types.non_null(CreatorDimension), graphql_name="creator")
17455
+
17456
+ count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
17457
+
17458
+
17459
+ class CreatorMonitorCountsResponse(sgqlc.types.Type):
17460
+ __schema__ = schema
17461
+ __field_names__ = ("results", "total_count", "offset", "limit")
17462
+ results = sgqlc.types.Field(
17463
+ sgqlc.types.non_null(sgqlc.types.list_of(CreatorMonitorCount)), graphql_name="results"
17464
+ )
17465
+
17466
+ total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
17467
+
17468
+ offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
17469
+
17470
+ limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
17471
+
17472
+
16928
17473
  class CustomComparisonMetric(sgqlc.types.Type):
16929
17474
  __schema__ = schema
16930
17475
  __field_names__ = ("uuid", "display_name", "source_sql_expression", "target_sql_expression")
@@ -17310,6 +17855,18 @@ class DODCriteriaOutput(sgqlc.types.Type):
17310
17855
  """Monitor tags filters."""
17311
17856
 
17312
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
+
17313
17870
  class DataAssetDashboard(sgqlc.types.Type):
17314
17871
  __schema__ = schema
17315
17872
  __field_names__ = (
@@ -17520,6 +18077,7 @@ class DataCollectorSchedule(sgqlc.types.Type):
17520
18077
  "queued_at",
17521
18078
  "metric_monitors",
17522
18079
  "custom_rules",
18080
+ "agent_trace_tables",
17523
18081
  )
17524
18082
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
17525
18083
 
@@ -17671,6 +18229,28 @@ class DataCollectorSchedule(sgqlc.types.Type):
17671
18229
  * `warehouse_uuid` (`UUID`)None
17672
18230
  """
17673
18231
 
18232
+ agent_trace_tables = sgqlc.types.Field(
18233
+ sgqlc.types.non_null(AgentTraceTableConnection),
18234
+ graphql_name="agentTraceTables",
18235
+ args=sgqlc.types.ArgDict(
18236
+ (
18237
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
18238
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
18239
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
18240
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
18241
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
18242
+ )
18243
+ ),
18244
+ )
18245
+ """Arguments:
18246
+
18247
+ * `offset` (`Int`)None
18248
+ * `before` (`String`)None
18249
+ * `after` (`String`)None
18250
+ * `first` (`Int`)None
18251
+ * `last` (`Int`)None
18252
+ """
18253
+
17674
18254
 
17675
18255
  class DataCollectorScheduleInfo(sgqlc.types.Type):
17676
18256
  """Detailed information about a data collector schedule"""
@@ -17958,6 +18538,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
17958
18538
  """Contains the nodes in this connection."""
17959
18539
 
17960
18540
 
18541
+ class DataProductDryRunTableCounts(sgqlc.types.Type):
18542
+ __schema__ = schema
18543
+ __field_names__ = (
18544
+ "total_asset_count",
18545
+ "total_asset_monitored_count",
18546
+ "total_asset_unmonitored_count",
18547
+ )
18548
+ total_asset_count = sgqlc.types.Field(Int, graphql_name="totalAssetCount")
18549
+ """Total count of assets that would be in the data product"""
18550
+
18551
+ total_asset_monitored_count = sgqlc.types.Field(Int, graphql_name="totalAssetMonitoredCount")
18552
+ """Total count of already monitored assets"""
18553
+
18554
+ total_asset_unmonitored_count = sgqlc.types.Field(
18555
+ Int, graphql_name="totalAssetUnmonitoredCount"
18556
+ )
18557
+ """Total count of yet unmonitored assets"""
18558
+
18559
+
17961
18560
  class DataProductEdge(sgqlc.types.Type):
17962
18561
  """A Relay edge containing a `DataProduct` and its cursor."""
17963
18562
 
@@ -18349,14 +18948,6 @@ class DatabricksNotebookLink(sgqlc.types.Type):
18349
18948
  """Source location used to create the notebook link."""
18350
18949
 
18351
18950
 
18352
- class DatabricksSqlWarehouseConnectionMigration(sgqlc.types.Type):
18353
- """Migrate an existing databricks connection to use a sql warehouse"""
18354
-
18355
- __schema__ = schema
18356
- __field_names__ = ("success",)
18357
- success = sgqlc.types.Field(Boolean, graphql_name="success")
18358
-
18359
-
18360
18951
  class DatabricksTaskConnection(sgqlc.types.relay.Connection):
18361
18952
  __schema__ = schema
18362
18953
  __field_names__ = ("page_info", "edges")
@@ -18421,7 +19012,16 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18421
19012
  """A Datadog integration"""
18422
19013
 
18423
19014
  __schema__ = schema
18424
- __field_names__ = ("integration_id", "integration_name", "site")
19015
+ __field_names__ = (
19016
+ "integration_id",
19017
+ "integration_name",
19018
+ "site",
19019
+ "default_incident_fields",
19020
+ "created_time",
19021
+ "updated_time",
19022
+ "created_by",
19023
+ "last_update_user",
19024
+ )
18425
19025
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
18426
19026
  """The integration ID"""
18427
19027
 
@@ -18433,6 +19033,45 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18433
19033
  site = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="site")
18434
19034
  """Datadog site (e.g. datadoghq.com)"""
18435
19035
 
19036
+ default_incident_fields = sgqlc.types.Field(JSONString, graphql_name="defaultIncidentFields")
19037
+ """Default values for Datadog incident fields"""
19038
+
19039
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
19040
+ """When the integration was created"""
19041
+
19042
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
19043
+ """When the integration was last updated"""
19044
+
19045
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
19046
+ """Who created the integration"""
19047
+
19048
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
19049
+ """Who last updated the integration"""
19050
+
19051
+
19052
+ class DatadogServiceOutput(sgqlc.types.Type):
19053
+ """A Datadog incident service"""
19054
+
19055
+ __schema__ = schema
19056
+ __field_names__ = ("id", "name")
19057
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
19058
+ """Datadog service id"""
19059
+
19060
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
19061
+ """Service name"""
19062
+
19063
+
19064
+ class DatadogTeamOutput(sgqlc.types.Type):
19065
+ """A Datadog incident team"""
19066
+
19067
+ __schema__ = schema
19068
+ __field_names__ = ("id", "name")
19069
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
19070
+ """Datadog team id"""
19071
+
19072
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
19073
+ """Team name"""
19074
+
18436
19075
 
18437
19076
  class DatadogUserOutput(sgqlc.types.Type):
18438
19077
  """A Datadog user"""
@@ -19030,6 +19669,13 @@ class DeleteAgent(sgqlc.types.Type):
19030
19669
  success = sgqlc.types.Field(Boolean, graphql_name="success")
19031
19670
 
19032
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
+
19033
19679
  class DeleteAlationIntegration(sgqlc.types.Type):
19034
19680
  """Delete Alation integration"""
19035
19681
 
@@ -19057,6 +19703,19 @@ class DeleteAllowListEntry(sgqlc.types.Type):
19057
19703
  """The dataset which was deleted."""
19058
19704
 
19059
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
+
19060
19719
  class DeleteAudienceNotificationSetting(sgqlc.types.Type):
19061
19720
  __schema__ = schema
19062
19721
  __field_names__ = ("deleted",)
@@ -19706,6 +20365,16 @@ class DomainOutput(sgqlc.types.Type):
19706
20365
  """
19707
20366
 
19708
20367
 
20368
+ class DomainRef(sgqlc.types.Type):
20369
+ __schema__ = schema
20370
+ __field_names__ = ("uuid", "name")
20371
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
20372
+ """Domain UUID"""
20373
+
20374
+ name = sgqlc.types.Field(String, graphql_name="name")
20375
+ """Domain label"""
20376
+
20377
+
19709
20378
  class DomainRestrictionConnection(sgqlc.types.relay.Connection):
19710
20379
  __schema__ = schema
19711
20380
  __field_names__ = ("page_info", "edges")
@@ -19847,6 +20516,24 @@ class Dynamic(sgqlc.types.Type):
19847
20516
  """Explanation if min/max is missing"""
19848
20517
 
19849
20518
 
20519
+ class ETLJobOrTaskSearchResult(sgqlc.types.Type):
20520
+ """Search result for ETL jobs and tasks"""
20521
+
20522
+ __schema__ = schema
20523
+ __field_names__ = ("mcon", "name", "etl_type", "asset_type")
20524
+ mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
20525
+ """Monte Carlo full identifier for an entity"""
20526
+
20527
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
20528
+ """Name of the job or task"""
20529
+
20530
+ etl_type = sgqlc.types.Field(sgqlc.types.non_null(EtlType), graphql_name="etlType")
20531
+ """ETL type (airflow, databricks, azure-data-factory, dbt)"""
20532
+
20533
+ asset_type = sgqlc.types.Field(sgqlc.types.non_null(ETLAssetType), graphql_name="assetType")
20534
+ """Whether this is a job or task"""
20535
+
20536
+
19850
20537
  class ETLJobsConnectionTypeConnection(sgqlc.types.relay.Connection):
19851
20538
  """Etl Jobs"""
19852
20539
 
@@ -19967,6 +20654,10 @@ class EtlContainer(sgqlc.types.Type):
19967
20654
  __schema__ = schema
19968
20655
  __field_names__ = (
19969
20656
  "id",
20657
+ "created_time",
20658
+ "updated_time",
20659
+ "created_by",
20660
+ "last_update_user",
19970
20661
  "deleted_at",
19971
20662
  "account",
19972
20663
  "uuid",
@@ -19993,6 +20684,16 @@ class EtlContainer(sgqlc.types.Type):
19993
20684
  )
19994
20685
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
19995
20686
 
20687
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
20688
+
20689
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
20690
+
20691
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
20692
+ """Creator"""
20693
+
20694
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
20695
+ """Last updated by"""
20696
+
19996
20697
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
19997
20698
 
19998
20699
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -20402,7 +21103,7 @@ class EventEdge(sgqlc.types.Type):
20402
21103
 
20403
21104
  class EventEvaluation(sgqlc.types.Type):
20404
21105
  __schema__ = schema
20405
- __field_names__ = ("field", "function", "prompt", "output_type")
21106
+ __field_names__ = ("field", "function", "prompt", "output_type", "sql_expression")
20406
21107
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
20407
21108
  """Field evaluated"""
20408
21109
 
@@ -20415,6 +21116,9 @@ class EventEvaluation(sgqlc.types.Type):
20415
21116
  output_type = sgqlc.types.Field(String, graphql_name="outputType")
20416
21117
  """Output type used in the evaluation"""
20417
21118
 
21119
+ sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
21120
+ """SQL expression used in the evaluation"""
21121
+
20418
21122
 
20419
21123
  class EventGroup(sgqlc.types.Type):
20420
21124
  __schema__ = schema
@@ -20898,6 +21602,9 @@ class FHEvent(sgqlc.types.Type):
20898
21602
  "historical_mean",
20899
21603
  "detector_feedback",
20900
21604
  "agg_time_interval",
21605
+ "event_type",
21606
+ "time_series_uuid",
21607
+ "parent_time_series_uuid",
20901
21608
  )
20902
21609
  event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
20903
21610
  """UUID of the anomaly event"""
@@ -20956,6 +21663,15 @@ class FHEvent(sgqlc.types.Type):
20956
21663
  timecomponent of the event timestamp should be ignored.
20957
21664
  """
20958
21665
 
21666
+ event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
21667
+ """Type of the event"""
21668
+
21669
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
21670
+ """Time series UUID"""
21671
+
21672
+ parent_time_series_uuid = sgqlc.types.Field(UUID, graphql_name="parentTimeSeriesUuid")
21673
+ """Parent time series UUID"""
21674
+
20959
21675
 
20960
21676
  class FHEvents(sgqlc.types.Type):
20961
21677
  __schema__ = schema
@@ -22660,6 +23376,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22660
23376
  "is_token_auth",
22661
23377
  "webhook_secret_defined",
22662
23378
  "webhook_secret_mismatch_detected",
23379
+ "created_time",
23380
+ "updated_time",
23381
+ "created_by",
23382
+ "last_updated_by",
22663
23383
  )
22664
23384
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
22665
23385
  """The integration ID"""
@@ -22704,6 +23424,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22704
23424
  the received payloads
22705
23425
  """
22706
23426
 
23427
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
23428
+ """When the integration was created"""
23429
+
23430
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
23431
+ """When the integration was last updated"""
23432
+
23433
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
23434
+ """Who created the integration"""
23435
+
23436
+ last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
23437
+ """Who last updated the integration"""
23438
+
22707
23439
 
22708
23440
  class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
22709
23441
  __schema__ = schema
@@ -23041,6 +23773,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23041
23773
  "exceptions_detail",
23042
23774
  "runtime_variables",
23043
23775
  "comparison_data_source_type",
23776
+ "table_monitor_warning",
23777
+ "size_collection_table_mcon",
23778
+ "size_collection_enabled",
23044
23779
  "total_invocations_count",
23045
23780
  "total_result_count",
23046
23781
  "total_execution_duration",
@@ -23080,6 +23815,19 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23080
23815
  )
23081
23816
  """Comparison Source type in the job execution"""
23082
23817
 
23818
+ table_monitor_warning = sgqlc.types.Field(Boolean, graphql_name="tableMonitorWarning")
23819
+ """True if this table monitor execution failure was treated as a
23820
+ warning and no failure notification was sent.
23821
+ """
23822
+
23823
+ size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
23824
+ """MCON of the table for size collection executions in table monitors"""
23825
+
23826
+ size_collection_enabled = sgqlc.types.Field(
23827
+ sgqlc.types.non_null(Boolean), graphql_name="sizeCollectionEnabled"
23828
+ )
23829
+ """True if size collection is enabled for the asset"""
23830
+
23083
23831
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23084
23832
  """Total number of invocations for the job execution. May be null if
23085
23833
  execution has not completed.
@@ -23256,6 +24004,7 @@ class LLMModel(sgqlc.types.Type):
23256
24004
  "category",
23257
24005
  "context_window",
23258
24006
  "regions",
24007
+ "default",
23259
24008
  )
23260
24009
  name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
23261
24010
 
@@ -23269,6 +24018,8 @@ class LLMModel(sgqlc.types.Type):
23269
24018
 
23270
24019
  regions = sgqlc.types.Field(GenericScalar, graphql_name="regions")
23271
24020
 
24021
+ default = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="default")
24022
+
23272
24023
 
23273
24024
  class LabelCount(sgqlc.types.Type):
23274
24025
  __schema__ = schema
@@ -24136,6 +24887,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24136
24887
  "webhook_url",
24137
24888
  "integration_type",
24138
24889
  "headers",
24890
+ "created_time",
24891
+ "updated_time",
24892
+ "created_by",
24893
+ "last_update_user",
24139
24894
  )
24140
24895
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
24141
24896
  """The integration ID"""
@@ -24154,6 +24909,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24154
24909
  headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
24155
24910
  """Header key/value to use when sending webhook request"""
24156
24911
 
24912
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
24913
+ """When the integration was created"""
24914
+
24915
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
24916
+ """When the integration was last updated"""
24917
+
24918
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
24919
+ """Who created the integration"""
24920
+
24921
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
24922
+ """Who last updated the integration"""
24923
+
24157
24924
 
24158
24925
  class LookerDashboardTileRef(sgqlc.types.Type):
24159
24926
  __schema__ = schema
@@ -25156,6 +25923,28 @@ class MonitorTable(sgqlc.types.Type):
25156
25923
  """List of MCONs for the tables with this identifier"""
25157
25924
 
25158
25925
 
25926
+ class MonitorTypeCount(sgqlc.types.Type):
25927
+ __schema__ = schema
25928
+ __field_names__ = ("monitor_type", "count")
25929
+ monitor_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorType")
25930
+
25931
+ count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
25932
+
25933
+
25934
+ class MonitorTypeCountsResponse(sgqlc.types.Type):
25935
+ __schema__ = schema
25936
+ __field_names__ = ("results", "total_count", "offset", "limit")
25937
+ results = sgqlc.types.Field(
25938
+ sgqlc.types.non_null(sgqlc.types.list_of(MonitorTypeCount)), graphql_name="results"
25939
+ )
25940
+
25941
+ total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
25942
+
25943
+ offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
25944
+
25945
+ limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
25946
+
25947
+
25159
25948
  class MonitorWarehouse(sgqlc.types.Type):
25160
25949
  """Warehouse assets referenced by monitors, grouped by name"""
25161
25950
 
@@ -25489,6 +26278,8 @@ class MsTeamsInstallationList(sgqlc.types.Type):
25489
26278
  class Mutation(sgqlc.types.Type):
25490
26279
  __schema__ = schema
25491
26280
  __field_names__ = (
26281
+ "create_or_update_agent_trace_table",
26282
+ "delete_agent_trace_table",
25492
26283
  "link_slack_app_installation",
25493
26284
  "create_logs_integration",
25494
26285
  "update_logs_integration",
@@ -25708,6 +26499,8 @@ class Mutation(sgqlc.types.Type):
25708
26499
  "add_allow_list_entry",
25709
26500
  "delete_allow_list_entry",
25710
26501
  "set_workspaces_allow_list_for_power_bi_reports_collection",
26502
+ "set_asset_collection_preferences",
26503
+ "delete_asset_collection_preferences",
25711
26504
  "delete_data_maintenance_entry",
25712
26505
  "create_or_update_data_maintenance_entry",
25713
26506
  "create_data_maintenance_window_from_holidays",
@@ -25899,7 +26692,6 @@ class Mutation(sgqlc.types.Type):
25899
26692
  "add_databricks_connection",
25900
26693
  "save_event_onboarding_data",
25901
26694
  "delete_event_onboarding_data",
25902
- "migrate_databricks_sql_warehouse",
25903
26695
  "toggle_account_feature",
25904
26696
  "set_tutorial_state",
25905
26697
  "set_data_lake_catalog_mappings",
@@ -25945,6 +26737,52 @@ class Mutation(sgqlc.types.Type):
25945
26737
  "update_account_secret",
25946
26738
  "delete_account_secret",
25947
26739
  )
26740
+ create_or_update_agent_trace_table = sgqlc.types.Field(
26741
+ CreateOrUpdateAgentTraceTable,
26742
+ graphql_name="createOrUpdateAgentTraceTable",
26743
+ args=sgqlc.types.ArgDict(
26744
+ (
26745
+ (
26746
+ "input",
26747
+ sgqlc.types.Arg(
26748
+ sgqlc.types.non_null(CreateOrUpdateAgentTraceTableInput),
26749
+ graphql_name="input",
26750
+ default=None,
26751
+ ),
26752
+ ),
26753
+ )
26754
+ ),
26755
+ )
26756
+ """(experimental) Create or update an agent trace table
26757
+
26758
+ Arguments:
26759
+
26760
+ * `input` (`CreateOrUpdateAgentTraceTableInput!`)None
26761
+ """
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
+
25948
26786
  link_slack_app_installation = sgqlc.types.Field(
25949
26787
  LinkSlackAppInstallation,
25950
26788
  graphql_name="linkSlackAppInstallation",
@@ -26129,6 +26967,10 @@ class Mutation(sgqlc.types.Type):
26129
26967
  sgqlc.types.non_null(String), graphql_name="applicationKey", default=None
26130
26968
  ),
26131
26969
  ),
26970
+ (
26971
+ "default_incident_fields",
26972
+ sgqlc.types.Arg(JSONString, graphql_name="defaultIncidentFields", default=None),
26973
+ ),
26132
26974
  (
26133
26975
  "integration_name",
26134
26976
  sgqlc.types.Arg(
@@ -26150,6 +26992,8 @@ class Mutation(sgqlc.types.Type):
26150
26992
 
26151
26993
  * `api_key` (`String!`): Datadog API key
26152
26994
  * `application_key` (`String!`): Datadog Application key
26995
+ * `default_incident_fields` (`JSONString`): Default values for
26996
+ Datadog incident fields
26153
26997
  * `integration_name` (`String!`): Identifying name
26154
26998
  * `site` (`String!`): Datadog site (e.g. datadoghq.com)
26155
26999
  """
@@ -26164,6 +27008,10 @@ class Mutation(sgqlc.types.Type):
26164
27008
  "application_key",
26165
27009
  sgqlc.types.Arg(String, graphql_name="applicationKey", default=None),
26166
27010
  ),
27011
+ (
27012
+ "default_incident_fields",
27013
+ sgqlc.types.Arg(JSONString, graphql_name="defaultIncidentFields", default=None),
27014
+ ),
26167
27015
  (
26168
27016
  "integration_id",
26169
27017
  sgqlc.types.Arg(
@@ -26191,6 +27039,8 @@ class Mutation(sgqlc.types.Type):
26191
27039
 
26192
27040
  * `api_key` (`String`): Datadog API key
26193
27041
  * `application_key` (`String`): Datadog Application key
27042
+ * `default_incident_fields` (`JSONString`): Default values for
27043
+ Datadog incident fields
26194
27044
  * `integration_id` (`UUID!`): The integration ID
26195
27045
  * `integration_name` (`String!`): Identifying name
26196
27046
  * `site` (`String!`): Datadog site (e.g. datadoghq.com)
@@ -26233,6 +27083,7 @@ class Mutation(sgqlc.types.Type):
26233
27083
  sgqlc.types.Arg(String, graphql_name="commanderEmail", default=None),
26234
27084
  ),
26235
27085
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
27086
+ ("fields", sgqlc.types.Arg(JSONString, graphql_name="fields", default=None)),
26236
27087
  (
26237
27088
  "integration_id",
26238
27089
  sgqlc.types.Arg(
@@ -26256,6 +27107,8 @@ class Mutation(sgqlc.types.Type):
26256
27107
  * `commander_email` (`String`): Email of the incident commander to
26257
27108
  assign
26258
27109
  * `description` (`String`): Description of the incident
27110
+ * `fields` (`JSONString`): Additional incident fields
27111
+ (key->value).
26259
27112
  * `integration_id` (`UUID!`): ID of the Datadog integration
26260
27113
  * `title` (`String!`): Title of the incident
26261
27114
  """
@@ -33580,6 +34433,87 @@ class Mutation(sgqlc.types.Type):
33580
34433
  handles the Power BI Reports collection.
33581
34434
  """
33582
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
+
33583
34517
  delete_data_maintenance_entry = sgqlc.types.Field(
33584
34518
  DeleteDataMaintenanceEntry,
33585
34519
  graphql_name="deleteDataMaintenanceEntry",
@@ -33603,6 +34537,7 @@ class Mutation(sgqlc.types.Type):
33603
34537
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33604
34538
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33605
34539
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
34540
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33606
34541
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33607
34542
  (
33608
34543
  "maintenance_type",
@@ -33611,6 +34546,7 @@ class Mutation(sgqlc.types.Type):
33611
34546
  ),
33612
34547
  ),
33613
34548
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
34549
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33614
34550
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33615
34551
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33616
34552
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33625,6 +34561,10 @@ class Mutation(sgqlc.types.Type):
33625
34561
  "time_series_uuid",
33626
34562
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33627
34563
  ),
34564
+ (
34565
+ "where_condition",
34566
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
34567
+ ),
33628
34568
  )
33629
34569
  ),
33630
34570
  )
@@ -33639,6 +34579,10 @@ class Mutation(sgqlc.types.Type):
33639
34579
  given
33640
34580
  * `end_time` (`DateTime`): Start period of data maintenance. If
33641
34581
  not set, all future data will be ignored until updated
34582
+ * `field` (`String`): Field to set maintenance period for. If set,
34583
+ the maintenance windows will only apply to the given field. Used
34584
+ for Monitor related windows only. Deprecated: Use
34585
+ time_series_uuid instead
33642
34586
  * `id` (`Int`): ID of existing data maintenance entry for updating
33643
34587
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33644
34588
  metrics for the object will be ignored
@@ -33647,6 +34591,10 @@ class Mutation(sgqlc.types.Type):
33647
34591
  'project', 'dataset' or any table type. Setting any type other
33648
34592
  than a table type will set the maintenance window for all
33649
34593
  matching tables.
34594
+ * `metric` (`String`): Metric to set maintenance period for. If
34595
+ set, the maintenance windows will only apply to the given
34596
+ metric. Used for Monitor related windows only. Deprecated: Use
34597
+ time_series_uuid instead
33650
34598
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33651
34599
  If set, the maintenance windows will only apply to the given
33652
34600
  monitor.
@@ -33661,6 +34609,10 @@ class Mutation(sgqlc.types.Type):
33661
34609
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33662
34610
  period for. If set, the maintenance windows will only apply to
33663
34611
  the given time series. Used for Monitor related windows only.
34612
+ * `where_condition` (`String`): Where condition to set maintenance
34613
+ period for. If set, the maintenance windows will only apply to
34614
+ the given where condition. Used for Monitor related windows
34615
+ only. Deprecated: Use time_series_uuid instead
33664
34616
  """
33665
34617
 
33666
34618
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -37779,6 +38731,14 @@ class Mutation(sgqlc.types.Type):
37779
38731
  graphql_name="createOrUpdateAuthorizationGroup",
37780
38732
  args=sgqlc.types.ArgDict(
37781
38733
  (
38734
+ (
38735
+ "connection_restriction_ids",
38736
+ sgqlc.types.Arg(
38737
+ sgqlc.types.list_of(UUID),
38738
+ graphql_name="connectionRestrictionIds",
38739
+ default=None,
38740
+ ),
38741
+ ),
37782
38742
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
37783
38743
  (
37784
38744
  "domain_restriction_ids",
@@ -37816,6 +38776,9 @@ class Mutation(sgqlc.types.Type):
37816
38776
 
37817
38777
  Arguments:
37818
38778
 
38779
+ * `connection_restriction_ids` (`[UUID]`): Optional list of
38780
+ connection UUIDs to restrict visibility to. If not provided,
38781
+ will clear/apply no restrictions.
37819
38782
  * `description` (`String`): Description/help text to help users
37820
38783
  understand the purpose of the group. If not provided on updates,
37821
38784
  will keep current value.
@@ -38855,6 +39818,12 @@ class Mutation(sgqlc.types.Type):
38855
39818
  sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
38856
39819
  ),
38857
39820
  ),
39821
+ (
39822
+ "integration_type",
39823
+ sgqlc.types.Arg(
39824
+ sgqlc.types.non_null(String), graphql_name="integrationType", default=None
39825
+ ),
39826
+ ),
38858
39827
  (
38859
39828
  "name",
38860
39829
  sgqlc.types.Arg(
@@ -38869,6 +39838,8 @@ class Mutation(sgqlc.types.Type):
38869
39838
  Arguments:
38870
39839
 
38871
39840
  * `integration_id` (`UUID!`): UUID of the integration to update.
39841
+ * `integration_type` (`String!`): Integration type for direct
39842
+ routing.
38872
39843
  * `name` (`String!`): Desired name.
38873
39844
  """
38874
39845
 
@@ -41231,43 +42202,6 @@ class Mutation(sgqlc.types.Type):
41231
42202
  )
41232
42203
  """Delete stored event onboarding configuration"""
41233
42204
 
41234
- migrate_databricks_sql_warehouse = sgqlc.types.Field(
41235
- DatabricksSqlWarehouseConnectionMigration,
41236
- graphql_name="migrateDatabricksSqlWarehouse",
41237
- args=sgqlc.types.ArgDict(
41238
- (
41239
- (
41240
- "connection_id",
41241
- sgqlc.types.Arg(
41242
- sgqlc.types.non_null(UUID), graphql_name="connectionId", default=None
41243
- ),
41244
- ),
41245
- (
41246
- "databricks_config",
41247
- sgqlc.types.Arg(
41248
- sgqlc.types.non_null(DatabricksSqlWarehouseInput),
41249
- graphql_name="databricksConfig",
41250
- default=None,
41251
- ),
41252
- ),
41253
- (
41254
- "should_validate",
41255
- sgqlc.types.Arg(Boolean, graphql_name="shouldValidate", default=False),
41256
- ),
41257
- )
41258
- ),
41259
- )
41260
- """Migrate an existing databricks connection to use a sql warehouse
41261
-
41262
- Arguments:
41263
-
41264
- * `connection_id` (`UUID!`): ID of the connection to migrate
41265
- * `databricks_config` (`DatabricksSqlWarehouseInput!`):
41266
- Configuration for the Databricks sql warehouse.
41267
- * `should_validate` (`Boolean`): Set to true to test changes
41268
- before saving (default: `false`)
41269
- """
41270
-
41271
42205
  toggle_account_feature = sgqlc.types.Field(
41272
42206
  "ToggleAccountFeature",
41273
42207
  graphql_name="toggleAccountFeature",
@@ -43814,6 +44748,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43814
44748
  "webhook_enabled",
43815
44749
  "webhook_url",
43816
44750
  "webhook_secret_defined",
44751
+ "created_time",
44752
+ "updated_time",
44753
+ "created_by",
44754
+ "last_update_user",
43817
44755
  "webhook_secret_mismatch_detected",
43818
44756
  )
43819
44757
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
@@ -43840,6 +44778,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43840
44778
  of webhook payloads sent by PagerDuty
43841
44779
  """
43842
44780
 
44781
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
44782
+ """When the integration was created"""
44783
+
44784
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
44785
+ """When the integration was last updated"""
44786
+
44787
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
44788
+ """Who created the integration"""
44789
+
44790
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
44791
+ """Who last updated the integration"""
44792
+
43843
44793
  webhook_secret_mismatch_detected = sgqlc.types.Field(
43844
44794
  Boolean, graphql_name="webhookSecretMismatchDetected"
43845
44795
  )
@@ -44526,8 +45476,13 @@ class QueriedTable(sgqlc.types.Type):
44526
45476
  class Query(sgqlc.types.Type):
44527
45477
  __schema__ = schema
44528
45478
  __field_names__ = (
45479
+ "get_agent_metadata",
45480
+ "get_agent_trace_tables",
45481
+ "get_traces",
44529
45482
  "get_table_monitor_metric",
44530
45483
  "get_tables_for_coverage_dashboard",
45484
+ "get_monitor_counts_by_creator",
45485
+ "get_monitor_counts_by_type",
44531
45486
  "get_logs_integrations",
44532
45487
  "generate_webhook_url",
44533
45488
  "get_user_id",
@@ -44556,6 +45511,8 @@ class Query(sgqlc.types.Type):
44556
45511
  "test_datadog_credentials",
44557
45512
  "get_datadog_integrations",
44558
45513
  "get_datadog_users",
45514
+ "get_datadog_teams",
45515
+ "get_datadog_services",
44559
45516
  "get_billing_credit_grants",
44560
45517
  "get_contract_commits",
44561
45518
  "get_billing_invoices",
@@ -44595,6 +45552,7 @@ class Query(sgqlc.types.Type):
44595
45552
  "get_etl_jobs",
44596
45553
  "get_etl_jobs_v2",
44597
45554
  "get_etl_tasks",
45555
+ "search_etl_jobs_and_tasks",
44598
45556
  "get_data_product",
44599
45557
  "get_data_product_v2",
44600
45558
  "get_data_products",
@@ -44606,6 +45564,7 @@ class Query(sgqlc.types.Type):
44606
45564
  "get_data_product_upstream_counts",
44607
45565
  "get_data_product_audiences",
44608
45566
  "get_top_warehouse_for_data_product_mcons",
45567
+ "get_data_product_dry_run_counts",
44609
45568
  "parse_query",
44610
45569
  "ping_data_collector",
44611
45570
  "get_ms_teams_integrations",
@@ -44681,6 +45640,7 @@ class Query(sgqlc.types.Type):
44681
45640
  "get_collection_block_list",
44682
45641
  "get_allow_list",
44683
45642
  "get_workspaces_allow_list_for_power_bi_reports_collection",
45643
+ "get_asset_collection_preferences",
44684
45644
  "get_fivetran_connectors",
44685
45645
  "get_pii_filtering_preferences",
44686
45646
  "get_pii_filters",
@@ -44914,6 +45874,7 @@ class Query(sgqlc.types.Type):
44914
45874
  "get_common_fields_v2",
44915
45875
  "get_tsa_availability",
44916
45876
  "get_user_settings",
45877
+ "get_shared_query",
44917
45878
  "get_user",
44918
45879
  "get_user_by_id",
44919
45880
  "get_warehouses",
@@ -44952,6 +45913,7 @@ class Query(sgqlc.types.Type):
44952
45913
  "get_event_onboarding_data",
44953
45914
  "get_etl_containers",
44954
45915
  "get_account_feature_flag_status",
45916
+ "get_api_usage",
44955
45917
  "get_tables_upstream_counts",
44956
45918
  "get_tutorial_state",
44957
45919
  "get_data_lake_catalog_mappings",
@@ -45005,6 +45967,51 @@ class Query(sgqlc.types.Type):
45005
45967
  "get_account_secret",
45006
45968
  "get_account_secrets",
45007
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
+
45986
+ get_agent_trace_tables = sgqlc.types.Field(
45987
+ sgqlc.types.list_of("AgentTraceTable"), graphql_name="getAgentTraceTables"
45988
+ )
45989
+ """(experimental) Get all agent trace tables"""
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
+
45008
46015
  get_table_monitor_metric = sgqlc.types.Field(
45009
46016
  "TableMonitorMetric",
45010
46017
  graphql_name="getTableMonitorMetric",
@@ -45097,6 +46104,85 @@ class Query(sgqlc.types.Type):
45097
46104
  * `data_product_ids` (`[UUID]`)None
45098
46105
  """
45099
46106
 
46107
+ get_monitor_counts_by_creator = sgqlc.types.Field(
46108
+ CreatorMonitorCountsResponse,
46109
+ graphql_name="getMonitorCountsByCreator",
46110
+ args=sgqlc.types.ArgDict(
46111
+ (
46112
+ (
46113
+ "domain_ids",
46114
+ sgqlc.types.Arg(
46115
+ sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
46116
+ ),
46117
+ ),
46118
+ (
46119
+ "tags",
46120
+ sgqlc.types.Arg(
46121
+ sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
46122
+ ),
46123
+ ),
46124
+ (
46125
+ "data_product_ids",
46126
+ sgqlc.types.Arg(
46127
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
46128
+ ),
46129
+ ),
46130
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
46131
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
46132
+ )
46133
+ ),
46134
+ )
46135
+ """(experimental) Get paginated monitor counts grouped by creator
46136
+
46137
+ Arguments:
46138
+
46139
+ * `domain_ids` (`[UUID]`)None
46140
+ * `tags` (`[TagKeyValuePairInput]`)None
46141
+ * `data_product_ids` (`[UUID]`)None
46142
+ * `offset` (`Int`)None (default: `0`)
46143
+ * `limit` (`Int`)None (default: `15`)
46144
+ """
46145
+
46146
+ get_monitor_counts_by_type = sgqlc.types.Field(
46147
+ MonitorTypeCountsResponse,
46148
+ graphql_name="getMonitorCountsByType",
46149
+ args=sgqlc.types.ArgDict(
46150
+ (
46151
+ (
46152
+ "domain_ids",
46153
+ sgqlc.types.Arg(
46154
+ sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
46155
+ ),
46156
+ ),
46157
+ (
46158
+ "tags",
46159
+ sgqlc.types.Arg(
46160
+ sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
46161
+ ),
46162
+ ),
46163
+ (
46164
+ "data_product_ids",
46165
+ sgqlc.types.Arg(
46166
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
46167
+ ),
46168
+ ),
46169
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
46170
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
46171
+ )
46172
+ ),
46173
+ )
46174
+ """(experimental) Get paginated monitor counts grouped by monitor
46175
+ type
46176
+
46177
+ Arguments:
46178
+
46179
+ * `domain_ids` (`[UUID]`)None
46180
+ * `tags` (`[TagKeyValuePairInput]`)None
46181
+ * `data_product_ids` (`[UUID]`)None
46182
+ * `offset` (`Int`)None (default: `0`)
46183
+ * `limit` (`Int`)None (default: `15`)
46184
+ """
46185
+
45100
46186
  get_logs_integrations = sgqlc.types.Field(
45101
46187
  sgqlc.types.list_of(LogsIntegrationOutput),
45102
46188
  graphql_name="getLogsIntegrations",
@@ -45587,10 +46673,12 @@ class Query(sgqlc.types.Type):
45587
46673
  args=sgqlc.types.ArgDict(
45588
46674
  (
45589
46675
  (
45590
- "warehouse_type",
45591
- sgqlc.types.Arg(
45592
- sgqlc.types.non_null(String), graphql_name="warehouseType", default=None
45593
- ),
46676
+ "warehouse_uuid",
46677
+ sgqlc.types.Arg(UUID, graphql_name="warehouseUuid", default=None),
46678
+ ),
46679
+ (
46680
+ "connection_type",
46681
+ sgqlc.types.Arg(String, graphql_name="connectionType", default=None),
45594
46682
  ),
45595
46683
  )
45596
46684
  ),
@@ -45600,8 +46688,10 @@ class Query(sgqlc.types.Type):
45600
46688
 
45601
46689
  Arguments:
45602
46690
 
45603
- * `warehouse_type` (`String!`): Filter by warehouse type
45604
- (snowflake, bigquery, databricks)
46691
+ * `warehouse_uuid` (`UUID`): Warehouse UUID. If provided, the
46692
+ connection type will be ignored.
46693
+ * `connection_type` (`String`): connection type, for example
46694
+ "snowflake", "bigquery", etc.
45605
46695
  """
45606
46696
 
45607
46697
  run_custom_query = sgqlc.types.Field(
@@ -45733,7 +46823,7 @@ class Query(sgqlc.types.Type):
45733
46823
  """
45734
46824
 
45735
46825
  get_datadog_integrations = sgqlc.types.Field(
45736
- sgqlc.types.list_of(DatadogIntegrationOutput),
46826
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogIntegrationOutput)),
45737
46827
  graphql_name="getDatadogIntegrations",
45738
46828
  args=sgqlc.types.ArgDict(
45739
46829
  (("integration_id", sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None)),)
@@ -45747,7 +46837,7 @@ class Query(sgqlc.types.Type):
45747
46837
  """
45748
46838
 
45749
46839
  get_datadog_users = sgqlc.types.Field(
45750
- sgqlc.types.list_of(DatadogUserOutput),
46840
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogUserOutput)),
45751
46841
  graphql_name="getDatadogUsers",
45752
46842
  args=sgqlc.types.ArgDict(
45753
46843
  (
@@ -45769,6 +46859,103 @@ class Query(sgqlc.types.Type):
45769
46859
  * `query` (`String`): A query to filter users
45770
46860
  """
45771
46861
 
46862
+ get_datadog_teams = sgqlc.types.Field(
46863
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogTeamOutput)),
46864
+ graphql_name="getDatadogTeams",
46865
+ args=sgqlc.types.ArgDict(
46866
+ (
46867
+ (
46868
+ "integration_id",
46869
+ sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None),
46870
+ ),
46871
+ (
46872
+ "integration_site",
46873
+ sgqlc.types.Arg(String, graphql_name="integrationSite", default=None),
46874
+ ),
46875
+ (
46876
+ "integration_api_key",
46877
+ sgqlc.types.Arg(String, graphql_name="integrationApiKey", default=None),
46878
+ ),
46879
+ (
46880
+ "integration_application_key",
46881
+ sgqlc.types.Arg(String, graphql_name="integrationApplicationKey", default=None),
46882
+ ),
46883
+ ("query", sgqlc.types.Arg(String, graphql_name="query", default=None)),
46884
+ (
46885
+ "ids",
46886
+ sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name="ids", default=None),
46887
+ ),
46888
+ ("page_number", sgqlc.types.Arg(Int, graphql_name="pageNumber", default=None)),
46889
+ ("page_size", sgqlc.types.Arg(Int, graphql_name="pageSize", default=None)),
46890
+ )
46891
+ ),
46892
+ )
46893
+ """(experimental) Get the list of Datadog incident teams. Either
46894
+ provide integration_id OR (integration_site, integration_api_key,
46895
+ integration_application_key) for testing credentials.
46896
+
46897
+ Arguments:
46898
+
46899
+ * `integration_id` (`UUID`): The integration ID (required if not
46900
+ using direct credentials)
46901
+ * `integration_site` (`String`): Datadog site (e.g. datadoghq.com)
46902
+ - for testing without integration
46903
+ * `integration_api_key` (`String`): Datadog API key - for testing
46904
+ without integration
46905
+ * `integration_application_key` (`String`): Datadog Application
46906
+ key - for testing without integration
46907
+ * `query` (`String`): A query to filter teams
46908
+ * `ids` (`[String]`): List of team ids to filter by
46909
+ * `page_number` (`Int`): Page number (default: 0)
46910
+ * `page_size` (`Int`): Page size (default: 100)
46911
+ """
46912
+
46913
+ get_datadog_services = sgqlc.types.Field(
46914
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogServiceOutput)),
46915
+ graphql_name="getDatadogServices",
46916
+ args=sgqlc.types.ArgDict(
46917
+ (
46918
+ (
46919
+ "integration_id",
46920
+ sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None),
46921
+ ),
46922
+ (
46923
+ "integration_site",
46924
+ sgqlc.types.Arg(String, graphql_name="integrationSite", default=None),
46925
+ ),
46926
+ (
46927
+ "integration_api_key",
46928
+ sgqlc.types.Arg(String, graphql_name="integrationApiKey", default=None),
46929
+ ),
46930
+ (
46931
+ "integration_application_key",
46932
+ sgqlc.types.Arg(String, graphql_name="integrationApplicationKey", default=None),
46933
+ ),
46934
+ ("query", sgqlc.types.Arg(String, graphql_name="query", default=None)),
46935
+ ("page_number", sgqlc.types.Arg(Int, graphql_name="pageNumber", default=None)),
46936
+ ("page_size", sgqlc.types.Arg(Int, graphql_name="pageSize", default=None)),
46937
+ )
46938
+ ),
46939
+ )
46940
+ """(experimental) Get the list of Datadog incident services. Either
46941
+ provide integration_id OR (integration_site, integration_api_key,
46942
+ integration_application_key) for testing credentials.
46943
+
46944
+ Arguments:
46945
+
46946
+ * `integration_id` (`UUID`): The integration ID (required if not
46947
+ using direct credentials)
46948
+ * `integration_site` (`String`): Datadog site (e.g. datadoghq.com)
46949
+ - for testing without integration
46950
+ * `integration_api_key` (`String`): Datadog API key - for testing
46951
+ without integration
46952
+ * `integration_application_key` (`String`): Datadog Application
46953
+ key - for testing without integration
46954
+ * `query` (`String`): A query to filter services
46955
+ * `page_number` (`Int`): Page number (default: 0)
46956
+ * `page_size` (`Int`): Page size (default: 100)
46957
+ """
46958
+
45772
46959
  get_billing_credit_grants = sgqlc.types.Field(
45773
46960
  BillingCreditGrantResults,
45774
46961
  graphql_name="getBillingCreditGrants",
@@ -46776,16 +47963,48 @@ class Query(sgqlc.types.Type):
46776
47963
  sgqlc.types.list_of(String), graphql_name="jobMcons", default=None
46777
47964
  ),
46778
47965
  ),
47966
+ (
47967
+ "task_mcons",
47968
+ sgqlc.types.Arg(
47969
+ sgqlc.types.list_of(String), graphql_name="taskMcons", default=None
47970
+ ),
47971
+ ),
46779
47972
  )
46780
47973
  ),
46781
47974
  )
46782
- """(experimental) Get ETL tasks for the given set of ETL Jobs
47975
+ """(experimental) Get ETL tasks for the given set of ETL Jobs or
47976
+ specific tasks by mcons
46783
47977
 
46784
47978
  Arguments:
46785
47979
 
46786
47980
  * `first` (`Int!`): Page size
46787
47981
  * `offset` (`Int!`): Page offset
46788
47982
  * `job_mcons` (`[String]`): Filter by job mcons
47983
+ * `task_mcons` (`[String]`): Filter by task mcons
47984
+ """
47985
+
47986
+ search_etl_jobs_and_tasks = sgqlc.types.Field(
47987
+ sgqlc.types.list_of(sgqlc.types.non_null(ETLJobOrTaskSearchResult)),
47988
+ graphql_name="searchEtlJobsAndTasks",
47989
+ args=sgqlc.types.ArgDict(
47990
+ (
47991
+ (
47992
+ "search",
47993
+ sgqlc.types.Arg(
47994
+ sgqlc.types.non_null(String), graphql_name="search", default=None
47995
+ ),
47996
+ ),
47997
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=50)),
47998
+ )
47999
+ ),
48000
+ )
48001
+ """(experimental) Search for ETL jobs and tasks by name across all
48002
+ types
48003
+
48004
+ Arguments:
48005
+
48006
+ * `search` (`String!`): Search string to filter by name
48007
+ * `limit` (`Int`): Maximum results to return (default: `50`)
46789
48008
  """
46790
48009
 
46791
48010
  get_data_product = sgqlc.types.Field(
@@ -47190,6 +48409,31 @@ class Query(sgqlc.types.Type):
47190
48409
  * `mcons` (`[String]!`): List of MCONs to analyze
47191
48410
  """
47192
48411
 
48412
+ get_data_product_dry_run_counts = sgqlc.types.Field(
48413
+ DataProductDryRunTableCounts,
48414
+ graphql_name="getDataProductDryRunCounts",
48415
+ args=sgqlc.types.ArgDict(
48416
+ (
48417
+ (
48418
+ "mcons",
48419
+ sgqlc.types.Arg(
48420
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
48421
+ graphql_name="mcons",
48422
+ default=None,
48423
+ ),
48424
+ ),
48425
+ )
48426
+ ),
48427
+ )
48428
+ """(experimental) Return asset counts for a data product had it been
48429
+ created from these MCONs
48430
+
48431
+ Arguments:
48432
+
48433
+ * `mcons` (`[String]!`): MCON of assets to create data product
48434
+ from
48435
+ """
48436
+
47193
48437
  parse_query = sgqlc.types.Field(
47194
48438
  "SqlParserResult",
47195
48439
  graphql_name="parseQuery",
@@ -47614,10 +48858,27 @@ class Query(sgqlc.types.Type):
47614
48858
  """
47615
48859
 
47616
48860
  get_my_mcp_integration_keys = sgqlc.types.Field(
47617
- sgqlc.types.list_of(IntegrationKeyMetadata), graphql_name="getMyMcpIntegrationKeys"
48861
+ sgqlc.types.list_of(IntegrationKeyMetadata),
48862
+ graphql_name="getMyMcpIntegrationKeys",
48863
+ args=sgqlc.types.ArgDict(
48864
+ (
48865
+ (
48866
+ "include_created_by_service_accounts",
48867
+ sgqlc.types.Arg(
48868
+ Boolean, graphql_name="includeCreatedByServiceAccounts", default=True
48869
+ ),
48870
+ ),
48871
+ )
48872
+ ),
47618
48873
  )
47619
48874
  """(experimental) Retrieve MCP integration keys created by the
47620
48875
  current user
48876
+
48877
+ Arguments:
48878
+
48879
+ * `include_created_by_service_accounts` (`Boolean`): Whether to
48880
+ include the MCP keys created by service accounts (default:
48881
+ `true`)
47621
48882
  """
47622
48883
 
47623
48884
  get_opsgenie_integrations = sgqlc.types.Field(
@@ -49081,6 +50342,34 @@ class Query(sgqlc.types.Type):
49081
50342
  handles the Power BI Reports collection.
49082
50343
  """
49083
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
+
49084
50373
  get_fivetran_connectors = sgqlc.types.Field(
49085
50374
  FivetranConnectorConnection,
49086
50375
  graphql_name="getFivetranConnectors",
@@ -50934,6 +52223,12 @@ class Query(sgqlc.types.Type):
50934
52223
  ),
50935
52224
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
50936
52225
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
52226
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
52227
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
52228
+ (
52229
+ "where_condition",
52230
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
52231
+ ),
50937
52232
  )
50938
52233
  ),
50939
52234
  )
@@ -50946,6 +52241,12 @@ class Query(sgqlc.types.Type):
50946
52241
  time series UUID
50947
52242
  * `start_time` (`DateTime`): Start time of maintenance period
50948
52243
  * `end_time` (`DateTime`): End time of maintenance period
52244
+ * `metric` (`String`): Metric to set maintenance period for.
52245
+ Deprecated: Use time_series_uuid instead
52246
+ * `field` (`String`): Field to set maintenance period for.
52247
+ Deprecated: Use time_series_uuid instead
52248
+ * `where_condition` (`String`): Where condition to set maintenance
52249
+ period for. Deprecated: Use time_series_uuid instead
50949
52250
  """
50950
52251
 
50951
52252
  get_data_maintenance_entries_by_mcon = sgqlc.types.Field(
@@ -51082,6 +52383,10 @@ class Query(sgqlc.types.Type):
51082
52383
  default=None,
51083
52384
  ),
51084
52385
  ),
52386
+ (
52387
+ "trace_timestamp",
52388
+ sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
52389
+ ),
51085
52390
  )
51086
52391
  ),
51087
52392
  )
@@ -51094,6 +52399,8 @@ class Query(sgqlc.types.Type):
51094
52399
  * `trace_mode` (`Boolean`): Consider all the spans (not only the
51095
52400
  recent ones), and sort them by start date. (default: `false`)
51096
52401
  * `trace_ids` (`[String!]`): Filter by specific trace IDs
52402
+ * `trace_timestamp` (`DateTime`): Filter by trace timestamp
52403
+ (inclusive) +- 1 hr
51097
52404
  """
51098
52405
 
51099
52406
  get_agent_span_sample = sgqlc.types.Field(
@@ -51151,6 +52458,10 @@ class Query(sgqlc.types.Type):
51151
52458
  ),
51152
52459
  ),
51153
52460
  ("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
52461
+ (
52462
+ "trace_timestamp",
52463
+ sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
52464
+ ),
51154
52465
  )
51155
52466
  ),
51156
52467
  )
@@ -51180,6 +52491,8 @@ class Query(sgqlc.types.Type):
51180
52491
  * `trace_ids` (`[String!]`): Filter by specific trace IDs (<=
51181
52492
  limit)
51182
52493
  * `connection_id` (`UUID`): Connection UUID
52494
+ * `trace_timestamp` (`DateTime`): Filter by trace timestamp
52495
+ (inclusive) +- 1 hr
51183
52496
  """
51184
52497
 
51185
52498
  evaluate_agent_monitor_data_source = sgqlc.types.Field(
@@ -57289,12 +58602,6 @@ class Query(sgqlc.types.Type):
57289
58602
  default=None,
57290
58603
  ),
57291
58604
  ),
57292
- (
57293
- "resource_types",
57294
- sgqlc.types.Arg(
57295
- sgqlc.types.list_of(String), graphql_name="resourceTypes", default=None
57296
- ),
57297
- ),
57298
58605
  (
57299
58606
  "warehouse_types",
57300
58607
  sgqlc.types.Arg(
@@ -57356,9 +58663,6 @@ class Query(sgqlc.types.Type):
57356
58663
  * `project_filter` (`ProjectFilterInput`): Project filter
57357
58664
  * `dataset_filter` (`DatasetFilterInput`): Dataset filter
57358
58665
  * `data_product_ids` (`[UUID!]`): Filter by data product IDs
57359
- * `resource_types` (`[String]`): Filter by resource types
57360
- (DEPRECATED, use warehouse_types, etl_types, or bi_types
57361
- instead)
57362
58666
  * `warehouse_types` (`[String]`): Filter by warehouse types
57363
58667
  * `etl_types` (`[String]`): Filter by ETL types
57364
58668
  * `bi_types` (`[String]`): Filter by BI types
@@ -59072,6 +60376,25 @@ class Query(sgqlc.types.Type):
59072
60376
  * `keys` (`[String]!`): User setting's keys
59073
60377
  """
59074
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
+
59075
60398
  get_user = sgqlc.types.Field("User", graphql_name="getUser")
59076
60399
 
59077
60400
  get_user_by_id = sgqlc.types.Field("User", graphql_name="getUserById")
@@ -59987,6 +61310,12 @@ class Query(sgqlc.types.Type):
59987
61310
  ),
59988
61311
  ),
59989
61312
  ("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
61313
+ (
61314
+ "order_by",
61315
+ sgqlc.types.Arg(
61316
+ sgqlc.types.list_of(String), graphql_name="orderBy", default=None
61317
+ ),
61318
+ ),
59990
61319
  ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
59991
61320
  ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
59992
61321
  ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
@@ -60004,6 +61333,8 @@ class Query(sgqlc.types.Type):
60004
61333
  * `roles` (`[String]`): Filter by user roles
60005
61334
  * `search` (`String`): Filter by first name, last name or email
60006
61335
  address
61336
+ * `order_by` (`[String]`): Order by fields. Use camelCase and '-'
61337
+ for desc. e.g. ['email', '-role']
60007
61338
  * `offset` (`Int`)None
60008
61339
  * `before` (`String`)None
60009
61340
  * `after` (`String`)None
@@ -60411,6 +61742,27 @@ class Query(sgqlc.types.Type):
60411
61742
  * `feature` (`String!`): Name of the feature flag
60412
61743
  """
60413
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
+
60414
61766
  get_tables_upstream_counts = sgqlc.types.Field(
60415
61767
  sgqlc.types.list_of("TableUpstreamData"),
60416
61768
  graphql_name="getTablesUpstreamCounts",
@@ -63250,6 +64602,7 @@ class SearchResult(sgqlc.types.Type):
63250
64602
  "is_monitored",
63251
64603
  "is_muted",
63252
64604
  "etl_type",
64605
+ "supports_data_explorer",
63253
64606
  )
63254
64607
  mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
63255
64608
  """Monte Carlo full identifier for an entity"""
@@ -63334,6 +64687,9 @@ class SearchResult(sgqlc.types.Type):
63334
64687
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
63335
64688
  """ETL type of the job asset (if object_type=job)"""
63336
64689
 
64690
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
64691
+ """Whether the table supports data explorer"""
64692
+
63337
64693
 
63338
64694
  class SearchResultProperty(sgqlc.types.Type):
63339
64695
  """An individual label. Part of the SearchResult"""
@@ -63582,6 +64938,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63582
64938
  "webhook_url",
63583
64939
  "webhook_config",
63584
64940
  "options",
64941
+ "created_time",
64942
+ "updated_time",
64943
+ "created_by",
64944
+ "last_update_user",
63585
64945
  )
63586
64946
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
63587
64947
  """The integration ID"""
@@ -63626,6 +64986,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63626
64986
  options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
63627
64987
  """Options for ServiceNow integration"""
63628
64988
 
64989
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
64990
+ """When the integration was created"""
64991
+
64992
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
64993
+ """When the integration was last updated"""
64994
+
64995
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64996
+ """Who created the integration"""
64997
+
64998
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
64999
+ """Who last updated the integration"""
65000
+
63629
65001
 
63630
65002
  class ServiceNowStateMappingOutput(sgqlc.types.Type):
63631
65003
  __schema__ = schema
@@ -63722,6 +65094,18 @@ class SetAlertSeverity(sgqlc.types.Type):
63722
65094
  """The updated alert/incident"""
63723
65095
 
63724
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
+
63725
65109
  class SetAzureDevopsSourceSelections(sgqlc.types.Type):
63726
65110
  __schema__ = schema
63727
65111
  __field_names__ = ("success",)
@@ -64073,6 +65457,16 @@ class SetWorkspacesAllowListForPowerBiReportsCollection(sgqlc.types.Type):
64073
65457
  """Whether the mutation succeeded."""
64074
65458
 
64075
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
+
64076
65470
  class SheetDashboardRef(sgqlc.types.Type):
64077
65471
  __schema__ = schema
64078
65472
  __field_names__ = (
@@ -64545,6 +65939,8 @@ class StreamingCluster(sgqlc.types.Type):
64545
65939
  "id",
64546
65940
  "created_time",
64547
65941
  "updated_time",
65942
+ "created_by",
65943
+ "last_update_user",
64548
65944
  "deleted_at",
64549
65945
  "uuid",
64550
65946
  "external_cluster_id",
@@ -64559,6 +65955,12 @@ class StreamingCluster(sgqlc.types.Type):
64559
65955
 
64560
65956
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64561
65957
 
65958
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
65959
+ """Creator"""
65960
+
65961
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
65962
+ """Last updated by"""
65963
+
64562
65964
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64563
65965
 
64564
65966
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -64594,6 +65996,8 @@ class StreamingSystem(sgqlc.types.Type):
64594
65996
  "id",
64595
65997
  "created_time",
64596
65998
  "updated_time",
65999
+ "created_by",
66000
+ "last_update_user",
64597
66001
  "deleted_at",
64598
66002
  "uuid",
64599
66003
  "name",
@@ -64607,6 +66011,12 @@ class StreamingSystem(sgqlc.types.Type):
64607
66011
 
64608
66012
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64609
66013
 
66014
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
66015
+ """Creator"""
66016
+
66017
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
66018
+ """Last updated by"""
66019
+
64610
66020
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64611
66021
 
64612
66022
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -65351,31 +66761,6 @@ class TableFieldsImportance(sgqlc.types.Type):
65351
66761
  )
65352
66762
 
65353
66763
 
65354
- class TableFreshness(sgqlc.types.Type):
65355
- __schema__ = schema
65356
- __field_names__ = (
65357
- "lag_in_seconds",
65358
- "last_update_timestamp",
65359
- "measurement_timestamp",
65360
- "thresholds",
65361
- )
65362
- lag_in_seconds = sgqlc.types.Field(Float, graphql_name="lagInSeconds")
65363
- """Lag since previous table update in seconds"""
65364
-
65365
- last_update_timestamp = sgqlc.types.Field(
65366
- sgqlc.types.non_null(DateTime), graphql_name="lastUpdateTimestamp"
65367
- )
65368
- """Timestamp of the last table update"""
65369
-
65370
- measurement_timestamp = sgqlc.types.Field(
65371
- sgqlc.types.non_null(DateTime), graphql_name="measurementTimestamp"
65372
- )
65373
- """Measurement timestamp of the datapoint"""
65374
-
65375
- thresholds = sgqlc.types.Field(sgqlc.types.list_of("Threshold"), graphql_name="thresholds")
65376
- """Thresholds"""
65377
-
65378
-
65379
66764
  class TableImportanceStatsResponse(sgqlc.types.Type):
65380
66765
  __schema__ = schema
65381
66766
  __field_names__ = ("is_important", "importance_score")
@@ -67334,6 +68719,137 @@ class TopQueryGroupsResponseType(sgqlc.types.Type):
67334
68719
  )
67335
68720
 
67336
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
+
67337
68853
  class TrackTablePayload(sgqlc.types.Type):
67338
68854
  """Add table to account's dashboard"""
67339
68855
 
@@ -68531,6 +70047,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68531
70047
  "domain_restrictions",
68532
70048
  "permissions",
68533
70049
  "performance_dashboard_access",
70050
+ "can_edit_table_monitors",
68534
70051
  )
68535
70052
  groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
68536
70053
  """List of the groups this user is a member of."""
@@ -68555,6 +70072,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68555
70072
  "ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
68556
70073
  )
68557
70074
 
70075
+ can_edit_table_monitors = sgqlc.types.Field(Boolean, graphql_name="canEditTableMonitors")
70076
+ """Whether the user can create, update or delete table monitors."""
70077
+
68558
70078
 
68559
70079
  class UserBasicInfoConnection(sgqlc.types.relay.Connection):
68560
70080
  __schema__ = schema
@@ -69053,6 +70573,9 @@ class Warehouse(sgqlc.types.Type):
69053
70573
  __schema__ = schema
69054
70574
  __field_names__ = (
69055
70575
  "id",
70576
+ "created_time",
70577
+ "updated_time",
70578
+ "last_update_user",
69056
70579
  "uuid",
69057
70580
  "name",
69058
70581
  "connection_type",
@@ -69105,6 +70628,13 @@ class Warehouse(sgqlc.types.Type):
69105
70628
  )
69106
70629
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
69107
70630
 
70631
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
70632
+
70633
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
70634
+
70635
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
70636
+ """Last updated by"""
70637
+
69108
70638
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69109
70639
 
69110
70640
  name = sgqlc.types.Field(String, graphql_name="name")
@@ -69528,7 +71058,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69528
71058
  """A Webex integration"""
69529
71059
 
69530
71060
  __schema__ = schema
69531
- __field_names__ = ("integration_id", "integration_name")
71061
+ __field_names__ = (
71062
+ "integration_id",
71063
+ "integration_name",
71064
+ "created_time",
71065
+ "updated_time",
71066
+ "created_by",
71067
+ "last_update_user",
71068
+ )
69532
71069
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
69533
71070
  """The integration ID"""
69534
71071
 
@@ -69537,6 +71074,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69537
71074
  )
69538
71075
  """A short name to identify the integration"""
69539
71076
 
71077
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
71078
+ """When the integration was created"""
71079
+
71080
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
71081
+ """When the integration was last updated"""
71082
+
71083
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
71084
+ """Who created the integration"""
71085
+
71086
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
71087
+ """Who last updated the integration"""
71088
+
69540
71089
 
69541
71090
  class WebexTestCredentialsOutput(sgqlc.types.Type):
69542
71091
  """A Webex test credentials result"""
@@ -69776,151 +71325,184 @@ class AdfJobRun(sgqlc.types.Type, Node):
69776
71325
  duration = sgqlc.types.Field(Float, graphql_name="duration")
69777
71326
  """Duration of the run in seconds"""
69778
71327
 
69779
- status = sgqlc.types.Field(sgqlc.types.non_null(AdfJobRunModelStatus), graphql_name="status")
71328
+ status = sgqlc.types.Field(sgqlc.types.non_null(AdfJobRunModelStatus), graphql_name="status")
71329
+ """Status of the run"""
71330
+
71331
+ associated_job = sgqlc.types.Field(AdfJob, graphql_name="associatedJob")
71332
+ """Job associated with the run"""
71333
+
71334
+ run_url = sgqlc.types.Field(String, graphql_name="runUrl")
71335
+ """Url of the run page in the original ADF environment"""
71336
+
71337
+
71338
+ class AdfTask(sgqlc.types.Type, Node):
71339
+ __schema__ = schema
71340
+ __field_names__ = (
71341
+ "account",
71342
+ "created_time",
71343
+ "updated_time",
71344
+ "uuid",
71345
+ "resource",
71346
+ "mcon",
71347
+ "adf_job_id",
71348
+ "task_id",
71349
+ "task_name",
71350
+ "task_type",
71351
+ "runs",
71352
+ )
71353
+ account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
71354
+
71355
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
71356
+
71357
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
71358
+
71359
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
71360
+ """UUID of Run"""
71361
+
71362
+ resource = sgqlc.types.Field(sgqlc.types.non_null(EtlContainer), graphql_name="resource")
71363
+ """ETL container associated with the pipeline"""
71364
+
71365
+ mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
71366
+
71367
+ adf_job_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="adfJobId")
71368
+ """Job ID"""
71369
+
71370
+ task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskId")
71371
+ """Task ID"""
71372
+
71373
+ task_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskName")
71374
+ """Task Name"""
71375
+
71376
+ task_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskType")
71377
+ """Task Type"""
71378
+
71379
+ runs = sgqlc.types.Field(
71380
+ sgqlc.types.non_null(AdfTaskRunConnection),
71381
+ graphql_name="runs",
71382
+ args=sgqlc.types.ArgDict(
71383
+ (
71384
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
71385
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
71386
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
71387
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
71388
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
71389
+ )
71390
+ ),
71391
+ )
71392
+ """Task associated with the run
71393
+
71394
+ Arguments:
71395
+
71396
+ * `offset` (`Int`)None
71397
+ * `before` (`String`)None
71398
+ * `after` (`String`)None
71399
+ * `first` (`Int`)None
71400
+ * `last` (`Int`)None
71401
+ """
71402
+
71403
+
71404
+ class AdfTaskRun(sgqlc.types.Type, Node):
71405
+ __schema__ = schema
71406
+ __field_names__ = (
71407
+ "created_time",
71408
+ "updated_time",
71409
+ "uuid",
71410
+ "resource",
71411
+ "success",
71412
+ "job_id",
71413
+ "run_id",
71414
+ "started_at",
71415
+ "finished_at",
71416
+ "message",
71417
+ "duration",
71418
+ "status",
71419
+ "job_run_id",
71420
+ "task_id",
71421
+ "associated_task",
71422
+ "task_mcon",
71423
+ "job_mcon",
71424
+ )
71425
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
71426
+
71427
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
71428
+
71429
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
71430
+ """UUID of Run"""
71431
+
71432
+ resource = sgqlc.types.Field(sgqlc.types.non_null(EtlContainer), graphql_name="resource")
71433
+ """ETL container associated with the event"""
71434
+
71435
+ success = sgqlc.types.Field(Boolean, graphql_name="success")
71436
+ """run was successful or not"""
71437
+
71438
+ job_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="jobId")
71439
+ """Job ID"""
71440
+
71441
+ run_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="runId")
71442
+ """Run ID"""
71443
+
71444
+ started_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startedAt")
71445
+ """Time the run started"""
71446
+
71447
+ finished_at = sgqlc.types.Field(DateTime, graphql_name="finishedAt")
71448
+ """Time the run ended"""
71449
+
71450
+ message = sgqlc.types.Field(String, graphql_name="message")
71451
+ """Error message for the run"""
71452
+
71453
+ duration = sgqlc.types.Field(Float, graphql_name="duration")
71454
+ """Duration of the run in seconds"""
71455
+
71456
+ status = sgqlc.types.Field(sgqlc.types.non_null(AdfTaskRunModelStatus), graphql_name="status")
69780
71457
  """Status of the run"""
69781
71458
 
69782
- associated_job = sgqlc.types.Field(AdfJob, graphql_name="associatedJob")
69783
- """Job associated with the run"""
69784
-
69785
- run_url = sgqlc.types.Field(String, graphql_name="runUrl")
69786
- """Url of the run page in the original ADF environment"""
69787
-
69788
-
69789
- class AdfTask(sgqlc.types.Type, Node):
69790
- __schema__ = schema
69791
- __field_names__ = (
69792
- "account",
69793
- "created_time",
69794
- "updated_time",
69795
- "uuid",
69796
- "resource",
69797
- "mcon",
69798
- "adf_job_id",
69799
- "task_id",
69800
- "task_name",
69801
- "task_type",
69802
- "runs",
69803
- )
69804
- account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
69805
-
69806
- created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
69807
-
69808
- updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
69809
-
69810
- uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69811
- """UUID of Run"""
69812
-
69813
- resource = sgqlc.types.Field(sgqlc.types.non_null(EtlContainer), graphql_name="resource")
69814
- """ETL container associated with the pipeline"""
69815
-
69816
- mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
69817
-
69818
- adf_job_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="adfJobId")
69819
- """Job ID"""
71459
+ job_run_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="jobRunId")
71460
+ """Job Run ID"""
69820
71461
 
69821
71462
  task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskId")
69822
71463
  """Task ID"""
69823
71464
 
69824
- task_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskName")
69825
- """Task Name"""
69826
-
69827
- task_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskType")
69828
- """Task Type"""
69829
-
69830
- runs = sgqlc.types.Field(
69831
- sgqlc.types.non_null(AdfTaskRunConnection),
69832
- graphql_name="runs",
69833
- args=sgqlc.types.ArgDict(
69834
- (
69835
- ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
69836
- ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
69837
- ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
69838
- ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
69839
- ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
69840
- )
69841
- ),
69842
- )
69843
- """Task associated with the run
71465
+ associated_task = sgqlc.types.Field(AdfTask, graphql_name="associatedTask")
71466
+ """Task associated with the run"""
69844
71467
 
69845
- Arguments:
71468
+ task_mcon = sgqlc.types.Field(String, graphql_name="taskMcon")
71469
+ """MCON of Task for provided task_id"""
69846
71470
 
69847
- * `offset` (`Int`)None
69848
- * `before` (`String`)None
69849
- * `after` (`String`)None
69850
- * `first` (`Int`)None
69851
- * `last` (`Int`)None
69852
- """
71471
+ job_mcon = sgqlc.types.Field(String, graphql_name="jobMcon")
71472
+ """MCON of Job for provided job_id"""
69853
71473
 
69854
71474
 
69855
- class AdfTaskRun(sgqlc.types.Type, Node):
71475
+ class AgentTraceTable(sgqlc.types.Type, Node):
69856
71476
  __schema__ = schema
69857
71477
  __field_names__ = (
69858
71478
  "created_time",
69859
71479
  "updated_time",
69860
71480
  "uuid",
69861
- "resource",
69862
- "success",
69863
- "job_id",
69864
- "run_id",
69865
- "started_at",
69866
- "finished_at",
69867
- "message",
69868
- "duration",
69869
- "status",
69870
- "job_run_id",
69871
- "task_id",
69872
- "associated_task",
69873
- "task_mcon",
69874
- "job_mcon",
71481
+ "account",
71482
+ "table",
71483
+ "span_format",
71484
+ "schedule",
69875
71485
  )
69876
71486
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
69877
71487
 
69878
71488
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
69879
71489
 
69880
71490
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69881
- """UUID of Run"""
71491
+ """Unique ID of the Agent Trace Table."""
69882
71492
 
69883
- resource = sgqlc.types.Field(sgqlc.types.non_null(EtlContainer), graphql_name="resource")
69884
- """ETL container associated with the event"""
69885
-
69886
- success = sgqlc.types.Field(Boolean, graphql_name="success")
69887
- """run was successful or not"""
69888
-
69889
- job_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="jobId")
69890
- """Job ID"""
69891
-
69892
- run_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="runId")
69893
- """Run ID"""
69894
-
69895
- started_at = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startedAt")
69896
- """Time the run started"""
69897
-
69898
- finished_at = sgqlc.types.Field(DateTime, graphql_name="finishedAt")
69899
- """Time the run ended"""
69900
-
69901
- message = sgqlc.types.Field(String, graphql_name="message")
69902
- """Error message for the run"""
69903
-
69904
- duration = sgqlc.types.Field(Float, graphql_name="duration")
69905
- """Duration of the run in seconds"""
69906
-
69907
- status = sgqlc.types.Field(sgqlc.types.non_null(AdfTaskRunModelStatus), graphql_name="status")
69908
- """Status of the run"""
69909
-
69910
- job_run_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="jobRunId")
69911
- """Job Run ID"""
69912
-
69913
- task_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="taskId")
69914
- """Task ID"""
71493
+ account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
69915
71494
 
69916
- associated_task = sgqlc.types.Field(AdfTask, graphql_name="associatedTask")
69917
- """Task associated with the run"""
71495
+ table = sgqlc.types.Field(sgqlc.types.non_null("WarehouseTable"), graphql_name="table")
71496
+ """Agent trace table"""
69918
71497
 
69919
- task_mcon = sgqlc.types.Field(String, graphql_name="taskMcon")
69920
- """MCON of Task for provided task_id"""
71498
+ span_format = sgqlc.types.Field(
71499
+ sgqlc.types.non_null(AgentTraceTableModelSpanFormat), graphql_name="spanFormat"
71500
+ )
71501
+ """Format of spans in the table."""
69921
71502
 
69922
- job_mcon = sgqlc.types.Field(String, graphql_name="jobMcon")
69923
- """MCON of Job for provided job_id"""
71503
+ schedule = sgqlc.types.Field(
71504
+ sgqlc.types.non_null(DataCollectorSchedule), graphql_name="schedule"
71505
+ )
69924
71506
 
69925
71507
 
69926
71508
  class AirflowDag(sgqlc.types.Type, Node):
@@ -70238,6 +71820,7 @@ class AirflowTaskRun(sgqlc.types.Type, Node):
70238
71820
  "task_mcon",
70239
71821
  "job_mcon",
70240
71822
  "log_url",
71823
+ "attempts",
70241
71824
  )
70242
71825
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
70243
71826
 
@@ -70306,6 +71889,11 @@ class AirflowTaskRun(sgqlc.types.Type, Node):
70306
71889
  log_url = sgqlc.types.Field(String, graphql_name="logUrl")
70307
71890
  """Log URL for the Task Run"""
70308
71891
 
71892
+ attempts = sgqlc.types.Field(
71893
+ sgqlc.types.list_of(AirflowTaskRunAttempt), graphql_name="attempts"
71894
+ )
71895
+ """List of all retry attempts for this task run"""
71896
+
70309
71897
 
70310
71898
  class AlationIntegration(sgqlc.types.Type, Node):
70311
71899
  __schema__ = schema
@@ -70378,6 +71966,11 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70378
71966
  "priority",
70379
71967
  "status",
70380
71968
  "tables",
71969
+ "audiences",
71970
+ "monitor_tags",
71971
+ "invalid_rows",
71972
+ "domains",
71973
+ "comment_count",
70381
71974
  "jira_tickets",
70382
71975
  "service_now_incidents",
70383
71976
  "opsgenie_incidents",
@@ -70417,6 +72010,23 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70417
72010
  tables = sgqlc.types.Field(sgqlc.types.list_of(TableOutput), graphql_name="tables")
70418
72011
  """Tables or views associated with the alert"""
70419
72012
 
72013
+ audiences = sgqlc.types.Field(sgqlc.types.list_of(AudienceRef), graphql_name="audiences")
72014
+ """List of audiences associated with the alert"""
72015
+
72016
+ monitor_tags = sgqlc.types.Field(
72017
+ sgqlc.types.list_of(TagKeyValuePairOutput), graphql_name="monitorTags"
72018
+ )
72019
+ """Monitor tags associated with the alert"""
72020
+
72021
+ invalid_rows = sgqlc.types.Field(String, graphql_name="invalidRows")
72022
+ """Number of invalid rows of a breached monitor if available"""
72023
+
72024
+ domains = sgqlc.types.Field(sgqlc.types.list_of(DomainRef), graphql_name="domains")
72025
+ """List of domain associated with the alert"""
72026
+
72027
+ comment_count = sgqlc.types.Field(Int, graphql_name="commentCount")
72028
+ """Number of user comments associated with the alert"""
72029
+
70420
72030
  jira_tickets = sgqlc.types.Field(sgqlc.types.list_of("JiraTicket"), graphql_name="jiraTickets")
70421
72031
  """Jira tickets associated with the alert"""
70422
72032
 
@@ -70457,6 +72067,45 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70457
72067
  """URL of the alert"""
70458
72068
 
70459
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
+
70460
72109
  class AssetFilterActivityRead(sgqlc.types.Type, AssetFilterInterface):
70461
72110
  __schema__ = schema
70462
72111
  __field_names__ = ("read_days",)
@@ -70652,6 +72301,10 @@ class AuthUser(sgqlc.types.Type, Node):
70652
72301
  "delete_reason",
70653
72302
  "invalidated_at",
70654
72303
  "persona",
72304
+ "streamingsystemmodel_created_by",
72305
+ "streamingsystemmodel_updated_by",
72306
+ "streamingclustermodel_created_by",
72307
+ "streamingclustermodel_updated_by",
70655
72308
  "monitor_labels_created",
70656
72309
  "routing_rules_created_by",
70657
72310
  "routing_rules_updated_by",
@@ -70662,6 +72315,13 @@ class AuthUser(sgqlc.types.Type, Node):
70662
72315
  "invitees",
70663
72316
  "warehouse_deleted_by",
70664
72317
  "created_warehouses",
72318
+ "warehousemodel_updated_by",
72319
+ "bicontainermodel_created_by",
72320
+ "bicontainermodel_updated_by",
72321
+ "etlcontainermodel_created_by",
72322
+ "etlcontainermodel_updated_by",
72323
+ "connectionmodel_created_by",
72324
+ "connectionmodel_updated_by",
70665
72325
  "eventmodel_set",
70666
72326
  "eventdetectorfeedbackmodel_created_by",
70667
72327
  "eventdetectorfeedbackmodel_updated_by",
@@ -70690,6 +72350,8 @@ class AuthUser(sgqlc.types.Type, Node):
70690
72350
  "collection_preference_created_by",
70691
72351
  "collection_preference_last_updated_by",
70692
72352
  "collection_preference_deleted_by",
72353
+ "asset_collection_preference_created_by",
72354
+ "asset_collection_preference_last_updated_by",
70693
72355
  "data_product_created_by",
70694
72356
  "data_product_last_updated_by",
70695
72357
  "data_product_deleted_by",
@@ -70759,6 +72421,30 @@ class AuthUser(sgqlc.types.Type, Node):
70759
72421
  experience and the onboarding flow.
70760
72422
  """
70761
72423
 
72424
+ streamingsystemmodel_created_by = sgqlc.types.Field(
72425
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
72426
+ graphql_name="streamingsystemmodelCreatedBy",
72427
+ )
72428
+ """Creator"""
72429
+
72430
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
72431
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
72432
+ graphql_name="streamingsystemmodelUpdatedBy",
72433
+ )
72434
+ """Last updated by"""
72435
+
72436
+ streamingclustermodel_created_by = sgqlc.types.Field(
72437
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
72438
+ graphql_name="streamingclustermodelCreatedBy",
72439
+ )
72440
+ """Creator"""
72441
+
72442
+ streamingclustermodel_updated_by = sgqlc.types.Field(
72443
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
72444
+ graphql_name="streamingclustermodelUpdatedBy",
72445
+ )
72446
+ """Last updated by"""
72447
+
70762
72448
  monitor_labels_created = sgqlc.types.Field(
70763
72449
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
70764
72450
  graphql_name="monitorLabelsCreated",
@@ -70878,6 +72564,48 @@ class AuthUser(sgqlc.types.Type, Node):
70878
72564
  )
70879
72565
  """User who created this warehouse"""
70880
72566
 
72567
+ warehousemodel_updated_by = sgqlc.types.Field(
72568
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
72569
+ graphql_name="warehousemodelUpdatedBy",
72570
+ )
72571
+ """Last updated by"""
72572
+
72573
+ bicontainermodel_created_by = sgqlc.types.Field(
72574
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
72575
+ graphql_name="bicontainermodelCreatedBy",
72576
+ )
72577
+ """Creator"""
72578
+
72579
+ bicontainermodel_updated_by = sgqlc.types.Field(
72580
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
72581
+ graphql_name="bicontainermodelUpdatedBy",
72582
+ )
72583
+ """Last updated by"""
72584
+
72585
+ etlcontainermodel_created_by = sgqlc.types.Field(
72586
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
72587
+ graphql_name="etlcontainermodelCreatedBy",
72588
+ )
72589
+ """Creator"""
72590
+
72591
+ etlcontainermodel_updated_by = sgqlc.types.Field(
72592
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
72593
+ graphql_name="etlcontainermodelUpdatedBy",
72594
+ )
72595
+ """Last updated by"""
72596
+
72597
+ connectionmodel_created_by = sgqlc.types.Field(
72598
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
72599
+ graphql_name="connectionmodelCreatedBy",
72600
+ )
72601
+ """Creator"""
72602
+
72603
+ connectionmodel_updated_by = sgqlc.types.Field(
72604
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
72605
+ graphql_name="connectionmodelUpdatedBy",
72606
+ )
72607
+ """Last updated by"""
72608
+
70881
72609
  eventmodel_set = sgqlc.types.Field(
70882
72610
  sgqlc.types.non_null(EventConnection),
70883
72611
  graphql_name="eventmodelSet",
@@ -71534,6 +73262,50 @@ class AuthUser(sgqlc.types.Type, Node):
71534
73262
  * `last` (`Int`)None
71535
73263
  """
71536
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
+
71537
73309
  data_product_created_by = sgqlc.types.Field(
71538
73310
  sgqlc.types.non_null(DataProductConnection),
71539
73311
  graphql_name="dataProductCreatedBy",
@@ -71962,6 +73734,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
71962
73734
  class CollibraIntegration(sgqlc.types.Type, Node):
71963
73735
  __schema__ = schema
71964
73736
  __field_names__ = (
73737
+ "last_update_user",
71965
73738
  "uuid",
71966
73739
  "integration_name",
71967
73740
  "server_url",
@@ -71972,6 +73745,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
71972
73745
  "created_by",
71973
73746
  "warehouse_domain_mapping",
71974
73747
  )
73748
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
73749
+ """Last updated by"""
73750
+
71975
73751
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
71976
73752
  """Integration external ID"""
71977
73753
 
@@ -72061,6 +73837,114 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
72061
73837
  )
72062
73838
 
72063
73839
 
73840
+ class ConnectionRestriction(sgqlc.types.Type, Node):
73841
+ __schema__ = schema
73842
+ __field_names__ = (
73843
+ "created_time",
73844
+ "updated_time",
73845
+ "created_by",
73846
+ "last_update_user",
73847
+ "deleted_at",
73848
+ "uuid",
73849
+ "type",
73850
+ "subtype",
73851
+ "name",
73852
+ "warehouse",
73853
+ "bi_container",
73854
+ "etl_container",
73855
+ "deletion_protection",
73856
+ "job_types",
73857
+ "streaming_cluster",
73858
+ "credentials_s3_key",
73859
+ "integration_gateway_credentials_key",
73860
+ "data",
73861
+ "created_on",
73862
+ "updated_on",
73863
+ "is_active",
73864
+ "disabled_on",
73865
+ "dbt_projects",
73866
+ )
73867
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73868
+
73869
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
73870
+
73871
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
73872
+ """Creator"""
73873
+
73874
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
73875
+ """Last updated by"""
73876
+
73877
+ deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
73878
+
73879
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
73880
+
73881
+ type = sgqlc.types.Field(sgqlc.types.non_null(ConnectionModelType), graphql_name="type")
73882
+
73883
+ subtype = sgqlc.types.Field(String, graphql_name="subtype")
73884
+ """Subtype of a plugin connection"""
73885
+
73886
+ name = sgqlc.types.Field(String, graphql_name="name")
73887
+ """Name of the connection"""
73888
+
73889
+ warehouse = sgqlc.types.Field(Warehouse, graphql_name="warehouse")
73890
+
73891
+ bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
73892
+
73893
+ etl_container = sgqlc.types.Field(EtlContainer, graphql_name="etlContainer")
73894
+
73895
+ deletion_protection = sgqlc.types.Field(
73896
+ sgqlc.types.non_null(Boolean), graphql_name="deletionProtection"
73897
+ )
73898
+ """Prevents deletion when enabled."""
73899
+
73900
+ job_types = sgqlc.types.Field(
73901
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
73902
+ graphql_name="jobTypes",
73903
+ )
73904
+
73905
+ streaming_cluster = sgqlc.types.Field(StreamingCluster, graphql_name="streamingCluster")
73906
+
73907
+ credentials_s3_key = sgqlc.types.Field(String, graphql_name="credentialsS3Key")
73908
+
73909
+ integration_gateway_credentials_key = sgqlc.types.Field(
73910
+ String, graphql_name="integrationGatewayCredentialsKey"
73911
+ )
73912
+
73913
+ data = sgqlc.types.Field(JSONString, graphql_name="data")
73914
+
73915
+ created_on = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdOn")
73916
+
73917
+ updated_on = sgqlc.types.Field(DateTime, graphql_name="updatedOn")
73918
+
73919
+ is_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isActive")
73920
+
73921
+ disabled_on = sgqlc.types.Field(DateTime, graphql_name="disabledOn")
73922
+
73923
+ dbt_projects = sgqlc.types.Field(
73924
+ sgqlc.types.non_null(DbtProjectConnection),
73925
+ graphql_name="dbtProjects",
73926
+ args=sgqlc.types.ArgDict(
73927
+ (
73928
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
73929
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
73930
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
73931
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
73932
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
73933
+ )
73934
+ ),
73935
+ )
73936
+ """dbt connection
73937
+
73938
+ Arguments:
73939
+
73940
+ * `offset` (`Int`)None
73941
+ * `before` (`String`)None
73942
+ * `after` (`String`)None
73943
+ * `first` (`Int`)None
73944
+ * `last` (`Int`)None
73945
+ """
73946
+
73947
+
72064
73948
  class CustomRule(sgqlc.types.Type, Node):
72065
73949
  __schema__ = schema
72066
73950
  __field_names__ = (
@@ -74041,6 +75925,7 @@ class DbtProject(sgqlc.types.Type, Node):
74041
75925
  "config",
74042
75926
  "last_model_import",
74043
75927
  "last_test_import",
75928
+ "name",
74044
75929
  "dbt_jobs",
74045
75930
  "dbt_nodes",
74046
75931
  "dbt_edges",
@@ -74093,6 +75978,9 @@ class DbtProject(sgqlc.types.Type, Node):
74093
75978
  last_test_import = sgqlc.types.Field(DateTime, graphql_name="lastTestImport")
74094
75979
  """The date of the last test import we know about"""
74095
75980
 
75981
+ name = sgqlc.types.Field(String, graphql_name="name")
75982
+ """A friendly name for the integration"""
75983
+
74096
75984
  dbt_jobs = sgqlc.types.Field(
74097
75985
  DbtJobConnection,
74098
75986
  graphql_name="dbtJobs",
@@ -74551,6 +76439,8 @@ class Event(sgqlc.types.Type, Node):
74551
76439
  "is_merged",
74552
76440
  "description",
74553
76441
  "mentioned_users",
76442
+ "agent_span_filters",
76443
+ "filters",
74554
76444
  )
74555
76445
  event_type = sgqlc.types.Field(
74556
76446
  sgqlc.types.non_null(EventModelEventType), graphql_name="eventType"
@@ -74701,6 +76591,14 @@ class Event(sgqlc.types.Type, Node):
74701
76591
  )
74702
76592
  """Users that are mentioned in any of the comments"""
74703
76593
 
76594
+ agent_span_filters = sgqlc.types.Field(
76595
+ sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilter)), graphql_name="agentSpanFilters"
76596
+ )
76597
+ """agent span filters used on the monitor"""
76598
+
76599
+ filters = sgqlc.types.Field("FilterGroup", graphql_name="filters")
76600
+ """filters used on the monitor"""
76601
+
74704
76602
 
74705
76603
  class EventDataIncidentCommentTimeline(sgqlc.types.Type, IEventDataBaseTimeline):
74706
76604
  __schema__ = schema
@@ -74770,6 +76668,8 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
74770
76668
  "created_by",
74771
76669
  "last_update_user",
74772
76670
  "is_false_positive",
76671
+ "is_reintroduced",
76672
+ "reason",
74773
76673
  "metric",
74774
76674
  "field",
74775
76675
  "where_condition",
@@ -74789,6 +76689,10 @@ class EventDetectorFeedback(sgqlc.types.Type, Node):
74789
76689
  sgqlc.types.non_null(Boolean), graphql_name="isFalsePositive"
74790
76690
  )
74791
76691
 
76692
+ is_reintroduced = sgqlc.types.Field(Boolean, graphql_name="isReintroduced")
76693
+
76694
+ reason = sgqlc.types.Field(EventDetectorFeedbackModelReason, graphql_name="reason")
76695
+
74792
76696
  metric = sgqlc.types.Field(String, graphql_name="metric")
74793
76697
 
74794
76698
  field = sgqlc.types.Field(String, graphql_name="field")
@@ -74854,9 +76758,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
74854
76758
 
74855
76759
  class FilterValueField(sgqlc.types.Type, FilterValueInterface):
74856
76760
  __schema__ = schema
74857
- __field_names__ = ("field", "mcon")
76761
+ __field_names__ = ("field", "table", "mcon")
74858
76762
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
74859
76763
 
76764
+ table = sgqlc.types.Field(String, graphql_name="table")
76765
+
74860
76766
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
74861
76767
 
74862
76768
 
@@ -75966,6 +77872,7 @@ class Resource(sgqlc.types.Type, Node):
75966
77872
  "last_update_user",
75967
77873
  "last_update_time",
75968
77874
  "collection_preferences",
77875
+ "asset_collection_preferences",
75969
77876
  )
75970
77877
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
75971
77878
  """The resource id"""
@@ -76018,6 +77925,28 @@ class Resource(sgqlc.types.Type, Node):
76018
77925
  * `last` (`Int`)None
76019
77926
  """
76020
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
+
76021
77950
 
76022
77951
  class ResponseMetadataMonitorRecommendations(sgqlc.types.Type, ResponseMetadataInterface):
76023
77952
  __schema__ = schema
@@ -76751,6 +78680,10 @@ class User(sgqlc.types.Type, Node):
76751
78680
  "delete_reason",
76752
78681
  "invalidated_at",
76753
78682
  "persona",
78683
+ "streamingsystemmodel_created_by",
78684
+ "streamingsystemmodel_updated_by",
78685
+ "streamingclustermodel_created_by",
78686
+ "streamingclustermodel_updated_by",
76754
78687
  "monitor_labels_created",
76755
78688
  "routing_rules_created_by",
76756
78689
  "routing_rules_updated_by",
@@ -76761,6 +78694,13 @@ class User(sgqlc.types.Type, Node):
76761
78694
  "invitees",
76762
78695
  "warehouse_deleted_by",
76763
78696
  "created_warehouses",
78697
+ "warehousemodel_updated_by",
78698
+ "bicontainermodel_created_by",
78699
+ "bicontainermodel_updated_by",
78700
+ "etlcontainermodel_created_by",
78701
+ "etlcontainermodel_updated_by",
78702
+ "connectionmodel_created_by",
78703
+ "connectionmodel_updated_by",
76764
78704
  "eventmodel_set",
76765
78705
  "eventdetectorfeedbackmodel_created_by",
76766
78706
  "eventdetectorfeedbackmodel_updated_by",
@@ -76789,6 +78729,8 @@ class User(sgqlc.types.Type, Node):
76789
78729
  "collection_preference_created_by",
76790
78730
  "collection_preference_last_updated_by",
76791
78731
  "collection_preference_deleted_by",
78732
+ "asset_collection_preference_created_by",
78733
+ "asset_collection_preference_last_updated_by",
76792
78734
  "data_product_created_by",
76793
78735
  "data_product_last_updated_by",
76794
78736
  "data_product_deleted_by",
@@ -76812,6 +78754,7 @@ class User(sgqlc.types.Type, Node):
76812
78754
  "account",
76813
78755
  "role",
76814
78756
  "auth",
78757
+ "allowed_connections",
76815
78758
  )
76816
78759
  cognito_user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cognitoUserId")
76817
78760
 
@@ -76861,6 +78804,30 @@ class User(sgqlc.types.Type, Node):
76861
78804
  experience and the onboarding flow.
76862
78805
  """
76863
78806
 
78807
+ streamingsystemmodel_created_by = sgqlc.types.Field(
78808
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
78809
+ graphql_name="streamingsystemmodelCreatedBy",
78810
+ )
78811
+ """Creator"""
78812
+
78813
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
78814
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
78815
+ graphql_name="streamingsystemmodelUpdatedBy",
78816
+ )
78817
+ """Last updated by"""
78818
+
78819
+ streamingclustermodel_created_by = sgqlc.types.Field(
78820
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78821
+ graphql_name="streamingclustermodelCreatedBy",
78822
+ )
78823
+ """Creator"""
78824
+
78825
+ streamingclustermodel_updated_by = sgqlc.types.Field(
78826
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78827
+ graphql_name="streamingclustermodelUpdatedBy",
78828
+ )
78829
+ """Last updated by"""
78830
+
76864
78831
  monitor_labels_created = sgqlc.types.Field(
76865
78832
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
76866
78833
  graphql_name="monitorLabelsCreated",
@@ -76980,6 +78947,48 @@ class User(sgqlc.types.Type, Node):
76980
78947
  )
76981
78948
  """User who created this warehouse"""
76982
78949
 
78950
+ warehousemodel_updated_by = sgqlc.types.Field(
78951
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
78952
+ graphql_name="warehousemodelUpdatedBy",
78953
+ )
78954
+ """Last updated by"""
78955
+
78956
+ bicontainermodel_created_by = sgqlc.types.Field(
78957
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78958
+ graphql_name="bicontainermodelCreatedBy",
78959
+ )
78960
+ """Creator"""
78961
+
78962
+ bicontainermodel_updated_by = sgqlc.types.Field(
78963
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78964
+ graphql_name="bicontainermodelUpdatedBy",
78965
+ )
78966
+ """Last updated by"""
78967
+
78968
+ etlcontainermodel_created_by = sgqlc.types.Field(
78969
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78970
+ graphql_name="etlcontainermodelCreatedBy",
78971
+ )
78972
+ """Creator"""
78973
+
78974
+ etlcontainermodel_updated_by = sgqlc.types.Field(
78975
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78976
+ graphql_name="etlcontainermodelUpdatedBy",
78977
+ )
78978
+ """Last updated by"""
78979
+
78980
+ connectionmodel_created_by = sgqlc.types.Field(
78981
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78982
+ graphql_name="connectionmodelCreatedBy",
78983
+ )
78984
+ """Creator"""
78985
+
78986
+ connectionmodel_updated_by = sgqlc.types.Field(
78987
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78988
+ graphql_name="connectionmodelUpdatedBy",
78989
+ )
78990
+ """Last updated by"""
78991
+
76983
78992
  eventmodel_set = sgqlc.types.Field(
76984
78993
  sgqlc.types.non_null(EventConnection),
76985
78994
  graphql_name="eventmodelSet",
@@ -77636,6 +79645,50 @@ class User(sgqlc.types.Type, Node):
77636
79645
  * `last` (`Int`)None
77637
79646
  """
77638
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
+
77639
79692
  data_product_created_by = sgqlc.types.Field(
77640
79693
  sgqlc.types.non_null(DataProductConnection),
77641
79694
  graphql_name="dataProductCreatedBy",
@@ -77956,6 +80009,12 @@ class User(sgqlc.types.Type, Node):
77956
80009
  auth = sgqlc.types.Field(UserAuthorizationOutput, graphql_name="auth")
77957
80010
  """User's aggregate authorization policy."""
77958
80011
 
80012
+ allowed_connections = sgqlc.types.Field(
80013
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
80014
+ graphql_name="allowedConnections",
80015
+ )
80016
+ """Connections this user is allowed to use. Empty means unrestricted."""
80017
+
77959
80018
 
77960
80019
  class UserBasicInfo(sgqlc.types.Type, Node):
77961
80020
  __schema__ = schema
@@ -78364,6 +80423,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
78364
80423
  "dbt_nodes",
78365
80424
  "dbt_run_steps",
78366
80425
  "fivetranconnectormodel_set",
80426
+ "agent_trace_tables",
78367
80427
  "thresholds",
78368
80428
  "get_thresholds",
78369
80429
  "freshness_anomaly",
@@ -78375,7 +80435,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
78375
80435
  "status_scalar",
78376
80436
  "node_id",
78377
80437
  "is_partial_date_range",
78378
- "freshness",
78379
80438
  "freshness_collection_status",
78380
80439
  "volume_collection_status",
78381
80440
  "is_muted",
@@ -78769,6 +80828,30 @@ class WarehouseTable(sgqlc.types.Type, Node):
78769
80828
  * `last` (`Int`)None
78770
80829
  """
78771
80830
 
80831
+ agent_trace_tables = sgqlc.types.Field(
80832
+ sgqlc.types.non_null(AgentTraceTableConnection),
80833
+ graphql_name="agentTraceTables",
80834
+ args=sgqlc.types.ArgDict(
80835
+ (
80836
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
80837
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
80838
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
80839
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
80840
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
80841
+ )
80842
+ ),
80843
+ )
80844
+ """Agent trace table
80845
+
80846
+ Arguments:
80847
+
80848
+ * `offset` (`Int`)None
80849
+ * `before` (`String`)None
80850
+ * `after` (`String`)None
80851
+ * `first` (`Int`)None
80852
+ * `last` (`Int`)None
80853
+ """
80854
+
78772
80855
  thresholds = sgqlc.types.Field(ThresholdsData, graphql_name="thresholds")
78773
80856
  """Section describing various anomaly thresholds for the table"""
78774
80857
 
@@ -78816,30 +80899,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
78816
80899
  * `end_time` (`DateTime`)None
78817
80900
  """
78818
80901
 
78819
- freshness = sgqlc.types.Field(
78820
- sgqlc.types.list_of(TableFreshness),
78821
- graphql_name="freshness",
78822
- args=sgqlc.types.ArgDict(
78823
- (
78824
- (
78825
- "start_time",
78826
- sgqlc.types.Arg(
78827
- sgqlc.types.non_null(DateTime), graphql_name="startTime", default=None
78828
- ),
78829
- ),
78830
- ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
78831
- )
78832
- ),
78833
- )
78834
- """(experimental) DEPRECATED. List of freshness data points for the
78835
- table
78836
-
78837
- Arguments:
78838
-
78839
- * `start_time` (`DateTime!`)None
78840
- * `end_time` (`DateTime`)None
78841
- """
78842
-
78843
80902
  freshness_collection_status = sgqlc.types.Field(
78844
80903
  TableCollectionStatus, graphql_name="freshnessCollectionStatus"
78845
80904
  )