pycarlo 0.10.194__py3-none-any.whl → 0.10.235__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
 
@@ -1740,7 +1764,6 @@ class DecryptionServiceUpdateTypeEnum(sgqlc.types.Enum):
1740
1764
  class DenialReason(sgqlc.types.Enum):
1741
1765
  """Enumeration Choices:
1742
1766
 
1743
- * `AI_FEATURES_OFF`None
1744
1767
  * `ENTITLEMENTS`None
1745
1768
  * `INVALID_USER`None
1746
1769
  * `TROUBLESHOOTING_AGENT_OFF`None
@@ -1749,7 +1772,6 @@ class DenialReason(sgqlc.types.Enum):
1749
1772
 
1750
1773
  __schema__ = schema
1751
1774
  __choices__ = (
1752
- "AI_FEATURES_OFF",
1753
1775
  "ENTITLEMENTS",
1754
1776
  "INVALID_USER",
1755
1777
  "TROUBLESHOOTING_AGENT_OFF",
@@ -1769,6 +1791,19 @@ class DetectorStatus(sgqlc.types.Enum):
1769
1791
  __choices__ = ("ACTIVE", "INACTIVE", "TRAINING")
1770
1792
 
1771
1793
 
1794
+ class ETLAssetType(sgqlc.types.Enum):
1795
+ """Enum to distinguish between jobs and tasks
1796
+
1797
+ Enumeration Choices:
1798
+
1799
+ * `JOB`None
1800
+ * `TASK`None
1801
+ """
1802
+
1803
+ __schema__ = schema
1804
+ __choices__ = ("JOB", "TASK")
1805
+
1806
+
1772
1807
  class EdgeType(sgqlc.types.Enum):
1773
1808
  """Enumeration Choices:
1774
1809
 
@@ -1803,6 +1838,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1803
1838
  * `ADVANCED_SECURITY_V1_2`None
1804
1839
  * `API_CALLS`None
1805
1840
  * `AUDIT_LOGGING`None
1841
+ * `AUTH_GROUP_CONNECTION_RESTRICTION`None
1806
1842
  * `DATA_LAKES`None
1807
1843
  * `DATA_MESH`None
1808
1844
  * `EDW`None
@@ -1824,6 +1860,7 @@ class EntitlementTypes(sgqlc.types.Enum):
1824
1860
  "ADVANCED_SECURITY_V1_2",
1825
1861
  "API_CALLS",
1826
1862
  "AUDIT_LOGGING",
1863
+ "AUTH_GROUP_CONNECTION_RESTRICTION",
1827
1864
  "DATA_LAKES",
1828
1865
  "DATA_MESH",
1829
1866
  "EDW",
@@ -3171,6 +3208,7 @@ class InternalJobType(sgqlc.types.Enum):
3171
3208
  """Enumeration Choices:
3172
3209
 
3173
3210
  * `AGENT_REACHABILITY`None
3211
+ * `AGENT_SPANS`None
3174
3212
  * `DIRECT_LINEAGE`None
3175
3213
  * `ETL`None
3176
3214
  * `JSON_SCHEMA`None
@@ -3189,6 +3227,7 @@ class InternalJobType(sgqlc.types.Enum):
3189
3227
  __schema__ = schema
3190
3228
  __choices__ = (
3191
3229
  "AGENT_REACHABILITY",
3230
+ "AGENT_SPANS",
3192
3231
  "DIRECT_LINEAGE",
3193
3232
  "ETL",
3194
3233
  "JSON_SCHEMA",
@@ -4826,10 +4865,11 @@ class Status(sgqlc.types.Enum):
4826
4865
 
4827
4866
  * `NOTIFIED`None
4828
4867
  * `PENDING`None
4868
+ * `RESOLVED`None
4829
4869
  """
4830
4870
 
4831
4871
  __schema__ = schema
4832
- __choices__ = ("NOTIFIED", "PENDING")
4872
+ __choices__ = ("NOTIFIED", "PENDING", "RESOLVED")
4833
4873
 
4834
4874
 
4835
4875
  class StorageEncryptionType(sgqlc.types.Enum):
@@ -6408,6 +6448,22 @@ class ConnectionTestOptions(sgqlc.types.Input):
6408
6448
  """Specify tests to run (Redshift only)."""
6409
6449
 
6410
6450
 
6451
+ class CreateOrUpdateAgentTraceTableInput(sgqlc.types.Input):
6452
+ __schema__ = schema
6453
+ __field_names__ = ("uuid", "mcon", "connection_uuid", "span_format")
6454
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
6455
+ """UUID of existing agent trace table to update"""
6456
+
6457
+ mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
6458
+ """MCON of the table"""
6459
+
6460
+ connection_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="connectionUuid")
6461
+ """Connection UUID to query the table"""
6462
+
6463
+ span_format = sgqlc.types.Field(AgentTraceFormatEnum, graphql_name="spanFormat")
6464
+ """Format of spans in the table"""
6465
+
6466
+
6411
6467
  class CreatedByFilters(sgqlc.types.Input):
6412
6468
  __schema__ = schema
6413
6469
  __field_names__ = ("created_by", "is_template_managed", "namespace", "rule_name")
@@ -7305,13 +7361,15 @@ class FilterUnionInput(sgqlc.types.Input):
7305
7361
 
7306
7362
  class FilterValueUnionInput(sgqlc.types.Input):
7307
7363
  __schema__ = schema
7308
- __field_names__ = ("literal", "sql", "field", "mcon", "type", "id")
7364
+ __field_names__ = ("literal", "sql", "field", "table", "mcon", "type", "id")
7309
7365
  literal = sgqlc.types.Field(String, graphql_name="literal")
7310
7366
 
7311
7367
  sql = sgqlc.types.Field(String, graphql_name="sql")
7312
7368
 
7313
7369
  field = sgqlc.types.Field(String, graphql_name="field")
7314
7370
 
7371
+ table = sgqlc.types.Field(String, graphql_name="table")
7372
+
7315
7373
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
7316
7374
 
7317
7375
  type = sgqlc.types.Field(sgqlc.types.non_null(FilterValueType), graphql_name="type")
@@ -8131,7 +8189,7 @@ class NotificationExtra(sgqlc.types.Input):
8131
8189
 
8132
8190
  include_incident_fields = sgqlc.types.Field(JSONString, graphql_name="includeIncidentFields")
8133
8191
  """Field-value pairs to include as additional fields (when creating
8134
- incidents in ServiceNow or JIRA)
8192
+ incidents in ServiceNow, Datadog or JIRA)
8135
8193
  """
8136
8194
 
8137
8195
  jira_project_id = sgqlc.types.Field(Int, graphql_name="jiraProjectId")
@@ -11222,6 +11280,7 @@ class Account(sgqlc.types.Type):
11222
11280
  "data_products",
11223
11281
  "opsgenie_integrations",
11224
11282
  "collibra_integrations",
11283
+ "agenttracetablemodel_set",
11225
11284
  "entitlements",
11226
11285
  "dashboards",
11227
11286
  "comparison_dashboards",
@@ -11673,6 +11732,28 @@ class Account(sgqlc.types.Type):
11673
11732
  * `last` (`Int`)None
11674
11733
  """
11675
11734
 
11735
+ agenttracetablemodel_set = sgqlc.types.Field(
11736
+ sgqlc.types.non_null("AgentTraceTableConnection"),
11737
+ graphql_name="agenttracetablemodelSet",
11738
+ args=sgqlc.types.ArgDict(
11739
+ (
11740
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
11741
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
11742
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
11743
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
11744
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
11745
+ )
11746
+ ),
11747
+ )
11748
+ """Arguments:
11749
+
11750
+ * `offset` (`Int`)None
11751
+ * `before` (`String`)None
11752
+ * `after` (`String`)None
11753
+ * `first` (`Int`)None
11754
+ * `last` (`Int`)None
11755
+ """
11756
+
11676
11757
  entitlements = sgqlc.types.Field(
11677
11758
  sgqlc.types.list_of(EntitlementTypes), graphql_name="entitlements"
11678
11759
  )
@@ -12432,12 +12513,17 @@ class AdditionalMonitoredTablesCountOutput(sgqlc.types.Type):
12432
12513
  """Number of additional tables that would be monitored by"""
12433
12514
 
12434
12515
  __schema__ = schema
12435
- __field_names__ = ("count",)
12516
+ __field_names__ = ("count", "total_count")
12436
12517
  count = sgqlc.types.Field(Int, graphql_name="count")
12437
12518
  """Number of additional tables that would be monitored by current and
12438
12519
  new rules if applied
12439
12520
  """
12440
12521
 
12522
+ total_count = sgqlc.types.Field(Int, graphql_name="totalCount")
12523
+ """Total number of tables encapsulated by the rule (both currently
12524
+ monitored and unmonitored)
12525
+ """
12526
+
12441
12527
 
12442
12528
  class AdfJobConnection(sgqlc.types.relay.Connection):
12443
12529
  __schema__ = schema
@@ -12723,6 +12809,30 @@ class AgentSpanTree(sgqlc.types.Type):
12723
12809
  query = sgqlc.types.Field(String, graphql_name="query")
12724
12810
 
12725
12811
 
12812
+ class AgentTraceTableConnection(sgqlc.types.relay.Connection):
12813
+ __schema__ = schema
12814
+ __field_names__ = ("page_info", "edges")
12815
+ page_info = sgqlc.types.Field(sgqlc.types.non_null("PageInfo"), graphql_name="pageInfo")
12816
+ """Pagination data for this connection."""
12817
+
12818
+ edges = sgqlc.types.Field(
12819
+ sgqlc.types.non_null(sgqlc.types.list_of("AgentTraceTableEdge")), graphql_name="edges"
12820
+ )
12821
+ """Contains the nodes in this connection."""
12822
+
12823
+
12824
+ class AgentTraceTableEdge(sgqlc.types.Type):
12825
+ """A Relay edge containing a `AgentTraceTable` and its cursor."""
12826
+
12827
+ __schema__ = schema
12828
+ __field_names__ = ("node", "cursor")
12829
+ node = sgqlc.types.Field("AgentTraceTable", graphql_name="node")
12830
+ """The item at the end of the edge"""
12831
+
12832
+ cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cursor")
12833
+ """A cursor for use in pagination"""
12834
+
12835
+
12726
12836
  class AggregatedMetricDataType(sgqlc.types.Type):
12727
12837
  __schema__ = schema
12728
12838
  __field_names__ = ("query_group", "metric_aggregation", "timestamp", "value")
@@ -12929,6 +13039,41 @@ class AirflowTaskEdge(sgqlc.types.Type):
12929
13039
  """A cursor for use in pagination"""
12930
13040
 
12931
13041
 
13042
+ class AirflowTaskRunAttempt(sgqlc.types.Type):
13043
+ """Individual attempt details for an Airflow task run"""
13044
+
13045
+ __schema__ = schema
13046
+ __field_names__ = (
13047
+ "attempt_number",
13048
+ "start_date",
13049
+ "end_date",
13050
+ "state",
13051
+ "success",
13052
+ "duration",
13053
+ "exception_message",
13054
+ )
13055
+ attempt_number = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="attemptNumber")
13056
+ """Attempt number"""
13057
+
13058
+ start_date = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="startDate")
13059
+ """Attempt start time"""
13060
+
13061
+ end_date = sgqlc.types.Field(DateTime, graphql_name="endDate")
13062
+ """Attempt end time"""
13063
+
13064
+ state = sgqlc.types.Field(sgqlc.types.non_null(AirflowRunState), graphql_name="state")
13065
+ """Attempt state"""
13066
+
13067
+ success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="success")
13068
+ """Whether attempt succeeded"""
13069
+
13070
+ duration = sgqlc.types.Field(Float, graphql_name="duration")
13071
+ """Attempt duration in seconds"""
13072
+
13073
+ exception_message = sgqlc.types.Field(String, graphql_name="exceptionMessage")
13074
+ """Error message if failed"""
13075
+
13076
+
12932
13077
  class AirflowTaskRunConnection(sgqlc.types.relay.Connection):
12933
13078
  __schema__ = schema
12934
13079
  __field_names__ = ("page_info", "edges")
@@ -13586,6 +13731,16 @@ class AudienceMonitorEdge(sgqlc.types.Type):
13586
13731
  """A cursor for use in pagination"""
13587
13732
 
13588
13733
 
13734
+ class AudienceRef(sgqlc.types.Type):
13735
+ __schema__ = schema
13736
+ __field_names__ = ("uuid", "label")
13737
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
13738
+ """Audience UUID"""
13739
+
13740
+ label = sgqlc.types.Field(String, graphql_name="label")
13741
+ """Audience label"""
13742
+
13743
+
13589
13744
  class AudienceRoutingStats(sgqlc.types.Type):
13590
13745
  __schema__ = schema
13591
13746
  __field_names__ = (
@@ -13662,6 +13817,7 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13662
13817
  "description",
13663
13818
  "users",
13664
13819
  "domain_restrictions",
13820
+ "connection_restrictions",
13665
13821
  "sso_group",
13666
13822
  "source",
13667
13823
  "is_membership_managed",
@@ -13703,6 +13859,12 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13703
13859
  )
13704
13860
  """List of domains this group is limited to."""
13705
13861
 
13862
+ connection_restrictions = sgqlc.types.Field(
13863
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("ConnectionRestriction"))),
13864
+ graphql_name="connectionRestrictions",
13865
+ )
13866
+ """List of connections this group is limited to."""
13867
+
13706
13868
  sso_group = sgqlc.types.Field(String, graphql_name="ssoGroup")
13707
13869
  """SSO group name to map this authorization group to"""
13708
13870
 
@@ -14019,7 +14181,15 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14019
14181
  """Output type for Azure DevOps integration."""
14020
14182
 
14021
14183
  __schema__ = schema
14022
- __field_names__ = ("integration_id", "integration_name", "organization")
14184
+ __field_names__ = (
14185
+ "integration_id",
14186
+ "integration_name",
14187
+ "organization",
14188
+ "created_time",
14189
+ "updated_time",
14190
+ "created_by",
14191
+ "last_update_user",
14192
+ )
14023
14193
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
14024
14194
  """The integration ID"""
14025
14195
 
@@ -14031,6 +14201,18 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14031
14201
  organization = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="organization")
14032
14202
  """Azure DevOps organization name"""
14033
14203
 
14204
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
14205
+ """When the integration was created"""
14206
+
14207
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
14208
+ """When the integration was last updated"""
14209
+
14210
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14211
+ """Who created the integration"""
14212
+
14213
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14214
+ """Who last updated the integration"""
14215
+
14034
14216
 
14035
14217
  class AzureDevOpsProjectOutput(sgqlc.types.Type):
14036
14218
  """Output type for Azure DevOps project."""
@@ -14238,6 +14420,10 @@ class BiContainer(sgqlc.types.Type):
14238
14420
  __schema__ = schema
14239
14421
  __field_names__ = (
14240
14422
  "id",
14423
+ "created_time",
14424
+ "updated_time",
14425
+ "created_by",
14426
+ "last_update_user",
14241
14427
  "deleted_at",
14242
14428
  "account",
14243
14429
  "uuid",
@@ -14248,6 +14434,16 @@ class BiContainer(sgqlc.types.Type):
14248
14434
  )
14249
14435
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
14250
14436
 
14437
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
14438
+
14439
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
14440
+
14441
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
14442
+ """Creator"""
14443
+
14444
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
14445
+ """Last updated by"""
14446
+
14251
14447
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
14252
14448
 
14253
14449
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -15091,6 +15287,7 @@ class CategorizedSearchResult(sgqlc.types.Type):
15091
15287
  "is_monitored",
15092
15288
  "is_muted",
15093
15289
  "etl_type",
15290
+ "supports_data_explorer",
15094
15291
  "category",
15095
15292
  "is_dynamic_schedule_supported",
15096
15293
  )
@@ -15179,6 +15376,9 @@ class CategorizedSearchResult(sgqlc.types.Type):
15179
15376
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
15180
15377
  """ETL type of the job asset (if object_type=job)"""
15181
15378
 
15379
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
15380
+ """Whether the table supports data explorer"""
15381
+
15182
15382
  category = sgqlc.types.Field(SearchCategoryEnum, graphql_name="category")
15183
15383
  """Name of the category for the table like: RESOLVED TABLES, ALL
15184
15384
  TABLES etc
@@ -15675,12 +15875,15 @@ class Connection(sgqlc.types.Type):
15675
15875
  __schema__ = schema
15676
15876
  __field_names__ = (
15677
15877
  "id",
15878
+ "created_time",
15879
+ "updated_time",
15880
+ "created_by",
15881
+ "last_update_user",
15678
15882
  "deleted_at",
15679
15883
  "uuid",
15680
15884
  "type",
15681
15885
  "subtype",
15682
15886
  "name",
15683
- "account",
15684
15887
  "warehouse",
15685
15888
  "bi_container",
15686
15889
  "etl_container",
@@ -15695,6 +15898,7 @@ class Connection(sgqlc.types.Type):
15695
15898
  "is_active",
15696
15899
  "disabled_on",
15697
15900
  "dbt_projects",
15901
+ "account",
15698
15902
  "connection_identifier",
15699
15903
  "connection_identifiers",
15700
15904
  "job_errors",
@@ -15703,6 +15907,16 @@ class Connection(sgqlc.types.Type):
15703
15907
  )
15704
15908
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
15705
15909
 
15910
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
15911
+
15912
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
15913
+
15914
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
15915
+ """Creator"""
15916
+
15917
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
15918
+ """Last updated by"""
15919
+
15706
15920
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
15707
15921
 
15708
15922
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -15715,8 +15929,6 @@ class Connection(sgqlc.types.Type):
15715
15929
  name = sgqlc.types.Field(String, graphql_name="name")
15716
15930
  """Connection name"""
15717
15931
 
15718
- account = sgqlc.types.Field(Account, graphql_name="account")
15719
-
15720
15932
  warehouse = sgqlc.types.Field("Warehouse", graphql_name="warehouse")
15721
15933
 
15722
15934
  bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
@@ -15775,6 +15987,8 @@ class Connection(sgqlc.types.Type):
15775
15987
  * `last` (`Int`)None
15776
15988
  """
15777
15989
 
15990
+ account = sgqlc.types.Field(Account, graphql_name="account")
15991
+
15778
15992
  connection_identifier = sgqlc.types.Field(
15779
15993
  "ConnectionIdentifier", graphql_name="connectionIdentifier"
15780
15994
  )
@@ -16347,6 +16561,12 @@ class CreateOrUpdateAgentMonitor(sgqlc.types.Type):
16347
16561
  """SQL queries that will be run by the monitor on each execution."""
16348
16562
 
16349
16563
 
16564
+ class CreateOrUpdateAgentTraceTable(sgqlc.types.Type):
16565
+ __schema__ = schema
16566
+ __field_names__ = ("agent_trace_table",)
16567
+ agent_trace_table = sgqlc.types.Field("AgentTraceTable", graphql_name="agentTraceTable")
16568
+
16569
+
16350
16570
  class CreateOrUpdateAlationIntegration(sgqlc.types.Type):
16351
16571
  """Create or update Alation integration"""
16352
16572
 
@@ -16925,6 +17145,38 @@ class CreateWebexIntegration(sgqlc.types.Type):
16925
17145
  """The integration that was created"""
16926
17146
 
16927
17147
 
17148
+ class CreatorDimension(sgqlc.types.Type):
17149
+ __schema__ = schema
17150
+ __field_names__ = ("full_name", "email", "user_id")
17151
+ full_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="fullName")
17152
+
17153
+ email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="email")
17154
+
17155
+ user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="userId")
17156
+
17157
+
17158
+ class CreatorMonitorCount(sgqlc.types.Type):
17159
+ __schema__ = schema
17160
+ __field_names__ = ("creator", "count")
17161
+ creator = sgqlc.types.Field(sgqlc.types.non_null(CreatorDimension), graphql_name="creator")
17162
+
17163
+ count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
17164
+
17165
+
17166
+ class CreatorMonitorCountsResponse(sgqlc.types.Type):
17167
+ __schema__ = schema
17168
+ __field_names__ = ("results", "total_count", "offset", "limit")
17169
+ results = sgqlc.types.Field(
17170
+ sgqlc.types.non_null(sgqlc.types.list_of(CreatorMonitorCount)), graphql_name="results"
17171
+ )
17172
+
17173
+ total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
17174
+
17175
+ offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
17176
+
17177
+ limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
17178
+
17179
+
16928
17180
  class CustomComparisonMetric(sgqlc.types.Type):
16929
17181
  __schema__ = schema
16930
17182
  __field_names__ = ("uuid", "display_name", "source_sql_expression", "target_sql_expression")
@@ -17520,6 +17772,7 @@ class DataCollectorSchedule(sgqlc.types.Type):
17520
17772
  "queued_at",
17521
17773
  "metric_monitors",
17522
17774
  "custom_rules",
17775
+ "agent_trace_tables",
17523
17776
  )
17524
17777
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
17525
17778
 
@@ -17671,6 +17924,28 @@ class DataCollectorSchedule(sgqlc.types.Type):
17671
17924
  * `warehouse_uuid` (`UUID`)None
17672
17925
  """
17673
17926
 
17927
+ agent_trace_tables = sgqlc.types.Field(
17928
+ sgqlc.types.non_null(AgentTraceTableConnection),
17929
+ graphql_name="agentTraceTables",
17930
+ args=sgqlc.types.ArgDict(
17931
+ (
17932
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
17933
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
17934
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
17935
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
17936
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
17937
+ )
17938
+ ),
17939
+ )
17940
+ """Arguments:
17941
+
17942
+ * `offset` (`Int`)None
17943
+ * `before` (`String`)None
17944
+ * `after` (`String`)None
17945
+ * `first` (`Int`)None
17946
+ * `last` (`Int`)None
17947
+ """
17948
+
17674
17949
 
17675
17950
  class DataCollectorScheduleInfo(sgqlc.types.Type):
17676
17951
  """Detailed information about a data collector schedule"""
@@ -17958,6 +18233,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
17958
18233
  """Contains the nodes in this connection."""
17959
18234
 
17960
18235
 
18236
+ class DataProductDryRunTableCounts(sgqlc.types.Type):
18237
+ __schema__ = schema
18238
+ __field_names__ = (
18239
+ "total_asset_count",
18240
+ "total_asset_monitored_count",
18241
+ "total_asset_unmonitored_count",
18242
+ )
18243
+ total_asset_count = sgqlc.types.Field(Int, graphql_name="totalAssetCount")
18244
+ """Total count of assets that would be in the data product"""
18245
+
18246
+ total_asset_monitored_count = sgqlc.types.Field(Int, graphql_name="totalAssetMonitoredCount")
18247
+ """Total count of already monitored assets"""
18248
+
18249
+ total_asset_unmonitored_count = sgqlc.types.Field(
18250
+ Int, graphql_name="totalAssetUnmonitoredCount"
18251
+ )
18252
+ """Total count of yet unmonitored assets"""
18253
+
18254
+
17961
18255
  class DataProductEdge(sgqlc.types.Type):
17962
18256
  """A Relay edge containing a `DataProduct` and its cursor."""
17963
18257
 
@@ -18349,14 +18643,6 @@ class DatabricksNotebookLink(sgqlc.types.Type):
18349
18643
  """Source location used to create the notebook link."""
18350
18644
 
18351
18645
 
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
18646
  class DatabricksTaskConnection(sgqlc.types.relay.Connection):
18361
18647
  __schema__ = schema
18362
18648
  __field_names__ = ("page_info", "edges")
@@ -18421,7 +18707,16 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18421
18707
  """A Datadog integration"""
18422
18708
 
18423
18709
  __schema__ = schema
18424
- __field_names__ = ("integration_id", "integration_name", "site")
18710
+ __field_names__ = (
18711
+ "integration_id",
18712
+ "integration_name",
18713
+ "site",
18714
+ "default_incident_fields",
18715
+ "created_time",
18716
+ "updated_time",
18717
+ "created_by",
18718
+ "last_update_user",
18719
+ )
18425
18720
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
18426
18721
  """The integration ID"""
18427
18722
 
@@ -18433,6 +18728,45 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18433
18728
  site = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="site")
18434
18729
  """Datadog site (e.g. datadoghq.com)"""
18435
18730
 
18731
+ default_incident_fields = sgqlc.types.Field(JSONString, graphql_name="defaultIncidentFields")
18732
+ """Default values for Datadog incident fields"""
18733
+
18734
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
18735
+ """When the integration was created"""
18736
+
18737
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
18738
+ """When the integration was last updated"""
18739
+
18740
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
18741
+ """Who created the integration"""
18742
+
18743
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
18744
+ """Who last updated the integration"""
18745
+
18746
+
18747
+ class DatadogServiceOutput(sgqlc.types.Type):
18748
+ """A Datadog incident service"""
18749
+
18750
+ __schema__ = schema
18751
+ __field_names__ = ("id", "name")
18752
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
18753
+ """Datadog service id"""
18754
+
18755
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
18756
+ """Service name"""
18757
+
18758
+
18759
+ class DatadogTeamOutput(sgqlc.types.Type):
18760
+ """A Datadog incident team"""
18761
+
18762
+ __schema__ = schema
18763
+ __field_names__ = ("id", "name")
18764
+ id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="id")
18765
+ """Datadog team id"""
18766
+
18767
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
18768
+ """Team name"""
18769
+
18436
18770
 
18437
18771
  class DatadogUserOutput(sgqlc.types.Type):
18438
18772
  """A Datadog user"""
@@ -19706,6 +20040,16 @@ class DomainOutput(sgqlc.types.Type):
19706
20040
  """
19707
20041
 
19708
20042
 
20043
+ class DomainRef(sgqlc.types.Type):
20044
+ __schema__ = schema
20045
+ __field_names__ = ("uuid", "name")
20046
+ uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
20047
+ """Domain UUID"""
20048
+
20049
+ name = sgqlc.types.Field(String, graphql_name="name")
20050
+ """Domain label"""
20051
+
20052
+
19709
20053
  class DomainRestrictionConnection(sgqlc.types.relay.Connection):
19710
20054
  __schema__ = schema
19711
20055
  __field_names__ = ("page_info", "edges")
@@ -19847,6 +20191,24 @@ class Dynamic(sgqlc.types.Type):
19847
20191
  """Explanation if min/max is missing"""
19848
20192
 
19849
20193
 
20194
+ class ETLJobOrTaskSearchResult(sgqlc.types.Type):
20195
+ """Search result for ETL jobs and tasks"""
20196
+
20197
+ __schema__ = schema
20198
+ __field_names__ = ("mcon", "name", "etl_type", "asset_type")
20199
+ mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
20200
+ """Monte Carlo full identifier for an entity"""
20201
+
20202
+ name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
20203
+ """Name of the job or task"""
20204
+
20205
+ etl_type = sgqlc.types.Field(sgqlc.types.non_null(EtlType), graphql_name="etlType")
20206
+ """ETL type (airflow, databricks, azure-data-factory, dbt)"""
20207
+
20208
+ asset_type = sgqlc.types.Field(sgqlc.types.non_null(ETLAssetType), graphql_name="assetType")
20209
+ """Whether this is a job or task"""
20210
+
20211
+
19850
20212
  class ETLJobsConnectionTypeConnection(sgqlc.types.relay.Connection):
19851
20213
  """Etl Jobs"""
19852
20214
 
@@ -19967,6 +20329,10 @@ class EtlContainer(sgqlc.types.Type):
19967
20329
  __schema__ = schema
19968
20330
  __field_names__ = (
19969
20331
  "id",
20332
+ "created_time",
20333
+ "updated_time",
20334
+ "created_by",
20335
+ "last_update_user",
19970
20336
  "deleted_at",
19971
20337
  "account",
19972
20338
  "uuid",
@@ -19993,6 +20359,16 @@ class EtlContainer(sgqlc.types.Type):
19993
20359
  )
19994
20360
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
19995
20361
 
20362
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
20363
+
20364
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
20365
+
20366
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
20367
+ """Creator"""
20368
+
20369
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
20370
+ """Last updated by"""
20371
+
19996
20372
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
19997
20373
 
19998
20374
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -20402,7 +20778,7 @@ class EventEdge(sgqlc.types.Type):
20402
20778
 
20403
20779
  class EventEvaluation(sgqlc.types.Type):
20404
20780
  __schema__ = schema
20405
- __field_names__ = ("field", "function", "prompt", "output_type")
20781
+ __field_names__ = ("field", "function", "prompt", "output_type", "sql_expression")
20406
20782
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
20407
20783
  """Field evaluated"""
20408
20784
 
@@ -20415,6 +20791,9 @@ class EventEvaluation(sgqlc.types.Type):
20415
20791
  output_type = sgqlc.types.Field(String, graphql_name="outputType")
20416
20792
  """Output type used in the evaluation"""
20417
20793
 
20794
+ sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
20795
+ """SQL expression used in the evaluation"""
20796
+
20418
20797
 
20419
20798
  class EventGroup(sgqlc.types.Type):
20420
20799
  __schema__ = schema
@@ -20898,6 +21277,9 @@ class FHEvent(sgqlc.types.Type):
20898
21277
  "historical_mean",
20899
21278
  "detector_feedback",
20900
21279
  "agg_time_interval",
21280
+ "event_type",
21281
+ "time_series_uuid",
21282
+ "parent_time_series_uuid",
20901
21283
  )
20902
21284
  event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
20903
21285
  """UUID of the anomaly event"""
@@ -20956,6 +21338,15 @@ class FHEvent(sgqlc.types.Type):
20956
21338
  timecomponent of the event timestamp should be ignored.
20957
21339
  """
20958
21340
 
21341
+ event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
21342
+ """Type of the event"""
21343
+
21344
+ time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
21345
+ """Time series UUID"""
21346
+
21347
+ parent_time_series_uuid = sgqlc.types.Field(UUID, graphql_name="parentTimeSeriesUuid")
21348
+ """Parent time series UUID"""
21349
+
20959
21350
 
20960
21351
  class FHEvents(sgqlc.types.Type):
20961
21352
  __schema__ = schema
@@ -22660,6 +23051,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22660
23051
  "is_token_auth",
22661
23052
  "webhook_secret_defined",
22662
23053
  "webhook_secret_mismatch_detected",
23054
+ "created_time",
23055
+ "updated_time",
23056
+ "created_by",
23057
+ "last_updated_by",
22663
23058
  )
22664
23059
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
22665
23060
  """The integration ID"""
@@ -22704,6 +23099,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22704
23099
  the received payloads
22705
23100
  """
22706
23101
 
23102
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
23103
+ """When the integration was created"""
23104
+
23105
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
23106
+ """When the integration was last updated"""
23107
+
23108
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
23109
+ """Who created the integration"""
23110
+
23111
+ last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
23112
+ """Who last updated the integration"""
23113
+
22707
23114
 
22708
23115
  class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
22709
23116
  __schema__ = schema
@@ -23041,6 +23448,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23041
23448
  "exceptions_detail",
23042
23449
  "runtime_variables",
23043
23450
  "comparison_data_source_type",
23451
+ "table_monitor_warning",
23452
+ "size_collection_table_mcon",
23453
+ "size_collection_enabled",
23044
23454
  "total_invocations_count",
23045
23455
  "total_result_count",
23046
23456
  "total_execution_duration",
@@ -23080,6 +23490,19 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23080
23490
  )
23081
23491
  """Comparison Source type in the job execution"""
23082
23492
 
23493
+ table_monitor_warning = sgqlc.types.Field(Boolean, graphql_name="tableMonitorWarning")
23494
+ """True if this table monitor execution failure was treated as a
23495
+ warning and no failure notification was sent.
23496
+ """
23497
+
23498
+ size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
23499
+ """MCON of the table for size collection executions in table monitors"""
23500
+
23501
+ size_collection_enabled = sgqlc.types.Field(
23502
+ sgqlc.types.non_null(Boolean), graphql_name="sizeCollectionEnabled"
23503
+ )
23504
+ """True if size collection is enabled for the asset"""
23505
+
23083
23506
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23084
23507
  """Total number of invocations for the job execution. May be null if
23085
23508
  execution has not completed.
@@ -23256,6 +23679,7 @@ class LLMModel(sgqlc.types.Type):
23256
23679
  "category",
23257
23680
  "context_window",
23258
23681
  "regions",
23682
+ "default",
23259
23683
  )
23260
23684
  name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
23261
23685
 
@@ -23269,6 +23693,8 @@ class LLMModel(sgqlc.types.Type):
23269
23693
 
23270
23694
  regions = sgqlc.types.Field(GenericScalar, graphql_name="regions")
23271
23695
 
23696
+ default = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="default")
23697
+
23272
23698
 
23273
23699
  class LabelCount(sgqlc.types.Type):
23274
23700
  __schema__ = schema
@@ -24136,6 +24562,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24136
24562
  "webhook_url",
24137
24563
  "integration_type",
24138
24564
  "headers",
24565
+ "created_time",
24566
+ "updated_time",
24567
+ "created_by",
24568
+ "last_update_user",
24139
24569
  )
24140
24570
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
24141
24571
  """The integration ID"""
@@ -24154,6 +24584,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24154
24584
  headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
24155
24585
  """Header key/value to use when sending webhook request"""
24156
24586
 
24587
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
24588
+ """When the integration was created"""
24589
+
24590
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
24591
+ """When the integration was last updated"""
24592
+
24593
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
24594
+ """Who created the integration"""
24595
+
24596
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
24597
+ """Who last updated the integration"""
24598
+
24157
24599
 
24158
24600
  class LookerDashboardTileRef(sgqlc.types.Type):
24159
24601
  __schema__ = schema
@@ -25156,6 +25598,28 @@ class MonitorTable(sgqlc.types.Type):
25156
25598
  """List of MCONs for the tables with this identifier"""
25157
25599
 
25158
25600
 
25601
+ class MonitorTypeCount(sgqlc.types.Type):
25602
+ __schema__ = schema
25603
+ __field_names__ = ("monitor_type", "count")
25604
+ monitor_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorType")
25605
+
25606
+ count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
25607
+
25608
+
25609
+ class MonitorTypeCountsResponse(sgqlc.types.Type):
25610
+ __schema__ = schema
25611
+ __field_names__ = ("results", "total_count", "offset", "limit")
25612
+ results = sgqlc.types.Field(
25613
+ sgqlc.types.non_null(sgqlc.types.list_of(MonitorTypeCount)), graphql_name="results"
25614
+ )
25615
+
25616
+ total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
25617
+
25618
+ offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
25619
+
25620
+ limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
25621
+
25622
+
25159
25623
  class MonitorWarehouse(sgqlc.types.Type):
25160
25624
  """Warehouse assets referenced by monitors, grouped by name"""
25161
25625
 
@@ -25489,6 +25953,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
25489
25953
  class Mutation(sgqlc.types.Type):
25490
25954
  __schema__ = schema
25491
25955
  __field_names__ = (
25956
+ "create_or_update_agent_trace_table",
25492
25957
  "link_slack_app_installation",
25493
25958
  "create_logs_integration",
25494
25959
  "update_logs_integration",
@@ -25899,7 +26364,6 @@ class Mutation(sgqlc.types.Type):
25899
26364
  "add_databricks_connection",
25900
26365
  "save_event_onboarding_data",
25901
26366
  "delete_event_onboarding_data",
25902
- "migrate_databricks_sql_warehouse",
25903
26367
  "toggle_account_feature",
25904
26368
  "set_tutorial_state",
25905
26369
  "set_data_lake_catalog_mappings",
@@ -25945,6 +26409,29 @@ class Mutation(sgqlc.types.Type):
25945
26409
  "update_account_secret",
25946
26410
  "delete_account_secret",
25947
26411
  )
26412
+ create_or_update_agent_trace_table = sgqlc.types.Field(
26413
+ CreateOrUpdateAgentTraceTable,
26414
+ graphql_name="createOrUpdateAgentTraceTable",
26415
+ args=sgqlc.types.ArgDict(
26416
+ (
26417
+ (
26418
+ "input",
26419
+ sgqlc.types.Arg(
26420
+ sgqlc.types.non_null(CreateOrUpdateAgentTraceTableInput),
26421
+ graphql_name="input",
26422
+ default=None,
26423
+ ),
26424
+ ),
26425
+ )
26426
+ ),
26427
+ )
26428
+ """(experimental) Create or update an agent trace table
26429
+
26430
+ Arguments:
26431
+
26432
+ * `input` (`CreateOrUpdateAgentTraceTableInput!`)None
26433
+ """
26434
+
25948
26435
  link_slack_app_installation = sgqlc.types.Field(
25949
26436
  LinkSlackAppInstallation,
25950
26437
  graphql_name="linkSlackAppInstallation",
@@ -26129,6 +26616,10 @@ class Mutation(sgqlc.types.Type):
26129
26616
  sgqlc.types.non_null(String), graphql_name="applicationKey", default=None
26130
26617
  ),
26131
26618
  ),
26619
+ (
26620
+ "default_incident_fields",
26621
+ sgqlc.types.Arg(JSONString, graphql_name="defaultIncidentFields", default=None),
26622
+ ),
26132
26623
  (
26133
26624
  "integration_name",
26134
26625
  sgqlc.types.Arg(
@@ -26150,6 +26641,8 @@ class Mutation(sgqlc.types.Type):
26150
26641
 
26151
26642
  * `api_key` (`String!`): Datadog API key
26152
26643
  * `application_key` (`String!`): Datadog Application key
26644
+ * `default_incident_fields` (`JSONString`): Default values for
26645
+ Datadog incident fields
26153
26646
  * `integration_name` (`String!`): Identifying name
26154
26647
  * `site` (`String!`): Datadog site (e.g. datadoghq.com)
26155
26648
  """
@@ -26164,6 +26657,10 @@ class Mutation(sgqlc.types.Type):
26164
26657
  "application_key",
26165
26658
  sgqlc.types.Arg(String, graphql_name="applicationKey", default=None),
26166
26659
  ),
26660
+ (
26661
+ "default_incident_fields",
26662
+ sgqlc.types.Arg(JSONString, graphql_name="defaultIncidentFields", default=None),
26663
+ ),
26167
26664
  (
26168
26665
  "integration_id",
26169
26666
  sgqlc.types.Arg(
@@ -26191,6 +26688,8 @@ class Mutation(sgqlc.types.Type):
26191
26688
 
26192
26689
  * `api_key` (`String`): Datadog API key
26193
26690
  * `application_key` (`String`): Datadog Application key
26691
+ * `default_incident_fields` (`JSONString`): Default values for
26692
+ Datadog incident fields
26194
26693
  * `integration_id` (`UUID!`): The integration ID
26195
26694
  * `integration_name` (`String!`): Identifying name
26196
26695
  * `site` (`String!`): Datadog site (e.g. datadoghq.com)
@@ -26233,6 +26732,7 @@ class Mutation(sgqlc.types.Type):
26233
26732
  sgqlc.types.Arg(String, graphql_name="commanderEmail", default=None),
26234
26733
  ),
26235
26734
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
26735
+ ("fields", sgqlc.types.Arg(JSONString, graphql_name="fields", default=None)),
26236
26736
  (
26237
26737
  "integration_id",
26238
26738
  sgqlc.types.Arg(
@@ -26256,6 +26756,8 @@ class Mutation(sgqlc.types.Type):
26256
26756
  * `commander_email` (`String`): Email of the incident commander to
26257
26757
  assign
26258
26758
  * `description` (`String`): Description of the incident
26759
+ * `fields` (`JSONString`): Additional incident fields
26760
+ (key->value).
26259
26761
  * `integration_id` (`UUID!`): ID of the Datadog integration
26260
26762
  * `title` (`String!`): Title of the incident
26261
26763
  """
@@ -33603,6 +34105,7 @@ class Mutation(sgqlc.types.Type):
33603
34105
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33604
34106
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33605
34107
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
34108
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33606
34109
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33607
34110
  (
33608
34111
  "maintenance_type",
@@ -33611,6 +34114,7 @@ class Mutation(sgqlc.types.Type):
33611
34114
  ),
33612
34115
  ),
33613
34116
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
34117
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33614
34118
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33615
34119
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33616
34120
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33625,6 +34129,10 @@ class Mutation(sgqlc.types.Type):
33625
34129
  "time_series_uuid",
33626
34130
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33627
34131
  ),
34132
+ (
34133
+ "where_condition",
34134
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
34135
+ ),
33628
34136
  )
33629
34137
  ),
33630
34138
  )
@@ -33639,6 +34147,10 @@ class Mutation(sgqlc.types.Type):
33639
34147
  given
33640
34148
  * `end_time` (`DateTime`): Start period of data maintenance. If
33641
34149
  not set, all future data will be ignored until updated
34150
+ * `field` (`String`): Field to set maintenance period for. If set,
34151
+ the maintenance windows will only apply to the given field. Used
34152
+ for Monitor related windows only. Deprecated: Use
34153
+ time_series_uuid instead
33642
34154
  * `id` (`Int`): ID of existing data maintenance entry for updating
33643
34155
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33644
34156
  metrics for the object will be ignored
@@ -33647,6 +34159,10 @@ class Mutation(sgqlc.types.Type):
33647
34159
  'project', 'dataset' or any table type. Setting any type other
33648
34160
  than a table type will set the maintenance window for all
33649
34161
  matching tables.
34162
+ * `metric` (`String`): Metric to set maintenance period for. If
34163
+ set, the maintenance windows will only apply to the given
34164
+ metric. Used for Monitor related windows only. Deprecated: Use
34165
+ time_series_uuid instead
33650
34166
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33651
34167
  If set, the maintenance windows will only apply to the given
33652
34168
  monitor.
@@ -33661,6 +34177,10 @@ class Mutation(sgqlc.types.Type):
33661
34177
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33662
34178
  period for. If set, the maintenance windows will only apply to
33663
34179
  the given time series. Used for Monitor related windows only.
34180
+ * `where_condition` (`String`): Where condition to set maintenance
34181
+ period for. If set, the maintenance windows will only apply to
34182
+ the given where condition. Used for Monitor related windows
34183
+ only. Deprecated: Use time_series_uuid instead
33664
34184
  """
33665
34185
 
33666
34186
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -37779,6 +38299,14 @@ class Mutation(sgqlc.types.Type):
37779
38299
  graphql_name="createOrUpdateAuthorizationGroup",
37780
38300
  args=sgqlc.types.ArgDict(
37781
38301
  (
38302
+ (
38303
+ "connection_restriction_ids",
38304
+ sgqlc.types.Arg(
38305
+ sgqlc.types.list_of(UUID),
38306
+ graphql_name="connectionRestrictionIds",
38307
+ default=None,
38308
+ ),
38309
+ ),
37782
38310
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
37783
38311
  (
37784
38312
  "domain_restriction_ids",
@@ -37816,6 +38344,9 @@ class Mutation(sgqlc.types.Type):
37816
38344
 
37817
38345
  Arguments:
37818
38346
 
38347
+ * `connection_restriction_ids` (`[UUID]`): Optional list of
38348
+ connection UUIDs to restrict visibility to. If not provided,
38349
+ will clear/apply no restrictions.
37819
38350
  * `description` (`String`): Description/help text to help users
37820
38351
  understand the purpose of the group. If not provided on updates,
37821
38352
  will keep current value.
@@ -38855,6 +39386,12 @@ class Mutation(sgqlc.types.Type):
38855
39386
  sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
38856
39387
  ),
38857
39388
  ),
39389
+ (
39390
+ "integration_type",
39391
+ sgqlc.types.Arg(
39392
+ sgqlc.types.non_null(String), graphql_name="integrationType", default=None
39393
+ ),
39394
+ ),
38858
39395
  (
38859
39396
  "name",
38860
39397
  sgqlc.types.Arg(
@@ -38869,6 +39406,8 @@ class Mutation(sgqlc.types.Type):
38869
39406
  Arguments:
38870
39407
 
38871
39408
  * `integration_id` (`UUID!`): UUID of the integration to update.
39409
+ * `integration_type` (`String!`): Integration type for direct
39410
+ routing.
38872
39411
  * `name` (`String!`): Desired name.
38873
39412
  """
38874
39413
 
@@ -41231,43 +41770,6 @@ class Mutation(sgqlc.types.Type):
41231
41770
  )
41232
41771
  """Delete stored event onboarding configuration"""
41233
41772
 
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
41773
  toggle_account_feature = sgqlc.types.Field(
41272
41774
  "ToggleAccountFeature",
41273
41775
  graphql_name="toggleAccountFeature",
@@ -43814,6 +44316,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43814
44316
  "webhook_enabled",
43815
44317
  "webhook_url",
43816
44318
  "webhook_secret_defined",
44319
+ "created_time",
44320
+ "updated_time",
44321
+ "created_by",
44322
+ "last_update_user",
43817
44323
  "webhook_secret_mismatch_detected",
43818
44324
  )
43819
44325
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
@@ -43840,6 +44346,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43840
44346
  of webhook payloads sent by PagerDuty
43841
44347
  """
43842
44348
 
44349
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
44350
+ """When the integration was created"""
44351
+
44352
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
44353
+ """When the integration was last updated"""
44354
+
44355
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
44356
+ """Who created the integration"""
44357
+
44358
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
44359
+ """Who last updated the integration"""
44360
+
43843
44361
  webhook_secret_mismatch_detected = sgqlc.types.Field(
43844
44362
  Boolean, graphql_name="webhookSecretMismatchDetected"
43845
44363
  )
@@ -44526,8 +45044,11 @@ class QueriedTable(sgqlc.types.Type):
44526
45044
  class Query(sgqlc.types.Type):
44527
45045
  __schema__ = schema
44528
45046
  __field_names__ = (
45047
+ "get_agent_trace_tables",
44529
45048
  "get_table_monitor_metric",
44530
45049
  "get_tables_for_coverage_dashboard",
45050
+ "get_monitor_counts_by_creator",
45051
+ "get_monitor_counts_by_type",
44531
45052
  "get_logs_integrations",
44532
45053
  "generate_webhook_url",
44533
45054
  "get_user_id",
@@ -44556,6 +45077,8 @@ class Query(sgqlc.types.Type):
44556
45077
  "test_datadog_credentials",
44557
45078
  "get_datadog_integrations",
44558
45079
  "get_datadog_users",
45080
+ "get_datadog_teams",
45081
+ "get_datadog_services",
44559
45082
  "get_billing_credit_grants",
44560
45083
  "get_contract_commits",
44561
45084
  "get_billing_invoices",
@@ -44595,6 +45118,7 @@ class Query(sgqlc.types.Type):
44595
45118
  "get_etl_jobs",
44596
45119
  "get_etl_jobs_v2",
44597
45120
  "get_etl_tasks",
45121
+ "search_etl_jobs_and_tasks",
44598
45122
  "get_data_product",
44599
45123
  "get_data_product_v2",
44600
45124
  "get_data_products",
@@ -44606,6 +45130,7 @@ class Query(sgqlc.types.Type):
44606
45130
  "get_data_product_upstream_counts",
44607
45131
  "get_data_product_audiences",
44608
45132
  "get_top_warehouse_for_data_product_mcons",
45133
+ "get_data_product_dry_run_counts",
44609
45134
  "parse_query",
44610
45135
  "ping_data_collector",
44611
45136
  "get_ms_teams_integrations",
@@ -45005,6 +45530,11 @@ class Query(sgqlc.types.Type):
45005
45530
  "get_account_secret",
45006
45531
  "get_account_secrets",
45007
45532
  )
45533
+ get_agent_trace_tables = sgqlc.types.Field(
45534
+ sgqlc.types.list_of("AgentTraceTable"), graphql_name="getAgentTraceTables"
45535
+ )
45536
+ """(experimental) Get all agent trace tables"""
45537
+
45008
45538
  get_table_monitor_metric = sgqlc.types.Field(
45009
45539
  "TableMonitorMetric",
45010
45540
  graphql_name="getTableMonitorMetric",
@@ -45097,6 +45627,85 @@ class Query(sgqlc.types.Type):
45097
45627
  * `data_product_ids` (`[UUID]`)None
45098
45628
  """
45099
45629
 
45630
+ get_monitor_counts_by_creator = sgqlc.types.Field(
45631
+ CreatorMonitorCountsResponse,
45632
+ graphql_name="getMonitorCountsByCreator",
45633
+ args=sgqlc.types.ArgDict(
45634
+ (
45635
+ (
45636
+ "domain_ids",
45637
+ sgqlc.types.Arg(
45638
+ sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
45639
+ ),
45640
+ ),
45641
+ (
45642
+ "tags",
45643
+ sgqlc.types.Arg(
45644
+ sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
45645
+ ),
45646
+ ),
45647
+ (
45648
+ "data_product_ids",
45649
+ sgqlc.types.Arg(
45650
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
45651
+ ),
45652
+ ),
45653
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
45654
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
45655
+ )
45656
+ ),
45657
+ )
45658
+ """(experimental) Get paginated monitor counts grouped by creator
45659
+
45660
+ Arguments:
45661
+
45662
+ * `domain_ids` (`[UUID]`)None
45663
+ * `tags` (`[TagKeyValuePairInput]`)None
45664
+ * `data_product_ids` (`[UUID]`)None
45665
+ * `offset` (`Int`)None (default: `0`)
45666
+ * `limit` (`Int`)None (default: `15`)
45667
+ """
45668
+
45669
+ get_monitor_counts_by_type = sgqlc.types.Field(
45670
+ MonitorTypeCountsResponse,
45671
+ graphql_name="getMonitorCountsByType",
45672
+ args=sgqlc.types.ArgDict(
45673
+ (
45674
+ (
45675
+ "domain_ids",
45676
+ sgqlc.types.Arg(
45677
+ sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
45678
+ ),
45679
+ ),
45680
+ (
45681
+ "tags",
45682
+ sgqlc.types.Arg(
45683
+ sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
45684
+ ),
45685
+ ),
45686
+ (
45687
+ "data_product_ids",
45688
+ sgqlc.types.Arg(
45689
+ sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
45690
+ ),
45691
+ ),
45692
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
45693
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
45694
+ )
45695
+ ),
45696
+ )
45697
+ """(experimental) Get paginated monitor counts grouped by monitor
45698
+ type
45699
+
45700
+ Arguments:
45701
+
45702
+ * `domain_ids` (`[UUID]`)None
45703
+ * `tags` (`[TagKeyValuePairInput]`)None
45704
+ * `data_product_ids` (`[UUID]`)None
45705
+ * `offset` (`Int`)None (default: `0`)
45706
+ * `limit` (`Int`)None (default: `15`)
45707
+ """
45708
+
45100
45709
  get_logs_integrations = sgqlc.types.Field(
45101
45710
  sgqlc.types.list_of(LogsIntegrationOutput),
45102
45711
  graphql_name="getLogsIntegrations",
@@ -45587,10 +46196,12 @@ class Query(sgqlc.types.Type):
45587
46196
  args=sgqlc.types.ArgDict(
45588
46197
  (
45589
46198
  (
45590
- "warehouse_type",
45591
- sgqlc.types.Arg(
45592
- sgqlc.types.non_null(String), graphql_name="warehouseType", default=None
45593
- ),
46199
+ "warehouse_uuid",
46200
+ sgqlc.types.Arg(UUID, graphql_name="warehouseUuid", default=None),
46201
+ ),
46202
+ (
46203
+ "connection_type",
46204
+ sgqlc.types.Arg(String, graphql_name="connectionType", default=None),
45594
46205
  ),
45595
46206
  )
45596
46207
  ),
@@ -45600,8 +46211,10 @@ class Query(sgqlc.types.Type):
45600
46211
 
45601
46212
  Arguments:
45602
46213
 
45603
- * `warehouse_type` (`String!`): Filter by warehouse type
45604
- (snowflake, bigquery, databricks)
46214
+ * `warehouse_uuid` (`UUID`): Warehouse UUID. If provided, the
46215
+ connection type will be ignored.
46216
+ * `connection_type` (`String`): connection type, for example
46217
+ "snowflake", "bigquery", etc.
45605
46218
  """
45606
46219
 
45607
46220
  run_custom_query = sgqlc.types.Field(
@@ -45733,7 +46346,7 @@ class Query(sgqlc.types.Type):
45733
46346
  """
45734
46347
 
45735
46348
  get_datadog_integrations = sgqlc.types.Field(
45736
- sgqlc.types.list_of(DatadogIntegrationOutput),
46349
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogIntegrationOutput)),
45737
46350
  graphql_name="getDatadogIntegrations",
45738
46351
  args=sgqlc.types.ArgDict(
45739
46352
  (("integration_id", sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None)),)
@@ -45747,7 +46360,7 @@ class Query(sgqlc.types.Type):
45747
46360
  """
45748
46361
 
45749
46362
  get_datadog_users = sgqlc.types.Field(
45750
- sgqlc.types.list_of(DatadogUserOutput),
46363
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogUserOutput)),
45751
46364
  graphql_name="getDatadogUsers",
45752
46365
  args=sgqlc.types.ArgDict(
45753
46366
  (
@@ -45769,6 +46382,103 @@ class Query(sgqlc.types.Type):
45769
46382
  * `query` (`String`): A query to filter users
45770
46383
  """
45771
46384
 
46385
+ get_datadog_teams = sgqlc.types.Field(
46386
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogTeamOutput)),
46387
+ graphql_name="getDatadogTeams",
46388
+ args=sgqlc.types.ArgDict(
46389
+ (
46390
+ (
46391
+ "integration_id",
46392
+ sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None),
46393
+ ),
46394
+ (
46395
+ "integration_site",
46396
+ sgqlc.types.Arg(String, graphql_name="integrationSite", default=None),
46397
+ ),
46398
+ (
46399
+ "integration_api_key",
46400
+ sgqlc.types.Arg(String, graphql_name="integrationApiKey", default=None),
46401
+ ),
46402
+ (
46403
+ "integration_application_key",
46404
+ sgqlc.types.Arg(String, graphql_name="integrationApplicationKey", default=None),
46405
+ ),
46406
+ ("query", sgqlc.types.Arg(String, graphql_name="query", default=None)),
46407
+ (
46408
+ "ids",
46409
+ sgqlc.types.Arg(sgqlc.types.list_of(String), graphql_name="ids", default=None),
46410
+ ),
46411
+ ("page_number", sgqlc.types.Arg(Int, graphql_name="pageNumber", default=None)),
46412
+ ("page_size", sgqlc.types.Arg(Int, graphql_name="pageSize", default=None)),
46413
+ )
46414
+ ),
46415
+ )
46416
+ """(experimental) Get the list of Datadog incident teams. Either
46417
+ provide integration_id OR (integration_site, integration_api_key,
46418
+ integration_application_key) for testing credentials.
46419
+
46420
+ Arguments:
46421
+
46422
+ * `integration_id` (`UUID`): The integration ID (required if not
46423
+ using direct credentials)
46424
+ * `integration_site` (`String`): Datadog site (e.g. datadoghq.com)
46425
+ - for testing without integration
46426
+ * `integration_api_key` (`String`): Datadog API key - for testing
46427
+ without integration
46428
+ * `integration_application_key` (`String`): Datadog Application
46429
+ key - for testing without integration
46430
+ * `query` (`String`): A query to filter teams
46431
+ * `ids` (`[String]`): List of team ids to filter by
46432
+ * `page_number` (`Int`): Page number (default: 0)
46433
+ * `page_size` (`Int`): Page size (default: 100)
46434
+ """
46435
+
46436
+ get_datadog_services = sgqlc.types.Field(
46437
+ sgqlc.types.list_of(sgqlc.types.non_null(DatadogServiceOutput)),
46438
+ graphql_name="getDatadogServices",
46439
+ args=sgqlc.types.ArgDict(
46440
+ (
46441
+ (
46442
+ "integration_id",
46443
+ sgqlc.types.Arg(UUID, graphql_name="integrationId", default=None),
46444
+ ),
46445
+ (
46446
+ "integration_site",
46447
+ sgqlc.types.Arg(String, graphql_name="integrationSite", default=None),
46448
+ ),
46449
+ (
46450
+ "integration_api_key",
46451
+ sgqlc.types.Arg(String, graphql_name="integrationApiKey", default=None),
46452
+ ),
46453
+ (
46454
+ "integration_application_key",
46455
+ sgqlc.types.Arg(String, graphql_name="integrationApplicationKey", default=None),
46456
+ ),
46457
+ ("query", sgqlc.types.Arg(String, graphql_name="query", default=None)),
46458
+ ("page_number", sgqlc.types.Arg(Int, graphql_name="pageNumber", default=None)),
46459
+ ("page_size", sgqlc.types.Arg(Int, graphql_name="pageSize", default=None)),
46460
+ )
46461
+ ),
46462
+ )
46463
+ """(experimental) Get the list of Datadog incident services. Either
46464
+ provide integration_id OR (integration_site, integration_api_key,
46465
+ integration_application_key) for testing credentials.
46466
+
46467
+ Arguments:
46468
+
46469
+ * `integration_id` (`UUID`): The integration ID (required if not
46470
+ using direct credentials)
46471
+ * `integration_site` (`String`): Datadog site (e.g. datadoghq.com)
46472
+ - for testing without integration
46473
+ * `integration_api_key` (`String`): Datadog API key - for testing
46474
+ without integration
46475
+ * `integration_application_key` (`String`): Datadog Application
46476
+ key - for testing without integration
46477
+ * `query` (`String`): A query to filter services
46478
+ * `page_number` (`Int`): Page number (default: 0)
46479
+ * `page_size` (`Int`): Page size (default: 100)
46480
+ """
46481
+
45772
46482
  get_billing_credit_grants = sgqlc.types.Field(
45773
46483
  BillingCreditGrantResults,
45774
46484
  graphql_name="getBillingCreditGrants",
@@ -46776,16 +47486,48 @@ class Query(sgqlc.types.Type):
46776
47486
  sgqlc.types.list_of(String), graphql_name="jobMcons", default=None
46777
47487
  ),
46778
47488
  ),
47489
+ (
47490
+ "task_mcons",
47491
+ sgqlc.types.Arg(
47492
+ sgqlc.types.list_of(String), graphql_name="taskMcons", default=None
47493
+ ),
47494
+ ),
46779
47495
  )
46780
47496
  ),
46781
47497
  )
46782
- """(experimental) Get ETL tasks for the given set of ETL Jobs
47498
+ """(experimental) Get ETL tasks for the given set of ETL Jobs or
47499
+ specific tasks by mcons
46783
47500
 
46784
47501
  Arguments:
46785
47502
 
46786
47503
  * `first` (`Int!`): Page size
46787
47504
  * `offset` (`Int!`): Page offset
46788
47505
  * `job_mcons` (`[String]`): Filter by job mcons
47506
+ * `task_mcons` (`[String]`): Filter by task mcons
47507
+ """
47508
+
47509
+ search_etl_jobs_and_tasks = sgqlc.types.Field(
47510
+ sgqlc.types.list_of(sgqlc.types.non_null(ETLJobOrTaskSearchResult)),
47511
+ graphql_name="searchEtlJobsAndTasks",
47512
+ args=sgqlc.types.ArgDict(
47513
+ (
47514
+ (
47515
+ "search",
47516
+ sgqlc.types.Arg(
47517
+ sgqlc.types.non_null(String), graphql_name="search", default=None
47518
+ ),
47519
+ ),
47520
+ ("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=50)),
47521
+ )
47522
+ ),
47523
+ )
47524
+ """(experimental) Search for ETL jobs and tasks by name across all
47525
+ types
47526
+
47527
+ Arguments:
47528
+
47529
+ * `search` (`String!`): Search string to filter by name
47530
+ * `limit` (`Int`): Maximum results to return (default: `50`)
46789
47531
  """
46790
47532
 
46791
47533
  get_data_product = sgqlc.types.Field(
@@ -47190,6 +47932,31 @@ class Query(sgqlc.types.Type):
47190
47932
  * `mcons` (`[String]!`): List of MCONs to analyze
47191
47933
  """
47192
47934
 
47935
+ get_data_product_dry_run_counts = sgqlc.types.Field(
47936
+ DataProductDryRunTableCounts,
47937
+ graphql_name="getDataProductDryRunCounts",
47938
+ args=sgqlc.types.ArgDict(
47939
+ (
47940
+ (
47941
+ "mcons",
47942
+ sgqlc.types.Arg(
47943
+ sgqlc.types.non_null(sgqlc.types.list_of(String)),
47944
+ graphql_name="mcons",
47945
+ default=None,
47946
+ ),
47947
+ ),
47948
+ )
47949
+ ),
47950
+ )
47951
+ """(experimental) Return asset counts for a data product had it been
47952
+ created from these MCONs
47953
+
47954
+ Arguments:
47955
+
47956
+ * `mcons` (`[String]!`): MCON of assets to create data product
47957
+ from
47958
+ """
47959
+
47193
47960
  parse_query = sgqlc.types.Field(
47194
47961
  "SqlParserResult",
47195
47962
  graphql_name="parseQuery",
@@ -47614,10 +48381,27 @@ class Query(sgqlc.types.Type):
47614
48381
  """
47615
48382
 
47616
48383
  get_my_mcp_integration_keys = sgqlc.types.Field(
47617
- sgqlc.types.list_of(IntegrationKeyMetadata), graphql_name="getMyMcpIntegrationKeys"
48384
+ sgqlc.types.list_of(IntegrationKeyMetadata),
48385
+ graphql_name="getMyMcpIntegrationKeys",
48386
+ args=sgqlc.types.ArgDict(
48387
+ (
48388
+ (
48389
+ "include_created_by_service_accounts",
48390
+ sgqlc.types.Arg(
48391
+ Boolean, graphql_name="includeCreatedByServiceAccounts", default=True
48392
+ ),
48393
+ ),
48394
+ )
48395
+ ),
47618
48396
  )
47619
48397
  """(experimental) Retrieve MCP integration keys created by the
47620
48398
  current user
48399
+
48400
+ Arguments:
48401
+
48402
+ * `include_created_by_service_accounts` (`Boolean`): Whether to
48403
+ include the MCP keys created by service accounts (default:
48404
+ `true`)
47621
48405
  """
47622
48406
 
47623
48407
  get_opsgenie_integrations = sgqlc.types.Field(
@@ -50934,6 +51718,12 @@ class Query(sgqlc.types.Type):
50934
51718
  ),
50935
51719
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
50936
51720
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
51721
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
51722
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
51723
+ (
51724
+ "where_condition",
51725
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
51726
+ ),
50937
51727
  )
50938
51728
  ),
50939
51729
  )
@@ -50946,6 +51736,12 @@ class Query(sgqlc.types.Type):
50946
51736
  time series UUID
50947
51737
  * `start_time` (`DateTime`): Start time of maintenance period
50948
51738
  * `end_time` (`DateTime`): End time of maintenance period
51739
+ * `metric` (`String`): Metric to set maintenance period for.
51740
+ Deprecated: Use time_series_uuid instead
51741
+ * `field` (`String`): Field to set maintenance period for.
51742
+ Deprecated: Use time_series_uuid instead
51743
+ * `where_condition` (`String`): Where condition to set maintenance
51744
+ period for. Deprecated: Use time_series_uuid instead
50949
51745
  """
50950
51746
 
50951
51747
  get_data_maintenance_entries_by_mcon = sgqlc.types.Field(
@@ -51082,6 +51878,10 @@ class Query(sgqlc.types.Type):
51082
51878
  default=None,
51083
51879
  ),
51084
51880
  ),
51881
+ (
51882
+ "trace_timestamp",
51883
+ sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
51884
+ ),
51085
51885
  )
51086
51886
  ),
51087
51887
  )
@@ -51094,6 +51894,8 @@ class Query(sgqlc.types.Type):
51094
51894
  * `trace_mode` (`Boolean`): Consider all the spans (not only the
51095
51895
  recent ones), and sort them by start date. (default: `false`)
51096
51896
  * `trace_ids` (`[String!]`): Filter by specific trace IDs
51897
+ * `trace_timestamp` (`DateTime`): Filter by trace timestamp
51898
+ (inclusive) +- 1 hr
51097
51899
  """
51098
51900
 
51099
51901
  get_agent_span_sample = sgqlc.types.Field(
@@ -51151,6 +51953,10 @@ class Query(sgqlc.types.Type):
51151
51953
  ),
51152
51954
  ),
51153
51955
  ("connection_id", sgqlc.types.Arg(UUID, graphql_name="connectionId", default=None)),
51956
+ (
51957
+ "trace_timestamp",
51958
+ sgqlc.types.Arg(DateTime, graphql_name="traceTimestamp", default=None),
51959
+ ),
51154
51960
  )
51155
51961
  ),
51156
51962
  )
@@ -51180,6 +51986,8 @@ class Query(sgqlc.types.Type):
51180
51986
  * `trace_ids` (`[String!]`): Filter by specific trace IDs (<=
51181
51987
  limit)
51182
51988
  * `connection_id` (`UUID`): Connection UUID
51989
+ * `trace_timestamp` (`DateTime`): Filter by trace timestamp
51990
+ (inclusive) +- 1 hr
51183
51991
  """
51184
51992
 
51185
51993
  evaluate_agent_monitor_data_source = sgqlc.types.Field(
@@ -59987,6 +60795,12 @@ class Query(sgqlc.types.Type):
59987
60795
  ),
59988
60796
  ),
59989
60797
  ("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
60798
+ (
60799
+ "order_by",
60800
+ sgqlc.types.Arg(
60801
+ sgqlc.types.list_of(String), graphql_name="orderBy", default=None
60802
+ ),
60803
+ ),
59990
60804
  ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
59991
60805
  ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
59992
60806
  ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
@@ -60004,6 +60818,8 @@ class Query(sgqlc.types.Type):
60004
60818
  * `roles` (`[String]`): Filter by user roles
60005
60819
  * `search` (`String`): Filter by first name, last name or email
60006
60820
  address
60821
+ * `order_by` (`[String]`): Order by fields. Use camelCase and '-'
60822
+ for desc. e.g. ['email', '-role']
60007
60823
  * `offset` (`Int`)None
60008
60824
  * `before` (`String`)None
60009
60825
  * `after` (`String`)None
@@ -63250,6 +64066,7 @@ class SearchResult(sgqlc.types.Type):
63250
64066
  "is_monitored",
63251
64067
  "is_muted",
63252
64068
  "etl_type",
64069
+ "supports_data_explorer",
63253
64070
  )
63254
64071
  mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
63255
64072
  """Monte Carlo full identifier for an entity"""
@@ -63334,6 +64151,9 @@ class SearchResult(sgqlc.types.Type):
63334
64151
  etl_type = sgqlc.types.Field(EtlType, graphql_name="etlType")
63335
64152
  """ETL type of the job asset (if object_type=job)"""
63336
64153
 
64154
+ supports_data_explorer = sgqlc.types.Field(Boolean, graphql_name="supportsDataExplorer")
64155
+ """Whether the table supports data explorer"""
64156
+
63337
64157
 
63338
64158
  class SearchResultProperty(sgqlc.types.Type):
63339
64159
  """An individual label. Part of the SearchResult"""
@@ -63582,6 +64402,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63582
64402
  "webhook_url",
63583
64403
  "webhook_config",
63584
64404
  "options",
64405
+ "created_time",
64406
+ "updated_time",
64407
+ "created_by",
64408
+ "last_update_user",
63585
64409
  )
63586
64410
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
63587
64411
  """The integration ID"""
@@ -63626,6 +64450,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63626
64450
  options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
63627
64451
  """Options for ServiceNow integration"""
63628
64452
 
64453
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
64454
+ """When the integration was created"""
64455
+
64456
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
64457
+ """When the integration was last updated"""
64458
+
64459
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64460
+ """Who created the integration"""
64461
+
64462
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
64463
+ """Who last updated the integration"""
64464
+
63629
64465
 
63630
64466
  class ServiceNowStateMappingOutput(sgqlc.types.Type):
63631
64467
  __schema__ = schema
@@ -64545,6 +65381,8 @@ class StreamingCluster(sgqlc.types.Type):
64545
65381
  "id",
64546
65382
  "created_time",
64547
65383
  "updated_time",
65384
+ "created_by",
65385
+ "last_update_user",
64548
65386
  "deleted_at",
64549
65387
  "uuid",
64550
65388
  "external_cluster_id",
@@ -64559,6 +65397,12 @@ class StreamingCluster(sgqlc.types.Type):
64559
65397
 
64560
65398
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64561
65399
 
65400
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
65401
+ """Creator"""
65402
+
65403
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
65404
+ """Last updated by"""
65405
+
64562
65406
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64563
65407
 
64564
65408
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -64594,6 +65438,8 @@ class StreamingSystem(sgqlc.types.Type):
64594
65438
  "id",
64595
65439
  "created_time",
64596
65440
  "updated_time",
65441
+ "created_by",
65442
+ "last_update_user",
64597
65443
  "deleted_at",
64598
65444
  "uuid",
64599
65445
  "name",
@@ -64607,6 +65453,12 @@ class StreamingSystem(sgqlc.types.Type):
64607
65453
 
64608
65454
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64609
65455
 
65456
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
65457
+ """Creator"""
65458
+
65459
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
65460
+ """Last updated by"""
65461
+
64610
65462
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64611
65463
 
64612
65464
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -65351,31 +66203,6 @@ class TableFieldsImportance(sgqlc.types.Type):
65351
66203
  )
65352
66204
 
65353
66205
 
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
66206
  class TableImportanceStatsResponse(sgqlc.types.Type):
65380
66207
  __schema__ = schema
65381
66208
  __field_names__ = ("is_important", "importance_score")
@@ -68531,6 +69358,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68531
69358
  "domain_restrictions",
68532
69359
  "permissions",
68533
69360
  "performance_dashboard_access",
69361
+ "can_edit_table_monitors",
68534
69362
  )
68535
69363
  groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
68536
69364
  """List of the groups this user is a member of."""
@@ -68555,6 +69383,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68555
69383
  "ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
68556
69384
  )
68557
69385
 
69386
+ can_edit_table_monitors = sgqlc.types.Field(Boolean, graphql_name="canEditTableMonitors")
69387
+ """Whether the user can create, update or delete table monitors."""
69388
+
68558
69389
 
68559
69390
  class UserBasicInfoConnection(sgqlc.types.relay.Connection):
68560
69391
  __schema__ = schema
@@ -69053,6 +69884,9 @@ class Warehouse(sgqlc.types.Type):
69053
69884
  __schema__ = schema
69054
69885
  __field_names__ = (
69055
69886
  "id",
69887
+ "created_time",
69888
+ "updated_time",
69889
+ "last_update_user",
69056
69890
  "uuid",
69057
69891
  "name",
69058
69892
  "connection_type",
@@ -69105,6 +69939,13 @@ class Warehouse(sgqlc.types.Type):
69105
69939
  )
69106
69940
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
69107
69941
 
69942
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
69943
+
69944
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
69945
+
69946
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
69947
+ """Last updated by"""
69948
+
69108
69949
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69109
69950
 
69110
69951
  name = sgqlc.types.Field(String, graphql_name="name")
@@ -69528,7 +70369,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69528
70369
  """A Webex integration"""
69529
70370
 
69530
70371
  __schema__ = schema
69531
- __field_names__ = ("integration_id", "integration_name")
70372
+ __field_names__ = (
70373
+ "integration_id",
70374
+ "integration_name",
70375
+ "created_time",
70376
+ "updated_time",
70377
+ "created_by",
70378
+ "last_update_user",
70379
+ )
69532
70380
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
69533
70381
  """The integration ID"""
69534
70382
 
@@ -69537,6 +70385,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69537
70385
  )
69538
70386
  """A short name to identify the integration"""
69539
70387
 
70388
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
70389
+ """When the integration was created"""
70390
+
70391
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
70392
+ """When the integration was last updated"""
70393
+
70394
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
70395
+ """Who created the integration"""
70396
+
70397
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
70398
+ """Who last updated the integration"""
70399
+
69540
70400
 
69541
70401
  class WebexTestCredentialsOutput(sgqlc.types.Type):
69542
70402
  """A Webex test credentials result"""
@@ -69923,6 +70783,39 @@ class AdfTaskRun(sgqlc.types.Type, Node):
69923
70783
  """MCON of Job for provided job_id"""
69924
70784
 
69925
70785
 
70786
+ class AgentTraceTable(sgqlc.types.Type, Node):
70787
+ __schema__ = schema
70788
+ __field_names__ = (
70789
+ "created_time",
70790
+ "updated_time",
70791
+ "uuid",
70792
+ "account",
70793
+ "table",
70794
+ "span_format",
70795
+ "schedule",
70796
+ )
70797
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
70798
+
70799
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
70800
+
70801
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
70802
+ """Unique ID of the Agent Trace Table."""
70803
+
70804
+ account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
70805
+
70806
+ table = sgqlc.types.Field(sgqlc.types.non_null("WarehouseTable"), graphql_name="table")
70807
+ """Agent trace table"""
70808
+
70809
+ span_format = sgqlc.types.Field(
70810
+ sgqlc.types.non_null(AgentTraceTableModelSpanFormat), graphql_name="spanFormat"
70811
+ )
70812
+ """Format of spans in the table."""
70813
+
70814
+ schedule = sgqlc.types.Field(
70815
+ sgqlc.types.non_null(DataCollectorSchedule), graphql_name="schedule"
70816
+ )
70817
+
70818
+
69926
70819
  class AirflowDag(sgqlc.types.Type, Node):
69927
70820
  __schema__ = schema
69928
70821
  __field_names__ = (
@@ -70238,6 +71131,7 @@ class AirflowTaskRun(sgqlc.types.Type, Node):
70238
71131
  "task_mcon",
70239
71132
  "job_mcon",
70240
71133
  "log_url",
71134
+ "attempts",
70241
71135
  )
70242
71136
  created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
70243
71137
 
@@ -70306,6 +71200,11 @@ class AirflowTaskRun(sgqlc.types.Type, Node):
70306
71200
  log_url = sgqlc.types.Field(String, graphql_name="logUrl")
70307
71201
  """Log URL for the Task Run"""
70308
71202
 
71203
+ attempts = sgqlc.types.Field(
71204
+ sgqlc.types.list_of(AirflowTaskRunAttempt), graphql_name="attempts"
71205
+ )
71206
+ """List of all retry attempts for this task run"""
71207
+
70309
71208
 
70310
71209
  class AlationIntegration(sgqlc.types.Type, Node):
70311
71210
  __schema__ = schema
@@ -70378,6 +71277,11 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70378
71277
  "priority",
70379
71278
  "status",
70380
71279
  "tables",
71280
+ "audiences",
71281
+ "monitor_tags",
71282
+ "invalid_rows",
71283
+ "domains",
71284
+ "comment_count",
70381
71285
  "jira_tickets",
70382
71286
  "service_now_incidents",
70383
71287
  "opsgenie_incidents",
@@ -70417,6 +71321,23 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70417
71321
  tables = sgqlc.types.Field(sgqlc.types.list_of(TableOutput), graphql_name="tables")
70418
71322
  """Tables or views associated with the alert"""
70419
71323
 
71324
+ audiences = sgqlc.types.Field(sgqlc.types.list_of(AudienceRef), graphql_name="audiences")
71325
+ """List of audiences associated with the alert"""
71326
+
71327
+ monitor_tags = sgqlc.types.Field(
71328
+ sgqlc.types.list_of(TagKeyValuePairOutput), graphql_name="monitorTags"
71329
+ )
71330
+ """Monitor tags associated with the alert"""
71331
+
71332
+ invalid_rows = sgqlc.types.Field(String, graphql_name="invalidRows")
71333
+ """Number of invalid rows of a breached monitor if available"""
71334
+
71335
+ domains = sgqlc.types.Field(sgqlc.types.list_of(DomainRef), graphql_name="domains")
71336
+ """List of domain associated with the alert"""
71337
+
71338
+ comment_count = sgqlc.types.Field(Int, graphql_name="commentCount")
71339
+ """Number of user comments associated with the alert"""
71340
+
70420
71341
  jira_tickets = sgqlc.types.Field(sgqlc.types.list_of("JiraTicket"), graphql_name="jiraTickets")
70421
71342
  """Jira tickets associated with the alert"""
70422
71343
 
@@ -70652,6 +71573,10 @@ class AuthUser(sgqlc.types.Type, Node):
70652
71573
  "delete_reason",
70653
71574
  "invalidated_at",
70654
71575
  "persona",
71576
+ "streamingsystemmodel_created_by",
71577
+ "streamingsystemmodel_updated_by",
71578
+ "streamingclustermodel_created_by",
71579
+ "streamingclustermodel_updated_by",
70655
71580
  "monitor_labels_created",
70656
71581
  "routing_rules_created_by",
70657
71582
  "routing_rules_updated_by",
@@ -70662,6 +71587,13 @@ class AuthUser(sgqlc.types.Type, Node):
70662
71587
  "invitees",
70663
71588
  "warehouse_deleted_by",
70664
71589
  "created_warehouses",
71590
+ "warehousemodel_updated_by",
71591
+ "bicontainermodel_created_by",
71592
+ "bicontainermodel_updated_by",
71593
+ "etlcontainermodel_created_by",
71594
+ "etlcontainermodel_updated_by",
71595
+ "connectionmodel_created_by",
71596
+ "connectionmodel_updated_by",
70665
71597
  "eventmodel_set",
70666
71598
  "eventdetectorfeedbackmodel_created_by",
70667
71599
  "eventdetectorfeedbackmodel_updated_by",
@@ -70759,6 +71691,30 @@ class AuthUser(sgqlc.types.Type, Node):
70759
71691
  experience and the onboarding flow.
70760
71692
  """
70761
71693
 
71694
+ streamingsystemmodel_created_by = sgqlc.types.Field(
71695
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
71696
+ graphql_name="streamingsystemmodelCreatedBy",
71697
+ )
71698
+ """Creator"""
71699
+
71700
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
71701
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
71702
+ graphql_name="streamingsystemmodelUpdatedBy",
71703
+ )
71704
+ """Last updated by"""
71705
+
71706
+ streamingclustermodel_created_by = sgqlc.types.Field(
71707
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71708
+ graphql_name="streamingclustermodelCreatedBy",
71709
+ )
71710
+ """Creator"""
71711
+
71712
+ streamingclustermodel_updated_by = sgqlc.types.Field(
71713
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71714
+ graphql_name="streamingclustermodelUpdatedBy",
71715
+ )
71716
+ """Last updated by"""
71717
+
70762
71718
  monitor_labels_created = sgqlc.types.Field(
70763
71719
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
70764
71720
  graphql_name="monitorLabelsCreated",
@@ -70878,6 +71834,48 @@ class AuthUser(sgqlc.types.Type, Node):
70878
71834
  )
70879
71835
  """User who created this warehouse"""
70880
71836
 
71837
+ warehousemodel_updated_by = sgqlc.types.Field(
71838
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
71839
+ graphql_name="warehousemodelUpdatedBy",
71840
+ )
71841
+ """Last updated by"""
71842
+
71843
+ bicontainermodel_created_by = sgqlc.types.Field(
71844
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71845
+ graphql_name="bicontainermodelCreatedBy",
71846
+ )
71847
+ """Creator"""
71848
+
71849
+ bicontainermodel_updated_by = sgqlc.types.Field(
71850
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71851
+ graphql_name="bicontainermodelUpdatedBy",
71852
+ )
71853
+ """Last updated by"""
71854
+
71855
+ etlcontainermodel_created_by = sgqlc.types.Field(
71856
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71857
+ graphql_name="etlcontainermodelCreatedBy",
71858
+ )
71859
+ """Creator"""
71860
+
71861
+ etlcontainermodel_updated_by = sgqlc.types.Field(
71862
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71863
+ graphql_name="etlcontainermodelUpdatedBy",
71864
+ )
71865
+ """Last updated by"""
71866
+
71867
+ connectionmodel_created_by = sgqlc.types.Field(
71868
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71869
+ graphql_name="connectionmodelCreatedBy",
71870
+ )
71871
+ """Creator"""
71872
+
71873
+ connectionmodel_updated_by = sgqlc.types.Field(
71874
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71875
+ graphql_name="connectionmodelUpdatedBy",
71876
+ )
71877
+ """Last updated by"""
71878
+
70881
71879
  eventmodel_set = sgqlc.types.Field(
70882
71880
  sgqlc.types.non_null(EventConnection),
70883
71881
  graphql_name="eventmodelSet",
@@ -71962,6 +72960,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
71962
72960
  class CollibraIntegration(sgqlc.types.Type, Node):
71963
72961
  __schema__ = schema
71964
72962
  __field_names__ = (
72963
+ "last_update_user",
71965
72964
  "uuid",
71966
72965
  "integration_name",
71967
72966
  "server_url",
@@ -71972,6 +72971,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
71972
72971
  "created_by",
71973
72972
  "warehouse_domain_mapping",
71974
72973
  )
72974
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
72975
+ """Last updated by"""
72976
+
71975
72977
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
71976
72978
  """Integration external ID"""
71977
72979
 
@@ -72061,6 +73063,114 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
72061
73063
  )
72062
73064
 
72063
73065
 
73066
+ class ConnectionRestriction(sgqlc.types.Type, Node):
73067
+ __schema__ = schema
73068
+ __field_names__ = (
73069
+ "created_time",
73070
+ "updated_time",
73071
+ "created_by",
73072
+ "last_update_user",
73073
+ "deleted_at",
73074
+ "uuid",
73075
+ "type",
73076
+ "subtype",
73077
+ "name",
73078
+ "warehouse",
73079
+ "bi_container",
73080
+ "etl_container",
73081
+ "deletion_protection",
73082
+ "job_types",
73083
+ "streaming_cluster",
73084
+ "credentials_s3_key",
73085
+ "integration_gateway_credentials_key",
73086
+ "data",
73087
+ "created_on",
73088
+ "updated_on",
73089
+ "is_active",
73090
+ "disabled_on",
73091
+ "dbt_projects",
73092
+ )
73093
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73094
+
73095
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
73096
+
73097
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
73098
+ """Creator"""
73099
+
73100
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
73101
+ """Last updated by"""
73102
+
73103
+ deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
73104
+
73105
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
73106
+
73107
+ type = sgqlc.types.Field(sgqlc.types.non_null(ConnectionModelType), graphql_name="type")
73108
+
73109
+ subtype = sgqlc.types.Field(String, graphql_name="subtype")
73110
+ """Subtype of a plugin connection"""
73111
+
73112
+ name = sgqlc.types.Field(String, graphql_name="name")
73113
+ """Name of the connection"""
73114
+
73115
+ warehouse = sgqlc.types.Field(Warehouse, graphql_name="warehouse")
73116
+
73117
+ bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
73118
+
73119
+ etl_container = sgqlc.types.Field(EtlContainer, graphql_name="etlContainer")
73120
+
73121
+ deletion_protection = sgqlc.types.Field(
73122
+ sgqlc.types.non_null(Boolean), graphql_name="deletionProtection"
73123
+ )
73124
+ """Prevents deletion when enabled."""
73125
+
73126
+ job_types = sgqlc.types.Field(
73127
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
73128
+ graphql_name="jobTypes",
73129
+ )
73130
+
73131
+ streaming_cluster = sgqlc.types.Field(StreamingCluster, graphql_name="streamingCluster")
73132
+
73133
+ credentials_s3_key = sgqlc.types.Field(String, graphql_name="credentialsS3Key")
73134
+
73135
+ integration_gateway_credentials_key = sgqlc.types.Field(
73136
+ String, graphql_name="integrationGatewayCredentialsKey"
73137
+ )
73138
+
73139
+ data = sgqlc.types.Field(JSONString, graphql_name="data")
73140
+
73141
+ created_on = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdOn")
73142
+
73143
+ updated_on = sgqlc.types.Field(DateTime, graphql_name="updatedOn")
73144
+
73145
+ is_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isActive")
73146
+
73147
+ disabled_on = sgqlc.types.Field(DateTime, graphql_name="disabledOn")
73148
+
73149
+ dbt_projects = sgqlc.types.Field(
73150
+ sgqlc.types.non_null(DbtProjectConnection),
73151
+ graphql_name="dbtProjects",
73152
+ args=sgqlc.types.ArgDict(
73153
+ (
73154
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
73155
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
73156
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
73157
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
73158
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
73159
+ )
73160
+ ),
73161
+ )
73162
+ """dbt connection
73163
+
73164
+ Arguments:
73165
+
73166
+ * `offset` (`Int`)None
73167
+ * `before` (`String`)None
73168
+ * `after` (`String`)None
73169
+ * `first` (`Int`)None
73170
+ * `last` (`Int`)None
73171
+ """
73172
+
73173
+
72064
73174
  class CustomRule(sgqlc.types.Type, Node):
72065
73175
  __schema__ = schema
72066
73176
  __field_names__ = (
@@ -74041,6 +75151,7 @@ class DbtProject(sgqlc.types.Type, Node):
74041
75151
  "config",
74042
75152
  "last_model_import",
74043
75153
  "last_test_import",
75154
+ "name",
74044
75155
  "dbt_jobs",
74045
75156
  "dbt_nodes",
74046
75157
  "dbt_edges",
@@ -74093,6 +75204,9 @@ class DbtProject(sgqlc.types.Type, Node):
74093
75204
  last_test_import = sgqlc.types.Field(DateTime, graphql_name="lastTestImport")
74094
75205
  """The date of the last test import we know about"""
74095
75206
 
75207
+ name = sgqlc.types.Field(String, graphql_name="name")
75208
+ """A friendly name for the integration"""
75209
+
74096
75210
  dbt_jobs = sgqlc.types.Field(
74097
75211
  DbtJobConnection,
74098
75212
  graphql_name="dbtJobs",
@@ -74551,6 +75665,8 @@ class Event(sgqlc.types.Type, Node):
74551
75665
  "is_merged",
74552
75666
  "description",
74553
75667
  "mentioned_users",
75668
+ "agent_span_filters",
75669
+ "filters",
74554
75670
  )
74555
75671
  event_type = sgqlc.types.Field(
74556
75672
  sgqlc.types.non_null(EventModelEventType), graphql_name="eventType"
@@ -74701,6 +75817,14 @@ class Event(sgqlc.types.Type, Node):
74701
75817
  )
74702
75818
  """Users that are mentioned in any of the comments"""
74703
75819
 
75820
+ agent_span_filters = sgqlc.types.Field(
75821
+ sgqlc.types.list_of(sgqlc.types.non_null(AgentSpanFilter)), graphql_name="agentSpanFilters"
75822
+ )
75823
+ """agent span filters used on the monitor"""
75824
+
75825
+ filters = sgqlc.types.Field("FilterGroup", graphql_name="filters")
75826
+ """filters used on the monitor"""
75827
+
74704
75828
 
74705
75829
  class EventDataIncidentCommentTimeline(sgqlc.types.Type, IEventDataBaseTimeline):
74706
75830
  __schema__ = schema
@@ -74854,9 +75978,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
74854
75978
 
74855
75979
  class FilterValueField(sgqlc.types.Type, FilterValueInterface):
74856
75980
  __schema__ = schema
74857
- __field_names__ = ("field", "mcon")
75981
+ __field_names__ = ("field", "table", "mcon")
74858
75982
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
74859
75983
 
75984
+ table = sgqlc.types.Field(String, graphql_name="table")
75985
+
74860
75986
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
74861
75987
 
74862
75988
 
@@ -76751,6 +77877,10 @@ class User(sgqlc.types.Type, Node):
76751
77877
  "delete_reason",
76752
77878
  "invalidated_at",
76753
77879
  "persona",
77880
+ "streamingsystemmodel_created_by",
77881
+ "streamingsystemmodel_updated_by",
77882
+ "streamingclustermodel_created_by",
77883
+ "streamingclustermodel_updated_by",
76754
77884
  "monitor_labels_created",
76755
77885
  "routing_rules_created_by",
76756
77886
  "routing_rules_updated_by",
@@ -76761,6 +77891,13 @@ class User(sgqlc.types.Type, Node):
76761
77891
  "invitees",
76762
77892
  "warehouse_deleted_by",
76763
77893
  "created_warehouses",
77894
+ "warehousemodel_updated_by",
77895
+ "bicontainermodel_created_by",
77896
+ "bicontainermodel_updated_by",
77897
+ "etlcontainermodel_created_by",
77898
+ "etlcontainermodel_updated_by",
77899
+ "connectionmodel_created_by",
77900
+ "connectionmodel_updated_by",
76764
77901
  "eventmodel_set",
76765
77902
  "eventdetectorfeedbackmodel_created_by",
76766
77903
  "eventdetectorfeedbackmodel_updated_by",
@@ -76812,6 +77949,7 @@ class User(sgqlc.types.Type, Node):
76812
77949
  "account",
76813
77950
  "role",
76814
77951
  "auth",
77952
+ "allowed_connections",
76815
77953
  )
76816
77954
  cognito_user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cognitoUserId")
76817
77955
 
@@ -76861,6 +77999,30 @@ class User(sgqlc.types.Type, Node):
76861
77999
  experience and the onboarding flow.
76862
78000
  """
76863
78001
 
78002
+ streamingsystemmodel_created_by = sgqlc.types.Field(
78003
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
78004
+ graphql_name="streamingsystemmodelCreatedBy",
78005
+ )
78006
+ """Creator"""
78007
+
78008
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
78009
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
78010
+ graphql_name="streamingsystemmodelUpdatedBy",
78011
+ )
78012
+ """Last updated by"""
78013
+
78014
+ streamingclustermodel_created_by = sgqlc.types.Field(
78015
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78016
+ graphql_name="streamingclustermodelCreatedBy",
78017
+ )
78018
+ """Creator"""
78019
+
78020
+ streamingclustermodel_updated_by = sgqlc.types.Field(
78021
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78022
+ graphql_name="streamingclustermodelUpdatedBy",
78023
+ )
78024
+ """Last updated by"""
78025
+
76864
78026
  monitor_labels_created = sgqlc.types.Field(
76865
78027
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
76866
78028
  graphql_name="monitorLabelsCreated",
@@ -76980,6 +78142,48 @@ class User(sgqlc.types.Type, Node):
76980
78142
  )
76981
78143
  """User who created this warehouse"""
76982
78144
 
78145
+ warehousemodel_updated_by = sgqlc.types.Field(
78146
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
78147
+ graphql_name="warehousemodelUpdatedBy",
78148
+ )
78149
+ """Last updated by"""
78150
+
78151
+ bicontainermodel_created_by = sgqlc.types.Field(
78152
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78153
+ graphql_name="bicontainermodelCreatedBy",
78154
+ )
78155
+ """Creator"""
78156
+
78157
+ bicontainermodel_updated_by = sgqlc.types.Field(
78158
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78159
+ graphql_name="bicontainermodelUpdatedBy",
78160
+ )
78161
+ """Last updated by"""
78162
+
78163
+ etlcontainermodel_created_by = sgqlc.types.Field(
78164
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78165
+ graphql_name="etlcontainermodelCreatedBy",
78166
+ )
78167
+ """Creator"""
78168
+
78169
+ etlcontainermodel_updated_by = sgqlc.types.Field(
78170
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78171
+ graphql_name="etlcontainermodelUpdatedBy",
78172
+ )
78173
+ """Last updated by"""
78174
+
78175
+ connectionmodel_created_by = sgqlc.types.Field(
78176
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78177
+ graphql_name="connectionmodelCreatedBy",
78178
+ )
78179
+ """Creator"""
78180
+
78181
+ connectionmodel_updated_by = sgqlc.types.Field(
78182
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78183
+ graphql_name="connectionmodelUpdatedBy",
78184
+ )
78185
+ """Last updated by"""
78186
+
76983
78187
  eventmodel_set = sgqlc.types.Field(
76984
78188
  sgqlc.types.non_null(EventConnection),
76985
78189
  graphql_name="eventmodelSet",
@@ -77956,6 +79160,12 @@ class User(sgqlc.types.Type, Node):
77956
79160
  auth = sgqlc.types.Field(UserAuthorizationOutput, graphql_name="auth")
77957
79161
  """User's aggregate authorization policy."""
77958
79162
 
79163
+ allowed_connections = sgqlc.types.Field(
79164
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
79165
+ graphql_name="allowedConnections",
79166
+ )
79167
+ """Connections this user is allowed to use. Empty means unrestricted."""
79168
+
77959
79169
 
77960
79170
  class UserBasicInfo(sgqlc.types.Type, Node):
77961
79171
  __schema__ = schema
@@ -78364,6 +79574,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
78364
79574
  "dbt_nodes",
78365
79575
  "dbt_run_steps",
78366
79576
  "fivetranconnectormodel_set",
79577
+ "agent_trace_tables",
78367
79578
  "thresholds",
78368
79579
  "get_thresholds",
78369
79580
  "freshness_anomaly",
@@ -78375,7 +79586,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
78375
79586
  "status_scalar",
78376
79587
  "node_id",
78377
79588
  "is_partial_date_range",
78378
- "freshness",
78379
79589
  "freshness_collection_status",
78380
79590
  "volume_collection_status",
78381
79591
  "is_muted",
@@ -78769,6 +79979,30 @@ class WarehouseTable(sgqlc.types.Type, Node):
78769
79979
  * `last` (`Int`)None
78770
79980
  """
78771
79981
 
79982
+ agent_trace_tables = sgqlc.types.Field(
79983
+ sgqlc.types.non_null(AgentTraceTableConnection),
79984
+ graphql_name="agentTraceTables",
79985
+ args=sgqlc.types.ArgDict(
79986
+ (
79987
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
79988
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
79989
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
79990
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
79991
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
79992
+ )
79993
+ ),
79994
+ )
79995
+ """Agent trace table
79996
+
79997
+ Arguments:
79998
+
79999
+ * `offset` (`Int`)None
80000
+ * `before` (`String`)None
80001
+ * `after` (`String`)None
80002
+ * `first` (`Int`)None
80003
+ * `last` (`Int`)None
80004
+ """
80005
+
78772
80006
  thresholds = sgqlc.types.Field(ThresholdsData, graphql_name="thresholds")
78773
80007
  """Section describing various anomaly thresholds for the table"""
78774
80008
 
@@ -78816,30 +80050,6 @@ class WarehouseTable(sgqlc.types.Type, Node):
78816
80050
  * `end_time` (`DateTime`)None
78817
80051
  """
78818
80052
 
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
80053
  freshness_collection_status = sgqlc.types.Field(
78844
80054
  TableCollectionStatus, graphql_name="freshnessCollectionStatus"
78845
80055
  )