pycarlo 0.10.204__py3-none-any.whl → 0.10.234__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.

Potentially problematic release.


This version of pycarlo might be problematic. Click here for more details.

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")
@@ -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")
@@ -13621,6 +13731,16 @@ class AudienceMonitorEdge(sgqlc.types.Type):
13621
13731
  """A cursor for use in pagination"""
13622
13732
 
13623
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
+
13624
13744
  class AudienceRoutingStats(sgqlc.types.Type):
13625
13745
  __schema__ = schema
13626
13746
  __field_names__ = (
@@ -13697,6 +13817,7 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13697
13817
  "description",
13698
13818
  "users",
13699
13819
  "domain_restrictions",
13820
+ "connection_restrictions",
13700
13821
  "sso_group",
13701
13822
  "source",
13702
13823
  "is_membership_managed",
@@ -13738,6 +13859,12 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
13738
13859
  )
13739
13860
  """List of domains this group is limited to."""
13740
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
+
13741
13868
  sso_group = sgqlc.types.Field(String, graphql_name="ssoGroup")
13742
13869
  """SSO group name to map this authorization group to"""
13743
13870
 
@@ -14054,7 +14181,15 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14054
14181
  """Output type for Azure DevOps integration."""
14055
14182
 
14056
14183
  __schema__ = schema
14057
- __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
+ )
14058
14193
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
14059
14194
  """The integration ID"""
14060
14195
 
@@ -14066,6 +14201,18 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
14066
14201
  organization = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="organization")
14067
14202
  """Azure DevOps organization name"""
14068
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
+
14069
14216
 
14070
14217
  class AzureDevOpsProjectOutput(sgqlc.types.Type):
14071
14218
  """Output type for Azure DevOps project."""
@@ -14273,6 +14420,10 @@ class BiContainer(sgqlc.types.Type):
14273
14420
  __schema__ = schema
14274
14421
  __field_names__ = (
14275
14422
  "id",
14423
+ "created_time",
14424
+ "updated_time",
14425
+ "created_by",
14426
+ "last_update_user",
14276
14427
  "deleted_at",
14277
14428
  "account",
14278
14429
  "uuid",
@@ -14283,6 +14434,16 @@ class BiContainer(sgqlc.types.Type):
14283
14434
  )
14284
14435
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
14285
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
+
14286
14447
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
14287
14448
 
14288
14449
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -15714,12 +15875,15 @@ class Connection(sgqlc.types.Type):
15714
15875
  __schema__ = schema
15715
15876
  __field_names__ = (
15716
15877
  "id",
15878
+ "created_time",
15879
+ "updated_time",
15880
+ "created_by",
15881
+ "last_update_user",
15717
15882
  "deleted_at",
15718
15883
  "uuid",
15719
15884
  "type",
15720
15885
  "subtype",
15721
15886
  "name",
15722
- "account",
15723
15887
  "warehouse",
15724
15888
  "bi_container",
15725
15889
  "etl_container",
@@ -15734,6 +15898,7 @@ class Connection(sgqlc.types.Type):
15734
15898
  "is_active",
15735
15899
  "disabled_on",
15736
15900
  "dbt_projects",
15901
+ "account",
15737
15902
  "connection_identifier",
15738
15903
  "connection_identifiers",
15739
15904
  "job_errors",
@@ -15742,6 +15907,16 @@ class Connection(sgqlc.types.Type):
15742
15907
  )
15743
15908
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
15744
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
+
15745
15920
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
15746
15921
 
15747
15922
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -15754,8 +15929,6 @@ class Connection(sgqlc.types.Type):
15754
15929
  name = sgqlc.types.Field(String, graphql_name="name")
15755
15930
  """Connection name"""
15756
15931
 
15757
- account = sgqlc.types.Field(Account, graphql_name="account")
15758
-
15759
15932
  warehouse = sgqlc.types.Field("Warehouse", graphql_name="warehouse")
15760
15933
 
15761
15934
  bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
@@ -15814,6 +15987,8 @@ class Connection(sgqlc.types.Type):
15814
15987
  * `last` (`Int`)None
15815
15988
  """
15816
15989
 
15990
+ account = sgqlc.types.Field(Account, graphql_name="account")
15991
+
15817
15992
  connection_identifier = sgqlc.types.Field(
15818
15993
  "ConnectionIdentifier", graphql_name="connectionIdentifier"
15819
15994
  )
@@ -16386,6 +16561,12 @@ class CreateOrUpdateAgentMonitor(sgqlc.types.Type):
16386
16561
  """SQL queries that will be run by the monitor on each execution."""
16387
16562
 
16388
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
+
16389
16570
  class CreateOrUpdateAlationIntegration(sgqlc.types.Type):
16390
16571
  """Create or update Alation integration"""
16391
16572
 
@@ -16964,6 +17145,38 @@ class CreateWebexIntegration(sgqlc.types.Type):
16964
17145
  """The integration that was created"""
16965
17146
 
16966
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
+
16967
17180
  class CustomComparisonMetric(sgqlc.types.Type):
16968
17181
  __schema__ = schema
16969
17182
  __field_names__ = ("uuid", "display_name", "source_sql_expression", "target_sql_expression")
@@ -17559,6 +17772,7 @@ class DataCollectorSchedule(sgqlc.types.Type):
17559
17772
  "queued_at",
17560
17773
  "metric_monitors",
17561
17774
  "custom_rules",
17775
+ "agent_trace_tables",
17562
17776
  )
17563
17777
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
17564
17778
 
@@ -17710,6 +17924,28 @@ class DataCollectorSchedule(sgqlc.types.Type):
17710
17924
  * `warehouse_uuid` (`UUID`)None
17711
17925
  """
17712
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
+
17713
17949
 
17714
17950
  class DataCollectorScheduleInfo(sgqlc.types.Type):
17715
17951
  """Detailed information about a data collector schedule"""
@@ -17997,6 +18233,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
17997
18233
  """Contains the nodes in this connection."""
17998
18234
 
17999
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
+
18000
18255
  class DataProductEdge(sgqlc.types.Type):
18001
18256
  """A Relay edge containing a `DataProduct` and its cursor."""
18002
18257
 
@@ -18452,7 +18707,16 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18452
18707
  """A Datadog integration"""
18453
18708
 
18454
18709
  __schema__ = schema
18455
- __field_names__ = ("integration_id", "integration_name", "site", "default_incident_fields")
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
+ )
18456
18720
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
18457
18721
  """The integration ID"""
18458
18722
 
@@ -18467,6 +18731,18 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
18467
18731
  default_incident_fields = sgqlc.types.Field(JSONString, graphql_name="defaultIncidentFields")
18468
18732
  """Default values for Datadog incident fields"""
18469
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
+
18470
18746
 
18471
18747
  class DatadogServiceOutput(sgqlc.types.Type):
18472
18748
  """A Datadog incident service"""
@@ -19764,6 +20040,16 @@ class DomainOutput(sgqlc.types.Type):
19764
20040
  """
19765
20041
 
19766
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
+
19767
20053
  class DomainRestrictionConnection(sgqlc.types.relay.Connection):
19768
20054
  __schema__ = schema
19769
20055
  __field_names__ = ("page_info", "edges")
@@ -19905,6 +20191,24 @@ class Dynamic(sgqlc.types.Type):
19905
20191
  """Explanation if min/max is missing"""
19906
20192
 
19907
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
+
19908
20212
  class ETLJobsConnectionTypeConnection(sgqlc.types.relay.Connection):
19909
20213
  """Etl Jobs"""
19910
20214
 
@@ -20025,6 +20329,10 @@ class EtlContainer(sgqlc.types.Type):
20025
20329
  __schema__ = schema
20026
20330
  __field_names__ = (
20027
20331
  "id",
20332
+ "created_time",
20333
+ "updated_time",
20334
+ "created_by",
20335
+ "last_update_user",
20028
20336
  "deleted_at",
20029
20337
  "account",
20030
20338
  "uuid",
@@ -20051,6 +20359,16 @@ class EtlContainer(sgqlc.types.Type):
20051
20359
  )
20052
20360
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
20053
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
+
20054
20372
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
20055
20373
 
20056
20374
  account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
@@ -20460,7 +20778,7 @@ class EventEdge(sgqlc.types.Type):
20460
20778
 
20461
20779
  class EventEvaluation(sgqlc.types.Type):
20462
20780
  __schema__ = schema
20463
- __field_names__ = ("field", "function", "prompt", "output_type")
20781
+ __field_names__ = ("field", "function", "prompt", "output_type", "sql_expression")
20464
20782
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
20465
20783
  """Field evaluated"""
20466
20784
 
@@ -20473,6 +20791,9 @@ class EventEvaluation(sgqlc.types.Type):
20473
20791
  output_type = sgqlc.types.Field(String, graphql_name="outputType")
20474
20792
  """Output type used in the evaluation"""
20475
20793
 
20794
+ sql_expression = sgqlc.types.Field(String, graphql_name="sqlExpression")
20795
+ """SQL expression used in the evaluation"""
20796
+
20476
20797
 
20477
20798
  class EventGroup(sgqlc.types.Type):
20478
20799
  __schema__ = schema
@@ -20956,6 +21277,9 @@ class FHEvent(sgqlc.types.Type):
20956
21277
  "historical_mean",
20957
21278
  "detector_feedback",
20958
21279
  "agg_time_interval",
21280
+ "event_type",
21281
+ "time_series_uuid",
21282
+ "parent_time_series_uuid",
20959
21283
  )
20960
21284
  event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
20961
21285
  """UUID of the anomaly event"""
@@ -21014,6 +21338,15 @@ class FHEvent(sgqlc.types.Type):
21014
21338
  timecomponent of the event timestamp should be ignored.
21015
21339
  """
21016
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
+
21017
21350
 
21018
21351
  class FHEvents(sgqlc.types.Type):
21019
21352
  __schema__ = schema
@@ -22718,6 +23051,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22718
23051
  "is_token_auth",
22719
23052
  "webhook_secret_defined",
22720
23053
  "webhook_secret_mismatch_detected",
23054
+ "created_time",
23055
+ "updated_time",
23056
+ "created_by",
23057
+ "last_updated_by",
22721
23058
  )
22722
23059
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
22723
23060
  """The integration ID"""
@@ -22762,6 +23099,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
22762
23099
  the received payloads
22763
23100
  """
22764
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
+
22765
23114
 
22766
23115
  class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
22767
23116
  __schema__ = schema
@@ -23099,6 +23448,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23099
23448
  "exceptions_detail",
23100
23449
  "runtime_variables",
23101
23450
  "comparison_data_source_type",
23451
+ "table_monitor_warning",
23452
+ "size_collection_table_mcon",
23453
+ "size_collection_enabled",
23102
23454
  "total_invocations_count",
23103
23455
  "total_result_count",
23104
23456
  "total_execution_duration",
@@ -23138,6 +23490,19 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
23138
23490
  )
23139
23491
  """Comparison Source type in the job execution"""
23140
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
+
23141
23506
  total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
23142
23507
  """Total number of invocations for the job execution. May be null if
23143
23508
  execution has not completed.
@@ -24197,6 +24562,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24197
24562
  "webhook_url",
24198
24563
  "integration_type",
24199
24564
  "headers",
24565
+ "created_time",
24566
+ "updated_time",
24567
+ "created_by",
24568
+ "last_update_user",
24200
24569
  )
24201
24570
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
24202
24571
  """The integration ID"""
@@ -24215,6 +24584,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
24215
24584
  headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
24216
24585
  """Header key/value to use when sending webhook request"""
24217
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
+
24218
24599
 
24219
24600
  class LookerDashboardTileRef(sgqlc.types.Type):
24220
24601
  __schema__ = schema
@@ -25217,6 +25598,28 @@ class MonitorTable(sgqlc.types.Type):
25217
25598
  """List of MCONs for the tables with this identifier"""
25218
25599
 
25219
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
+
25220
25623
  class MonitorWarehouse(sgqlc.types.Type):
25221
25624
  """Warehouse assets referenced by monitors, grouped by name"""
25222
25625
 
@@ -25550,6 +25953,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
25550
25953
  class Mutation(sgqlc.types.Type):
25551
25954
  __schema__ = schema
25552
25955
  __field_names__ = (
25956
+ "create_or_update_agent_trace_table",
25553
25957
  "link_slack_app_installation",
25554
25958
  "create_logs_integration",
25555
25959
  "update_logs_integration",
@@ -26005,6 +26409,29 @@ class Mutation(sgqlc.types.Type):
26005
26409
  "update_account_secret",
26006
26410
  "delete_account_secret",
26007
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
+
26008
26435
  link_slack_app_installation = sgqlc.types.Field(
26009
26436
  LinkSlackAppInstallation,
26010
26437
  graphql_name="linkSlackAppInstallation",
@@ -33678,6 +34105,7 @@ class Mutation(sgqlc.types.Type):
33678
34105
  ("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
33679
34106
  ("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
33680
34107
  ("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
34108
+ ("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
33681
34109
  ("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
33682
34110
  (
33683
34111
  "maintenance_type",
@@ -33686,6 +34114,7 @@ class Mutation(sgqlc.types.Type):
33686
34114
  ),
33687
34115
  ),
33688
34116
  ("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
34117
+ ("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
33689
34118
  ("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
33690
34119
  ("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
33691
34120
  ("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
@@ -33700,6 +34129,10 @@ class Mutation(sgqlc.types.Type):
33700
34129
  "time_series_uuid",
33701
34130
  sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
33702
34131
  ),
34132
+ (
34133
+ "where_condition",
34134
+ sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
34135
+ ),
33703
34136
  )
33704
34137
  ),
33705
34138
  )
@@ -33714,6 +34147,10 @@ class Mutation(sgqlc.types.Type):
33714
34147
  given
33715
34148
  * `end_time` (`DateTime`): Start period of data maintenance. If
33716
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
33717
34154
  * `id` (`Int`): ID of existing data maintenance entry for updating
33718
34155
  * `maintenance_type` (`DataMaintenanceMetric`): If not set, all
33719
34156
  metrics for the object will be ignored
@@ -33722,6 +34159,10 @@ class Mutation(sgqlc.types.Type):
33722
34159
  'project', 'dataset' or any table type. Setting any type other
33723
34160
  than a table type will set the maintenance window for all
33724
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
33725
34166
  * `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
33726
34167
  If set, the maintenance windows will only apply to the given
33727
34168
  monitor.
@@ -33736,6 +34177,10 @@ class Mutation(sgqlc.types.Type):
33736
34177
  * `time_series_uuid` (`UUID`): Time series UUID to set maintenance
33737
34178
  period for. If set, the maintenance windows will only apply to
33738
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
33739
34184
  """
33740
34185
 
33741
34186
  create_data_maintenance_window_from_holidays = sgqlc.types.Field(
@@ -37854,6 +38299,14 @@ class Mutation(sgqlc.types.Type):
37854
38299
  graphql_name="createOrUpdateAuthorizationGroup",
37855
38300
  args=sgqlc.types.ArgDict(
37856
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
+ ),
37857
38310
  ("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
37858
38311
  (
37859
38312
  "domain_restriction_ids",
@@ -37891,6 +38344,9 @@ class Mutation(sgqlc.types.Type):
37891
38344
 
37892
38345
  Arguments:
37893
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.
37894
38350
  * `description` (`String`): Description/help text to help users
37895
38351
  understand the purpose of the group. If not provided on updates,
37896
38352
  will keep current value.
@@ -38930,6 +39386,12 @@ class Mutation(sgqlc.types.Type):
38930
39386
  sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
38931
39387
  ),
38932
39388
  ),
39389
+ (
39390
+ "integration_type",
39391
+ sgqlc.types.Arg(
39392
+ sgqlc.types.non_null(String), graphql_name="integrationType", default=None
39393
+ ),
39394
+ ),
38933
39395
  (
38934
39396
  "name",
38935
39397
  sgqlc.types.Arg(
@@ -38944,6 +39406,8 @@ class Mutation(sgqlc.types.Type):
38944
39406
  Arguments:
38945
39407
 
38946
39408
  * `integration_id` (`UUID!`): UUID of the integration to update.
39409
+ * `integration_type` (`String!`): Integration type for direct
39410
+ routing.
38947
39411
  * `name` (`String!`): Desired name.
38948
39412
  """
38949
39413
 
@@ -43852,6 +44316,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43852
44316
  "webhook_enabled",
43853
44317
  "webhook_url",
43854
44318
  "webhook_secret_defined",
44319
+ "created_time",
44320
+ "updated_time",
44321
+ "created_by",
44322
+ "last_update_user",
43855
44323
  "webhook_secret_mismatch_detected",
43856
44324
  )
43857
44325
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
@@ -43878,6 +44346,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
43878
44346
  of webhook payloads sent by PagerDuty
43879
44347
  """
43880
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
+
43881
44361
  webhook_secret_mismatch_detected = sgqlc.types.Field(
43882
44362
  Boolean, graphql_name="webhookSecretMismatchDetected"
43883
44363
  )
@@ -44564,8 +45044,11 @@ class QueriedTable(sgqlc.types.Type):
44564
45044
  class Query(sgqlc.types.Type):
44565
45045
  __schema__ = schema
44566
45046
  __field_names__ = (
45047
+ "get_agent_trace_tables",
44567
45048
  "get_table_monitor_metric",
44568
45049
  "get_tables_for_coverage_dashboard",
45050
+ "get_monitor_counts_by_creator",
45051
+ "get_monitor_counts_by_type",
44569
45052
  "get_logs_integrations",
44570
45053
  "generate_webhook_url",
44571
45054
  "get_user_id",
@@ -44635,6 +45118,7 @@ class Query(sgqlc.types.Type):
44635
45118
  "get_etl_jobs",
44636
45119
  "get_etl_jobs_v2",
44637
45120
  "get_etl_tasks",
45121
+ "search_etl_jobs_and_tasks",
44638
45122
  "get_data_product",
44639
45123
  "get_data_product_v2",
44640
45124
  "get_data_products",
@@ -44646,6 +45130,7 @@ class Query(sgqlc.types.Type):
44646
45130
  "get_data_product_upstream_counts",
44647
45131
  "get_data_product_audiences",
44648
45132
  "get_top_warehouse_for_data_product_mcons",
45133
+ "get_data_product_dry_run_counts",
44649
45134
  "parse_query",
44650
45135
  "ping_data_collector",
44651
45136
  "get_ms_teams_integrations",
@@ -45045,6 +45530,11 @@ class Query(sgqlc.types.Type):
45045
45530
  "get_account_secret",
45046
45531
  "get_account_secrets",
45047
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
+
45048
45538
  get_table_monitor_metric = sgqlc.types.Field(
45049
45539
  "TableMonitorMetric",
45050
45540
  graphql_name="getTableMonitorMetric",
@@ -45137,6 +45627,85 @@ class Query(sgqlc.types.Type):
45137
45627
  * `data_product_ids` (`[UUID]`)None
45138
45628
  """
45139
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
+
45140
45709
  get_logs_integrations = sgqlc.types.Field(
45141
45710
  sgqlc.types.list_of(LogsIntegrationOutput),
45142
45711
  graphql_name="getLogsIntegrations",
@@ -45627,10 +46196,12 @@ class Query(sgqlc.types.Type):
45627
46196
  args=sgqlc.types.ArgDict(
45628
46197
  (
45629
46198
  (
45630
- "warehouse_type",
45631
- sgqlc.types.Arg(
45632
- sgqlc.types.non_null(String), graphql_name="warehouseType", default=None
45633
- ),
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),
45634
46205
  ),
45635
46206
  )
45636
46207
  ),
@@ -45640,8 +46211,10 @@ class Query(sgqlc.types.Type):
45640
46211
 
45641
46212
  Arguments:
45642
46213
 
45643
- * `warehouse_type` (`String!`): Filter by warehouse type
45644
- (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.
45645
46218
  """
45646
46219
 
45647
46220
  run_custom_query = sgqlc.types.Field(
@@ -46913,16 +47486,48 @@ class Query(sgqlc.types.Type):
46913
47486
  sgqlc.types.list_of(String), graphql_name="jobMcons", default=None
46914
47487
  ),
46915
47488
  ),
47489
+ (
47490
+ "task_mcons",
47491
+ sgqlc.types.Arg(
47492
+ sgqlc.types.list_of(String), graphql_name="taskMcons", default=None
47493
+ ),
47494
+ ),
46916
47495
  )
46917
47496
  ),
46918
47497
  )
46919
- """(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
46920
47500
 
46921
47501
  Arguments:
46922
47502
 
46923
47503
  * `first` (`Int!`): Page size
46924
47504
  * `offset` (`Int!`): Page offset
46925
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`)
46926
47531
  """
46927
47532
 
46928
47533
  get_data_product = sgqlc.types.Field(
@@ -47327,6 +47932,31 @@ class Query(sgqlc.types.Type):
47327
47932
  * `mcons` (`[String]!`): List of MCONs to analyze
47328
47933
  """
47329
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
+
47330
47960
  parse_query = sgqlc.types.Field(
47331
47961
  "SqlParserResult",
47332
47962
  graphql_name="parseQuery",
@@ -51088,6 +51718,12 @@ class Query(sgqlc.types.Type):
51088
51718
  ),
51089
51719
  ("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
51090
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
+ ),
51091
51727
  )
51092
51728
  ),
51093
51729
  )
@@ -51100,6 +51736,12 @@ class Query(sgqlc.types.Type):
51100
51736
  time series UUID
51101
51737
  * `start_time` (`DateTime`): Start time of maintenance period
51102
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
51103
51745
  """
51104
51746
 
51105
51747
  get_data_maintenance_entries_by_mcon = sgqlc.types.Field(
@@ -60141,6 +60783,12 @@ class Query(sgqlc.types.Type):
60141
60783
  ),
60142
60784
  ),
60143
60785
  ("search", sgqlc.types.Arg(String, graphql_name="search", default=None)),
60786
+ (
60787
+ "order_by",
60788
+ sgqlc.types.Arg(
60789
+ sgqlc.types.list_of(String), graphql_name="orderBy", default=None
60790
+ ),
60791
+ ),
60144
60792
  ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
60145
60793
  ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
60146
60794
  ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
@@ -60158,6 +60806,8 @@ class Query(sgqlc.types.Type):
60158
60806
  * `roles` (`[String]`): Filter by user roles
60159
60807
  * `search` (`String`): Filter by first name, last name or email
60160
60808
  address
60809
+ * `order_by` (`[String]`): Order by fields. Use camelCase and '-'
60810
+ for desc. e.g. ['email', '-role']
60161
60811
  * `offset` (`Int`)None
60162
60812
  * `before` (`String`)None
60163
60813
  * `after` (`String`)None
@@ -63740,6 +64390,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63740
64390
  "webhook_url",
63741
64391
  "webhook_config",
63742
64392
  "options",
64393
+ "created_time",
64394
+ "updated_time",
64395
+ "created_by",
64396
+ "last_update_user",
63743
64397
  )
63744
64398
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
63745
64399
  """The integration ID"""
@@ -63784,6 +64438,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
63784
64438
  options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
63785
64439
  """Options for ServiceNow integration"""
63786
64440
 
64441
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
64442
+ """When the integration was created"""
64443
+
64444
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
64445
+ """When the integration was last updated"""
64446
+
64447
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
64448
+ """Who created the integration"""
64449
+
64450
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
64451
+ """Who last updated the integration"""
64452
+
63787
64453
 
63788
64454
  class ServiceNowStateMappingOutput(sgqlc.types.Type):
63789
64455
  __schema__ = schema
@@ -64703,6 +65369,8 @@ class StreamingCluster(sgqlc.types.Type):
64703
65369
  "id",
64704
65370
  "created_time",
64705
65371
  "updated_time",
65372
+ "created_by",
65373
+ "last_update_user",
64706
65374
  "deleted_at",
64707
65375
  "uuid",
64708
65376
  "external_cluster_id",
@@ -64717,6 +65385,12 @@ class StreamingCluster(sgqlc.types.Type):
64717
65385
 
64718
65386
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64719
65387
 
65388
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
65389
+ """Creator"""
65390
+
65391
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
65392
+ """Last updated by"""
65393
+
64720
65394
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64721
65395
 
64722
65396
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -64752,6 +65426,8 @@ class StreamingSystem(sgqlc.types.Type):
64752
65426
  "id",
64753
65427
  "created_time",
64754
65428
  "updated_time",
65429
+ "created_by",
65430
+ "last_update_user",
64755
65431
  "deleted_at",
64756
65432
  "uuid",
64757
65433
  "name",
@@ -64765,6 +65441,12 @@ class StreamingSystem(sgqlc.types.Type):
64765
65441
 
64766
65442
  updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
64767
65443
 
65444
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
65445
+ """Creator"""
65446
+
65447
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
65448
+ """Last updated by"""
65449
+
64768
65450
  deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
64769
65451
 
64770
65452
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
@@ -68664,6 +69346,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68664
69346
  "domain_restrictions",
68665
69347
  "permissions",
68666
69348
  "performance_dashboard_access",
69349
+ "can_edit_table_monitors",
68667
69350
  )
68668
69351
  groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
68669
69352
  """List of the groups this user is a member of."""
@@ -68688,6 +69371,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
68688
69371
  "ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
68689
69372
  )
68690
69373
 
69374
+ can_edit_table_monitors = sgqlc.types.Field(Boolean, graphql_name="canEditTableMonitors")
69375
+ """Whether the user can create, update or delete table monitors."""
69376
+
68691
69377
 
68692
69378
  class UserBasicInfoConnection(sgqlc.types.relay.Connection):
68693
69379
  __schema__ = schema
@@ -69186,6 +69872,9 @@ class Warehouse(sgqlc.types.Type):
69186
69872
  __schema__ = schema
69187
69873
  __field_names__ = (
69188
69874
  "id",
69875
+ "created_time",
69876
+ "updated_time",
69877
+ "last_update_user",
69189
69878
  "uuid",
69190
69879
  "name",
69191
69880
  "connection_type",
@@ -69238,6 +69927,13 @@ class Warehouse(sgqlc.types.Type):
69238
69927
  )
69239
69928
  id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
69240
69929
 
69930
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
69931
+
69932
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
69933
+
69934
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
69935
+ """Last updated by"""
69936
+
69241
69937
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
69242
69938
 
69243
69939
  name = sgqlc.types.Field(String, graphql_name="name")
@@ -69661,7 +70357,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69661
70357
  """A Webex integration"""
69662
70358
 
69663
70359
  __schema__ = schema
69664
- __field_names__ = ("integration_id", "integration_name")
70360
+ __field_names__ = (
70361
+ "integration_id",
70362
+ "integration_name",
70363
+ "created_time",
70364
+ "updated_time",
70365
+ "created_by",
70366
+ "last_update_user",
70367
+ )
69665
70368
  integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
69666
70369
  """The integration ID"""
69667
70370
 
@@ -69670,6 +70373,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
69670
70373
  )
69671
70374
  """A short name to identify the integration"""
69672
70375
 
70376
+ created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
70377
+ """When the integration was created"""
70378
+
70379
+ updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
70380
+ """When the integration was last updated"""
70381
+
70382
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
70383
+ """Who created the integration"""
70384
+
70385
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
70386
+ """Who last updated the integration"""
70387
+
69673
70388
 
69674
70389
  class WebexTestCredentialsOutput(sgqlc.types.Type):
69675
70390
  """A Webex test credentials result"""
@@ -70056,6 +70771,39 @@ class AdfTaskRun(sgqlc.types.Type, Node):
70056
70771
  """MCON of Job for provided job_id"""
70057
70772
 
70058
70773
 
70774
+ class AgentTraceTable(sgqlc.types.Type, Node):
70775
+ __schema__ = schema
70776
+ __field_names__ = (
70777
+ "created_time",
70778
+ "updated_time",
70779
+ "uuid",
70780
+ "account",
70781
+ "table",
70782
+ "span_format",
70783
+ "schedule",
70784
+ )
70785
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
70786
+
70787
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
70788
+
70789
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
70790
+ """Unique ID of the Agent Trace Table."""
70791
+
70792
+ account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
70793
+
70794
+ table = sgqlc.types.Field(sgqlc.types.non_null("WarehouseTable"), graphql_name="table")
70795
+ """Agent trace table"""
70796
+
70797
+ span_format = sgqlc.types.Field(
70798
+ sgqlc.types.non_null(AgentTraceTableModelSpanFormat), graphql_name="spanFormat"
70799
+ )
70800
+ """Format of spans in the table."""
70801
+
70802
+ schedule = sgqlc.types.Field(
70803
+ sgqlc.types.non_null(DataCollectorSchedule), graphql_name="schedule"
70804
+ )
70805
+
70806
+
70059
70807
  class AirflowDag(sgqlc.types.Type, Node):
70060
70808
  __schema__ = schema
70061
70809
  __field_names__ = (
@@ -70517,6 +71265,11 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70517
71265
  "priority",
70518
71266
  "status",
70519
71267
  "tables",
71268
+ "audiences",
71269
+ "monitor_tags",
71270
+ "invalid_rows",
71271
+ "domains",
71272
+ "comment_count",
70520
71273
  "jira_tickets",
70521
71274
  "service_now_incidents",
70522
71275
  "opsgenie_incidents",
@@ -70556,6 +71309,23 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
70556
71309
  tables = sgqlc.types.Field(sgqlc.types.list_of(TableOutput), graphql_name="tables")
70557
71310
  """Tables or views associated with the alert"""
70558
71311
 
71312
+ audiences = sgqlc.types.Field(sgqlc.types.list_of(AudienceRef), graphql_name="audiences")
71313
+ """List of audiences associated with the alert"""
71314
+
71315
+ monitor_tags = sgqlc.types.Field(
71316
+ sgqlc.types.list_of(TagKeyValuePairOutput), graphql_name="monitorTags"
71317
+ )
71318
+ """Monitor tags associated with the alert"""
71319
+
71320
+ invalid_rows = sgqlc.types.Field(String, graphql_name="invalidRows")
71321
+ """Number of invalid rows of a breached monitor if available"""
71322
+
71323
+ domains = sgqlc.types.Field(sgqlc.types.list_of(DomainRef), graphql_name="domains")
71324
+ """List of domain associated with the alert"""
71325
+
71326
+ comment_count = sgqlc.types.Field(Int, graphql_name="commentCount")
71327
+ """Number of user comments associated with the alert"""
71328
+
70559
71329
  jira_tickets = sgqlc.types.Field(sgqlc.types.list_of("JiraTicket"), graphql_name="jiraTickets")
70560
71330
  """Jira tickets associated with the alert"""
70561
71331
 
@@ -70791,6 +71561,10 @@ class AuthUser(sgqlc.types.Type, Node):
70791
71561
  "delete_reason",
70792
71562
  "invalidated_at",
70793
71563
  "persona",
71564
+ "streamingsystemmodel_created_by",
71565
+ "streamingsystemmodel_updated_by",
71566
+ "streamingclustermodel_created_by",
71567
+ "streamingclustermodel_updated_by",
70794
71568
  "monitor_labels_created",
70795
71569
  "routing_rules_created_by",
70796
71570
  "routing_rules_updated_by",
@@ -70801,6 +71575,13 @@ class AuthUser(sgqlc.types.Type, Node):
70801
71575
  "invitees",
70802
71576
  "warehouse_deleted_by",
70803
71577
  "created_warehouses",
71578
+ "warehousemodel_updated_by",
71579
+ "bicontainermodel_created_by",
71580
+ "bicontainermodel_updated_by",
71581
+ "etlcontainermodel_created_by",
71582
+ "etlcontainermodel_updated_by",
71583
+ "connectionmodel_created_by",
71584
+ "connectionmodel_updated_by",
70804
71585
  "eventmodel_set",
70805
71586
  "eventdetectorfeedbackmodel_created_by",
70806
71587
  "eventdetectorfeedbackmodel_updated_by",
@@ -70898,6 +71679,30 @@ class AuthUser(sgqlc.types.Type, Node):
70898
71679
  experience and the onboarding flow.
70899
71680
  """
70900
71681
 
71682
+ streamingsystemmodel_created_by = sgqlc.types.Field(
71683
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
71684
+ graphql_name="streamingsystemmodelCreatedBy",
71685
+ )
71686
+ """Creator"""
71687
+
71688
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
71689
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
71690
+ graphql_name="streamingsystemmodelUpdatedBy",
71691
+ )
71692
+ """Last updated by"""
71693
+
71694
+ streamingclustermodel_created_by = sgqlc.types.Field(
71695
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71696
+ graphql_name="streamingclustermodelCreatedBy",
71697
+ )
71698
+ """Creator"""
71699
+
71700
+ streamingclustermodel_updated_by = sgqlc.types.Field(
71701
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
71702
+ graphql_name="streamingclustermodelUpdatedBy",
71703
+ )
71704
+ """Last updated by"""
71705
+
70901
71706
  monitor_labels_created = sgqlc.types.Field(
70902
71707
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
70903
71708
  graphql_name="monitorLabelsCreated",
@@ -71017,6 +71822,48 @@ class AuthUser(sgqlc.types.Type, Node):
71017
71822
  )
71018
71823
  """User who created this warehouse"""
71019
71824
 
71825
+ warehousemodel_updated_by = sgqlc.types.Field(
71826
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
71827
+ graphql_name="warehousemodelUpdatedBy",
71828
+ )
71829
+ """Last updated by"""
71830
+
71831
+ bicontainermodel_created_by = sgqlc.types.Field(
71832
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71833
+ graphql_name="bicontainermodelCreatedBy",
71834
+ )
71835
+ """Creator"""
71836
+
71837
+ bicontainermodel_updated_by = sgqlc.types.Field(
71838
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
71839
+ graphql_name="bicontainermodelUpdatedBy",
71840
+ )
71841
+ """Last updated by"""
71842
+
71843
+ etlcontainermodel_created_by = sgqlc.types.Field(
71844
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71845
+ graphql_name="etlcontainermodelCreatedBy",
71846
+ )
71847
+ """Creator"""
71848
+
71849
+ etlcontainermodel_updated_by = sgqlc.types.Field(
71850
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
71851
+ graphql_name="etlcontainermodelUpdatedBy",
71852
+ )
71853
+ """Last updated by"""
71854
+
71855
+ connectionmodel_created_by = sgqlc.types.Field(
71856
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71857
+ graphql_name="connectionmodelCreatedBy",
71858
+ )
71859
+ """Creator"""
71860
+
71861
+ connectionmodel_updated_by = sgqlc.types.Field(
71862
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
71863
+ graphql_name="connectionmodelUpdatedBy",
71864
+ )
71865
+ """Last updated by"""
71866
+
71020
71867
  eventmodel_set = sgqlc.types.Field(
71021
71868
  sgqlc.types.non_null(EventConnection),
71022
71869
  graphql_name="eventmodelSet",
@@ -72101,6 +72948,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
72101
72948
  class CollibraIntegration(sgqlc.types.Type, Node):
72102
72949
  __schema__ = schema
72103
72950
  __field_names__ = (
72951
+ "last_update_user",
72104
72952
  "uuid",
72105
72953
  "integration_name",
72106
72954
  "server_url",
@@ -72111,6 +72959,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
72111
72959
  "created_by",
72112
72960
  "warehouse_domain_mapping",
72113
72961
  )
72962
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
72963
+ """Last updated by"""
72964
+
72114
72965
  uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
72115
72966
  """Integration external ID"""
72116
72967
 
@@ -72200,6 +73051,114 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
72200
73051
  )
72201
73052
 
72202
73053
 
73054
+ class ConnectionRestriction(sgqlc.types.Type, Node):
73055
+ __schema__ = schema
73056
+ __field_names__ = (
73057
+ "created_time",
73058
+ "updated_time",
73059
+ "created_by",
73060
+ "last_update_user",
73061
+ "deleted_at",
73062
+ "uuid",
73063
+ "type",
73064
+ "subtype",
73065
+ "name",
73066
+ "warehouse",
73067
+ "bi_container",
73068
+ "etl_container",
73069
+ "deletion_protection",
73070
+ "job_types",
73071
+ "streaming_cluster",
73072
+ "credentials_s3_key",
73073
+ "integration_gateway_credentials_key",
73074
+ "data",
73075
+ "created_on",
73076
+ "updated_on",
73077
+ "is_active",
73078
+ "disabled_on",
73079
+ "dbt_projects",
73080
+ )
73081
+ created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
73082
+
73083
+ updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
73084
+
73085
+ created_by = sgqlc.types.Field("User", graphql_name="createdBy")
73086
+ """Creator"""
73087
+
73088
+ last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
73089
+ """Last updated by"""
73090
+
73091
+ deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
73092
+
73093
+ uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
73094
+
73095
+ type = sgqlc.types.Field(sgqlc.types.non_null(ConnectionModelType), graphql_name="type")
73096
+
73097
+ subtype = sgqlc.types.Field(String, graphql_name="subtype")
73098
+ """Subtype of a plugin connection"""
73099
+
73100
+ name = sgqlc.types.Field(String, graphql_name="name")
73101
+ """Name of the connection"""
73102
+
73103
+ warehouse = sgqlc.types.Field(Warehouse, graphql_name="warehouse")
73104
+
73105
+ bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
73106
+
73107
+ etl_container = sgqlc.types.Field(EtlContainer, graphql_name="etlContainer")
73108
+
73109
+ deletion_protection = sgqlc.types.Field(
73110
+ sgqlc.types.non_null(Boolean), graphql_name="deletionProtection"
73111
+ )
73112
+ """Prevents deletion when enabled."""
73113
+
73114
+ job_types = sgqlc.types.Field(
73115
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
73116
+ graphql_name="jobTypes",
73117
+ )
73118
+
73119
+ streaming_cluster = sgqlc.types.Field(StreamingCluster, graphql_name="streamingCluster")
73120
+
73121
+ credentials_s3_key = sgqlc.types.Field(String, graphql_name="credentialsS3Key")
73122
+
73123
+ integration_gateway_credentials_key = sgqlc.types.Field(
73124
+ String, graphql_name="integrationGatewayCredentialsKey"
73125
+ )
73126
+
73127
+ data = sgqlc.types.Field(JSONString, graphql_name="data")
73128
+
73129
+ created_on = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdOn")
73130
+
73131
+ updated_on = sgqlc.types.Field(DateTime, graphql_name="updatedOn")
73132
+
73133
+ is_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isActive")
73134
+
73135
+ disabled_on = sgqlc.types.Field(DateTime, graphql_name="disabledOn")
73136
+
73137
+ dbt_projects = sgqlc.types.Field(
73138
+ sgqlc.types.non_null(DbtProjectConnection),
73139
+ graphql_name="dbtProjects",
73140
+ args=sgqlc.types.ArgDict(
73141
+ (
73142
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
73143
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
73144
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
73145
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
73146
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
73147
+ )
73148
+ ),
73149
+ )
73150
+ """dbt connection
73151
+
73152
+ Arguments:
73153
+
73154
+ * `offset` (`Int`)None
73155
+ * `before` (`String`)None
73156
+ * `after` (`String`)None
73157
+ * `first` (`Int`)None
73158
+ * `last` (`Int`)None
73159
+ """
73160
+
73161
+
72203
73162
  class CustomRule(sgqlc.types.Type, Node):
72204
73163
  __schema__ = schema
72205
73164
  __field_names__ = (
@@ -74180,6 +75139,7 @@ class DbtProject(sgqlc.types.Type, Node):
74180
75139
  "config",
74181
75140
  "last_model_import",
74182
75141
  "last_test_import",
75142
+ "name",
74183
75143
  "dbt_jobs",
74184
75144
  "dbt_nodes",
74185
75145
  "dbt_edges",
@@ -74232,6 +75192,9 @@ class DbtProject(sgqlc.types.Type, Node):
74232
75192
  last_test_import = sgqlc.types.Field(DateTime, graphql_name="lastTestImport")
74233
75193
  """The date of the last test import we know about"""
74234
75194
 
75195
+ name = sgqlc.types.Field(String, graphql_name="name")
75196
+ """A friendly name for the integration"""
75197
+
74235
75198
  dbt_jobs = sgqlc.types.Field(
74236
75199
  DbtJobConnection,
74237
75200
  graphql_name="dbtJobs",
@@ -75003,9 +75966,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
75003
75966
 
75004
75967
  class FilterValueField(sgqlc.types.Type, FilterValueInterface):
75005
75968
  __schema__ = schema
75006
- __field_names__ = ("field", "mcon")
75969
+ __field_names__ = ("field", "table", "mcon")
75007
75970
  field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
75008
75971
 
75972
+ table = sgqlc.types.Field(String, graphql_name="table")
75973
+
75009
75974
  mcon = sgqlc.types.Field(String, graphql_name="mcon")
75010
75975
 
75011
75976
 
@@ -76900,6 +77865,10 @@ class User(sgqlc.types.Type, Node):
76900
77865
  "delete_reason",
76901
77866
  "invalidated_at",
76902
77867
  "persona",
77868
+ "streamingsystemmodel_created_by",
77869
+ "streamingsystemmodel_updated_by",
77870
+ "streamingclustermodel_created_by",
77871
+ "streamingclustermodel_updated_by",
76903
77872
  "monitor_labels_created",
76904
77873
  "routing_rules_created_by",
76905
77874
  "routing_rules_updated_by",
@@ -76910,6 +77879,13 @@ class User(sgqlc.types.Type, Node):
76910
77879
  "invitees",
76911
77880
  "warehouse_deleted_by",
76912
77881
  "created_warehouses",
77882
+ "warehousemodel_updated_by",
77883
+ "bicontainermodel_created_by",
77884
+ "bicontainermodel_updated_by",
77885
+ "etlcontainermodel_created_by",
77886
+ "etlcontainermodel_updated_by",
77887
+ "connectionmodel_created_by",
77888
+ "connectionmodel_updated_by",
76913
77889
  "eventmodel_set",
76914
77890
  "eventdetectorfeedbackmodel_created_by",
76915
77891
  "eventdetectorfeedbackmodel_updated_by",
@@ -76961,6 +77937,7 @@ class User(sgqlc.types.Type, Node):
76961
77937
  "account",
76962
77938
  "role",
76963
77939
  "auth",
77940
+ "allowed_connections",
76964
77941
  )
76965
77942
  cognito_user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cognitoUserId")
76966
77943
 
@@ -77010,6 +77987,30 @@ class User(sgqlc.types.Type, Node):
77010
77987
  experience and the onboarding flow.
77011
77988
  """
77012
77989
 
77990
+ streamingsystemmodel_created_by = sgqlc.types.Field(
77991
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
77992
+ graphql_name="streamingsystemmodelCreatedBy",
77993
+ )
77994
+ """Creator"""
77995
+
77996
+ streamingsystemmodel_updated_by = sgqlc.types.Field(
77997
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingSystem))),
77998
+ graphql_name="streamingsystemmodelUpdatedBy",
77999
+ )
78000
+ """Last updated by"""
78001
+
78002
+ streamingclustermodel_created_by = sgqlc.types.Field(
78003
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78004
+ graphql_name="streamingclustermodelCreatedBy",
78005
+ )
78006
+ """Creator"""
78007
+
78008
+ streamingclustermodel_updated_by = sgqlc.types.Field(
78009
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(StreamingCluster))),
78010
+ graphql_name="streamingclustermodelUpdatedBy",
78011
+ )
78012
+ """Last updated by"""
78013
+
77013
78014
  monitor_labels_created = sgqlc.types.Field(
77014
78015
  sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(MonitorLabelObject))),
77015
78016
  graphql_name="monitorLabelsCreated",
@@ -77129,6 +78130,48 @@ class User(sgqlc.types.Type, Node):
77129
78130
  )
77130
78131
  """User who created this warehouse"""
77131
78132
 
78133
+ warehousemodel_updated_by = sgqlc.types.Field(
78134
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Warehouse))),
78135
+ graphql_name="warehousemodelUpdatedBy",
78136
+ )
78137
+ """Last updated by"""
78138
+
78139
+ bicontainermodel_created_by = sgqlc.types.Field(
78140
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78141
+ graphql_name="bicontainermodelCreatedBy",
78142
+ )
78143
+ """Creator"""
78144
+
78145
+ bicontainermodel_updated_by = sgqlc.types.Field(
78146
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(BiContainer))),
78147
+ graphql_name="bicontainermodelUpdatedBy",
78148
+ )
78149
+ """Last updated by"""
78150
+
78151
+ etlcontainermodel_created_by = sgqlc.types.Field(
78152
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78153
+ graphql_name="etlcontainermodelCreatedBy",
78154
+ )
78155
+ """Creator"""
78156
+
78157
+ etlcontainermodel_updated_by = sgqlc.types.Field(
78158
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(EtlContainer))),
78159
+ graphql_name="etlcontainermodelUpdatedBy",
78160
+ )
78161
+ """Last updated by"""
78162
+
78163
+ connectionmodel_created_by = sgqlc.types.Field(
78164
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78165
+ graphql_name="connectionmodelCreatedBy",
78166
+ )
78167
+ """Creator"""
78168
+
78169
+ connectionmodel_updated_by = sgqlc.types.Field(
78170
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
78171
+ graphql_name="connectionmodelUpdatedBy",
78172
+ )
78173
+ """Last updated by"""
78174
+
77132
78175
  eventmodel_set = sgqlc.types.Field(
77133
78176
  sgqlc.types.non_null(EventConnection),
77134
78177
  graphql_name="eventmodelSet",
@@ -78105,6 +79148,12 @@ class User(sgqlc.types.Type, Node):
78105
79148
  auth = sgqlc.types.Field(UserAuthorizationOutput, graphql_name="auth")
78106
79149
  """User's aggregate authorization policy."""
78107
79150
 
79151
+ allowed_connections = sgqlc.types.Field(
79152
+ sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
79153
+ graphql_name="allowedConnections",
79154
+ )
79155
+ """Connections this user is allowed to use. Empty means unrestricted."""
79156
+
78108
79157
 
78109
79158
  class UserBasicInfo(sgqlc.types.Type, Node):
78110
79159
  __schema__ = schema
@@ -78513,6 +79562,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
78513
79562
  "dbt_nodes",
78514
79563
  "dbt_run_steps",
78515
79564
  "fivetranconnectormodel_set",
79565
+ "agent_trace_tables",
78516
79566
  "thresholds",
78517
79567
  "get_thresholds",
78518
79568
  "freshness_anomaly",
@@ -78917,6 +79967,30 @@ class WarehouseTable(sgqlc.types.Type, Node):
78917
79967
  * `last` (`Int`)None
78918
79968
  """
78919
79969
 
79970
+ agent_trace_tables = sgqlc.types.Field(
79971
+ sgqlc.types.non_null(AgentTraceTableConnection),
79972
+ graphql_name="agentTraceTables",
79973
+ args=sgqlc.types.ArgDict(
79974
+ (
79975
+ ("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
79976
+ ("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
79977
+ ("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
79978
+ ("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
79979
+ ("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
79980
+ )
79981
+ ),
79982
+ )
79983
+ """Agent trace table
79984
+
79985
+ Arguments:
79986
+
79987
+ * `offset` (`Int`)None
79988
+ * `before` (`String`)None
79989
+ * `after` (`String`)None
79990
+ * `first` (`Int`)None
79991
+ * `last` (`Int`)None
79992
+ """
79993
+
78920
79994
  thresholds = sgqlc.types.Field(ThresholdsData, graphql_name="thresholds")
78921
79995
  """Section describing various anomaly thresholds for the table"""
78922
79996