pycarlo 0.10.219__py3-none-any.whl → 0.10.228__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.json +45220 -43985
- pycarlo/lib/schema.py +418 -10
- {pycarlo-0.10.219.dist-info → pycarlo-0.10.228.dist-info}/METADATA +1 -1
- {pycarlo-0.10.219.dist-info → pycarlo-0.10.228.dist-info}/RECORD +7 -7
- {pycarlo-0.10.219.dist-info → pycarlo-0.10.228.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.219.dist-info → pycarlo-0.10.228.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.219.dist-info → pycarlo-0.10.228.dist-info}/top_level.txt +0 -0
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",
|
|
@@ -3186,6 +3208,7 @@ class InternalJobType(sgqlc.types.Enum):
|
|
|
3186
3208
|
"""Enumeration Choices:
|
|
3187
3209
|
|
|
3188
3210
|
* `AGENT_REACHABILITY`None
|
|
3211
|
+
* `AGENT_SPANS`None
|
|
3189
3212
|
* `DIRECT_LINEAGE`None
|
|
3190
3213
|
* `ETL`None
|
|
3191
3214
|
* `JSON_SCHEMA`None
|
|
@@ -3204,6 +3227,7 @@ class InternalJobType(sgqlc.types.Enum):
|
|
|
3204
3227
|
__schema__ = schema
|
|
3205
3228
|
__choices__ = (
|
|
3206
3229
|
"AGENT_REACHABILITY",
|
|
3230
|
+
"AGENT_SPANS",
|
|
3207
3231
|
"DIRECT_LINEAGE",
|
|
3208
3232
|
"ETL",
|
|
3209
3233
|
"JSON_SCHEMA",
|
|
@@ -6423,6 +6447,22 @@ class ConnectionTestOptions(sgqlc.types.Input):
|
|
|
6423
6447
|
"""Specify tests to run (Redshift only)."""
|
|
6424
6448
|
|
|
6425
6449
|
|
|
6450
|
+
class CreateOrUpdateAgentTraceTableInput(sgqlc.types.Input):
|
|
6451
|
+
__schema__ = schema
|
|
6452
|
+
__field_names__ = ("uuid", "mcon", "connection_uuid", "span_format")
|
|
6453
|
+
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
6454
|
+
"""UUID of existing agent trace table to update"""
|
|
6455
|
+
|
|
6456
|
+
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
6457
|
+
"""MCON of the table"""
|
|
6458
|
+
|
|
6459
|
+
connection_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="connectionUuid")
|
|
6460
|
+
"""Connection UUID to query the table"""
|
|
6461
|
+
|
|
6462
|
+
span_format = sgqlc.types.Field(AgentTraceFormatEnum, graphql_name="spanFormat")
|
|
6463
|
+
"""Format of spans in the table"""
|
|
6464
|
+
|
|
6465
|
+
|
|
6426
6466
|
class CreatedByFilters(sgqlc.types.Input):
|
|
6427
6467
|
__schema__ = schema
|
|
6428
6468
|
__field_names__ = ("created_by", "is_template_managed", "namespace", "rule_name")
|
|
@@ -7320,13 +7360,15 @@ class FilterUnionInput(sgqlc.types.Input):
|
|
|
7320
7360
|
|
|
7321
7361
|
class FilterValueUnionInput(sgqlc.types.Input):
|
|
7322
7362
|
__schema__ = schema
|
|
7323
|
-
__field_names__ = ("literal", "sql", "field", "mcon", "type", "id")
|
|
7363
|
+
__field_names__ = ("literal", "sql", "field", "table", "mcon", "type", "id")
|
|
7324
7364
|
literal = sgqlc.types.Field(String, graphql_name="literal")
|
|
7325
7365
|
|
|
7326
7366
|
sql = sgqlc.types.Field(String, graphql_name="sql")
|
|
7327
7367
|
|
|
7328
7368
|
field = sgqlc.types.Field(String, graphql_name="field")
|
|
7329
7369
|
|
|
7370
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
7371
|
+
|
|
7330
7372
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
7331
7373
|
|
|
7332
7374
|
type = sgqlc.types.Field(sgqlc.types.non_null(FilterValueType), graphql_name="type")
|
|
@@ -11237,6 +11279,7 @@ class Account(sgqlc.types.Type):
|
|
|
11237
11279
|
"data_products",
|
|
11238
11280
|
"opsgenie_integrations",
|
|
11239
11281
|
"collibra_integrations",
|
|
11282
|
+
"agenttracetablemodel_set",
|
|
11240
11283
|
"entitlements",
|
|
11241
11284
|
"dashboards",
|
|
11242
11285
|
"comparison_dashboards",
|
|
@@ -11688,6 +11731,28 @@ class Account(sgqlc.types.Type):
|
|
|
11688
11731
|
* `last` (`Int`)None
|
|
11689
11732
|
"""
|
|
11690
11733
|
|
|
11734
|
+
agenttracetablemodel_set = sgqlc.types.Field(
|
|
11735
|
+
sgqlc.types.non_null("AgentTraceTableConnection"),
|
|
11736
|
+
graphql_name="agenttracetablemodelSet",
|
|
11737
|
+
args=sgqlc.types.ArgDict(
|
|
11738
|
+
(
|
|
11739
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
11740
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
11741
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
11742
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
11743
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
11744
|
+
)
|
|
11745
|
+
),
|
|
11746
|
+
)
|
|
11747
|
+
"""Arguments:
|
|
11748
|
+
|
|
11749
|
+
* `offset` (`Int`)None
|
|
11750
|
+
* `before` (`String`)None
|
|
11751
|
+
* `after` (`String`)None
|
|
11752
|
+
* `first` (`Int`)None
|
|
11753
|
+
* `last` (`Int`)None
|
|
11754
|
+
"""
|
|
11755
|
+
|
|
11691
11756
|
entitlements = sgqlc.types.Field(
|
|
11692
11757
|
sgqlc.types.list_of(EntitlementTypes), graphql_name="entitlements"
|
|
11693
11758
|
)
|
|
@@ -12743,6 +12808,30 @@ class AgentSpanTree(sgqlc.types.Type):
|
|
|
12743
12808
|
query = sgqlc.types.Field(String, graphql_name="query")
|
|
12744
12809
|
|
|
12745
12810
|
|
|
12811
|
+
class AgentTraceTableConnection(sgqlc.types.relay.Connection):
|
|
12812
|
+
__schema__ = schema
|
|
12813
|
+
__field_names__ = ("page_info", "edges")
|
|
12814
|
+
page_info = sgqlc.types.Field(sgqlc.types.non_null("PageInfo"), graphql_name="pageInfo")
|
|
12815
|
+
"""Pagination data for this connection."""
|
|
12816
|
+
|
|
12817
|
+
edges = sgqlc.types.Field(
|
|
12818
|
+
sgqlc.types.non_null(sgqlc.types.list_of("AgentTraceTableEdge")), graphql_name="edges"
|
|
12819
|
+
)
|
|
12820
|
+
"""Contains the nodes in this connection."""
|
|
12821
|
+
|
|
12822
|
+
|
|
12823
|
+
class AgentTraceTableEdge(sgqlc.types.Type):
|
|
12824
|
+
"""A Relay edge containing a `AgentTraceTable` and its cursor."""
|
|
12825
|
+
|
|
12826
|
+
__schema__ = schema
|
|
12827
|
+
__field_names__ = ("node", "cursor")
|
|
12828
|
+
node = sgqlc.types.Field("AgentTraceTable", graphql_name="node")
|
|
12829
|
+
"""The item at the end of the edge"""
|
|
12830
|
+
|
|
12831
|
+
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cursor")
|
|
12832
|
+
"""A cursor for use in pagination"""
|
|
12833
|
+
|
|
12834
|
+
|
|
12746
12835
|
class AggregatedMetricDataType(sgqlc.types.Type):
|
|
12747
12836
|
__schema__ = schema
|
|
12748
12837
|
__field_names__ = ("query_group", "metric_aggregation", "timestamp", "value")
|
|
@@ -13727,6 +13816,7 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
|
|
|
13727
13816
|
"description",
|
|
13728
13817
|
"users",
|
|
13729
13818
|
"domain_restrictions",
|
|
13819
|
+
"connection_restrictions",
|
|
13730
13820
|
"sso_group",
|
|
13731
13821
|
"source",
|
|
13732
13822
|
"is_membership_managed",
|
|
@@ -13768,6 +13858,12 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
|
|
|
13768
13858
|
)
|
|
13769
13859
|
"""List of domains this group is limited to."""
|
|
13770
13860
|
|
|
13861
|
+
connection_restrictions = sgqlc.types.Field(
|
|
13862
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null("ConnectionRestriction"))),
|
|
13863
|
+
graphql_name="connectionRestrictions",
|
|
13864
|
+
)
|
|
13865
|
+
"""List of connections this group is limited to."""
|
|
13866
|
+
|
|
13771
13867
|
sso_group = sgqlc.types.Field(String, graphql_name="ssoGroup")
|
|
13772
13868
|
"""SSO group name to map this authorization group to"""
|
|
13773
13869
|
|
|
@@ -15787,7 +15883,6 @@ class Connection(sgqlc.types.Type):
|
|
|
15787
15883
|
"type",
|
|
15788
15884
|
"subtype",
|
|
15789
15885
|
"name",
|
|
15790
|
-
"account",
|
|
15791
15886
|
"warehouse",
|
|
15792
15887
|
"bi_container",
|
|
15793
15888
|
"etl_container",
|
|
@@ -15802,6 +15897,7 @@ class Connection(sgqlc.types.Type):
|
|
|
15802
15897
|
"is_active",
|
|
15803
15898
|
"disabled_on",
|
|
15804
15899
|
"dbt_projects",
|
|
15900
|
+
"account",
|
|
15805
15901
|
"connection_identifier",
|
|
15806
15902
|
"connection_identifiers",
|
|
15807
15903
|
"job_errors",
|
|
@@ -15832,8 +15928,6 @@ class Connection(sgqlc.types.Type):
|
|
|
15832
15928
|
name = sgqlc.types.Field(String, graphql_name="name")
|
|
15833
15929
|
"""Connection name"""
|
|
15834
15930
|
|
|
15835
|
-
account = sgqlc.types.Field(Account, graphql_name="account")
|
|
15836
|
-
|
|
15837
15931
|
warehouse = sgqlc.types.Field("Warehouse", graphql_name="warehouse")
|
|
15838
15932
|
|
|
15839
15933
|
bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
|
|
@@ -15892,6 +15986,8 @@ class Connection(sgqlc.types.Type):
|
|
|
15892
15986
|
* `last` (`Int`)None
|
|
15893
15987
|
"""
|
|
15894
15988
|
|
|
15989
|
+
account = sgqlc.types.Field(Account, graphql_name="account")
|
|
15990
|
+
|
|
15895
15991
|
connection_identifier = sgqlc.types.Field(
|
|
15896
15992
|
"ConnectionIdentifier", graphql_name="connectionIdentifier"
|
|
15897
15993
|
)
|
|
@@ -16464,6 +16560,12 @@ class CreateOrUpdateAgentMonitor(sgqlc.types.Type):
|
|
|
16464
16560
|
"""SQL queries that will be run by the monitor on each execution."""
|
|
16465
16561
|
|
|
16466
16562
|
|
|
16563
|
+
class CreateOrUpdateAgentTraceTable(sgqlc.types.Type):
|
|
16564
|
+
__schema__ = schema
|
|
16565
|
+
__field_names__ = ("agent_trace_table",)
|
|
16566
|
+
agent_trace_table = sgqlc.types.Field("AgentTraceTable", graphql_name="agentTraceTable")
|
|
16567
|
+
|
|
16568
|
+
|
|
16467
16569
|
class CreateOrUpdateAlationIntegration(sgqlc.types.Type):
|
|
16468
16570
|
"""Create or update Alation integration"""
|
|
16469
16571
|
|
|
@@ -17669,6 +17771,7 @@ class DataCollectorSchedule(sgqlc.types.Type):
|
|
|
17669
17771
|
"queued_at",
|
|
17670
17772
|
"metric_monitors",
|
|
17671
17773
|
"custom_rules",
|
|
17774
|
+
"agent_trace_tables",
|
|
17672
17775
|
)
|
|
17673
17776
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
17674
17777
|
|
|
@@ -17820,6 +17923,28 @@ class DataCollectorSchedule(sgqlc.types.Type):
|
|
|
17820
17923
|
* `warehouse_uuid` (`UUID`)None
|
|
17821
17924
|
"""
|
|
17822
17925
|
|
|
17926
|
+
agent_trace_tables = sgqlc.types.Field(
|
|
17927
|
+
sgqlc.types.non_null(AgentTraceTableConnection),
|
|
17928
|
+
graphql_name="agentTraceTables",
|
|
17929
|
+
args=sgqlc.types.ArgDict(
|
|
17930
|
+
(
|
|
17931
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
17932
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
17933
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
17934
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
17935
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
17936
|
+
)
|
|
17937
|
+
),
|
|
17938
|
+
)
|
|
17939
|
+
"""Arguments:
|
|
17940
|
+
|
|
17941
|
+
* `offset` (`Int`)None
|
|
17942
|
+
* `before` (`String`)None
|
|
17943
|
+
* `after` (`String`)None
|
|
17944
|
+
* `first` (`Int`)None
|
|
17945
|
+
* `last` (`Int`)None
|
|
17946
|
+
"""
|
|
17947
|
+
|
|
17823
17948
|
|
|
17824
17949
|
class DataCollectorScheduleInfo(sgqlc.types.Type):
|
|
17825
17950
|
"""Detailed information about a data collector schedule"""
|
|
@@ -18107,6 +18232,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
|
|
|
18107
18232
|
"""Contains the nodes in this connection."""
|
|
18108
18233
|
|
|
18109
18234
|
|
|
18235
|
+
class DataProductDryRunTableCounts(sgqlc.types.Type):
|
|
18236
|
+
__schema__ = schema
|
|
18237
|
+
__field_names__ = (
|
|
18238
|
+
"total_asset_count",
|
|
18239
|
+
"total_asset_monitored_count",
|
|
18240
|
+
"total_asset_unmonitored_count",
|
|
18241
|
+
)
|
|
18242
|
+
total_asset_count = sgqlc.types.Field(Int, graphql_name="totalAssetCount")
|
|
18243
|
+
"""Total count of assets that would be in the data product"""
|
|
18244
|
+
|
|
18245
|
+
total_asset_monitored_count = sgqlc.types.Field(Int, graphql_name="totalAssetMonitoredCount")
|
|
18246
|
+
"""Total count of already monitored assets"""
|
|
18247
|
+
|
|
18248
|
+
total_asset_unmonitored_count = sgqlc.types.Field(
|
|
18249
|
+
Int, graphql_name="totalAssetUnmonitoredCount"
|
|
18250
|
+
)
|
|
18251
|
+
"""Total count of yet unmonitored assets"""
|
|
18252
|
+
|
|
18253
|
+
|
|
18110
18254
|
class DataProductEdge(sgqlc.types.Type):
|
|
18111
18255
|
"""A Relay edge containing a `DataProduct` and its cursor."""
|
|
18112
18256
|
|
|
@@ -23300,6 +23444,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23300
23444
|
"exceptions_detail",
|
|
23301
23445
|
"runtime_variables",
|
|
23302
23446
|
"comparison_data_source_type",
|
|
23447
|
+
"table_monitor_warning",
|
|
23448
|
+
"size_collection_table_mcon",
|
|
23449
|
+
"size_collection_enabled",
|
|
23303
23450
|
"total_invocations_count",
|
|
23304
23451
|
"total_result_count",
|
|
23305
23452
|
"total_execution_duration",
|
|
@@ -23339,6 +23486,19 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23339
23486
|
)
|
|
23340
23487
|
"""Comparison Source type in the job execution"""
|
|
23341
23488
|
|
|
23489
|
+
table_monitor_warning = sgqlc.types.Field(Boolean, graphql_name="tableMonitorWarning")
|
|
23490
|
+
"""True if this table monitor execution failure was treated as a
|
|
23491
|
+
warning and no failure notification was sent.
|
|
23492
|
+
"""
|
|
23493
|
+
|
|
23494
|
+
size_collection_table_mcon = sgqlc.types.Field(String, graphql_name="sizeCollectionTableMcon")
|
|
23495
|
+
"""MCON of the table for size collection executions in table monitors"""
|
|
23496
|
+
|
|
23497
|
+
size_collection_enabled = sgqlc.types.Field(
|
|
23498
|
+
sgqlc.types.non_null(Boolean), graphql_name="sizeCollectionEnabled"
|
|
23499
|
+
)
|
|
23500
|
+
"""True if size collection is enabled for the asset"""
|
|
23501
|
+
|
|
23342
23502
|
total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
|
|
23343
23503
|
"""Total number of invocations for the job execution. May be null if
|
|
23344
23504
|
execution has not completed.
|
|
@@ -25789,6 +25949,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
|
|
|
25789
25949
|
class Mutation(sgqlc.types.Type):
|
|
25790
25950
|
__schema__ = schema
|
|
25791
25951
|
__field_names__ = (
|
|
25952
|
+
"create_or_update_agent_trace_table",
|
|
25792
25953
|
"link_slack_app_installation",
|
|
25793
25954
|
"create_logs_integration",
|
|
25794
25955
|
"update_logs_integration",
|
|
@@ -26244,6 +26405,29 @@ class Mutation(sgqlc.types.Type):
|
|
|
26244
26405
|
"update_account_secret",
|
|
26245
26406
|
"delete_account_secret",
|
|
26246
26407
|
)
|
|
26408
|
+
create_or_update_agent_trace_table = sgqlc.types.Field(
|
|
26409
|
+
CreateOrUpdateAgentTraceTable,
|
|
26410
|
+
graphql_name="createOrUpdateAgentTraceTable",
|
|
26411
|
+
args=sgqlc.types.ArgDict(
|
|
26412
|
+
(
|
|
26413
|
+
(
|
|
26414
|
+
"input",
|
|
26415
|
+
sgqlc.types.Arg(
|
|
26416
|
+
sgqlc.types.non_null(CreateOrUpdateAgentTraceTableInput),
|
|
26417
|
+
graphql_name="input",
|
|
26418
|
+
default=None,
|
|
26419
|
+
),
|
|
26420
|
+
),
|
|
26421
|
+
)
|
|
26422
|
+
),
|
|
26423
|
+
)
|
|
26424
|
+
"""(experimental) Create or update an agent trace table
|
|
26425
|
+
|
|
26426
|
+
Arguments:
|
|
26427
|
+
|
|
26428
|
+
* `input` (`CreateOrUpdateAgentTraceTableInput!`)None
|
|
26429
|
+
"""
|
|
26430
|
+
|
|
26247
26431
|
link_slack_app_installation = sgqlc.types.Field(
|
|
26248
26432
|
LinkSlackAppInstallation,
|
|
26249
26433
|
graphql_name="linkSlackAppInstallation",
|
|
@@ -38111,6 +38295,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
38111
38295
|
graphql_name="createOrUpdateAuthorizationGroup",
|
|
38112
38296
|
args=sgqlc.types.ArgDict(
|
|
38113
38297
|
(
|
|
38298
|
+
(
|
|
38299
|
+
"connection_restriction_ids",
|
|
38300
|
+
sgqlc.types.Arg(
|
|
38301
|
+
sgqlc.types.list_of(UUID),
|
|
38302
|
+
graphql_name="connectionRestrictionIds",
|
|
38303
|
+
default=None,
|
|
38304
|
+
),
|
|
38305
|
+
),
|
|
38114
38306
|
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
38115
38307
|
(
|
|
38116
38308
|
"domain_restriction_ids",
|
|
@@ -38148,6 +38340,9 @@ class Mutation(sgqlc.types.Type):
|
|
|
38148
38340
|
|
|
38149
38341
|
Arguments:
|
|
38150
38342
|
|
|
38343
|
+
* `connection_restriction_ids` (`[UUID]`): Optional list of
|
|
38344
|
+
connection UUIDs to restrict visibility to. If not provided,
|
|
38345
|
+
will clear/apply no restrictions.
|
|
38151
38346
|
* `description` (`String`): Description/help text to help users
|
|
38152
38347
|
understand the purpose of the group. If not provided on updates,
|
|
38153
38348
|
will keep current value.
|
|
@@ -39189,7 +39384,9 @@ class Mutation(sgqlc.types.Type):
|
|
|
39189
39384
|
),
|
|
39190
39385
|
(
|
|
39191
39386
|
"integration_type",
|
|
39192
|
-
sgqlc.types.Arg(
|
|
39387
|
+
sgqlc.types.Arg(
|
|
39388
|
+
sgqlc.types.non_null(String), graphql_name="integrationType", default=None
|
|
39389
|
+
),
|
|
39193
39390
|
),
|
|
39194
39391
|
(
|
|
39195
39392
|
"name",
|
|
@@ -39205,8 +39402,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
39205
39402
|
Arguments:
|
|
39206
39403
|
|
|
39207
39404
|
* `integration_id` (`UUID!`): UUID of the integration to update.
|
|
39208
|
-
* `integration_type` (`String
|
|
39209
|
-
routing
|
|
39405
|
+
* `integration_type` (`String!`): Integration type for direct
|
|
39406
|
+
routing.
|
|
39210
39407
|
* `name` (`String!`): Desired name.
|
|
39211
39408
|
"""
|
|
39212
39409
|
|
|
@@ -44843,6 +45040,7 @@ class QueriedTable(sgqlc.types.Type):
|
|
|
44843
45040
|
class Query(sgqlc.types.Type):
|
|
44844
45041
|
__schema__ = schema
|
|
44845
45042
|
__field_names__ = (
|
|
45043
|
+
"get_agent_trace_tables",
|
|
44846
45044
|
"get_table_monitor_metric",
|
|
44847
45045
|
"get_tables_for_coverage_dashboard",
|
|
44848
45046
|
"get_monitor_counts_by_creator",
|
|
@@ -44928,6 +45126,7 @@ class Query(sgqlc.types.Type):
|
|
|
44928
45126
|
"get_data_product_upstream_counts",
|
|
44929
45127
|
"get_data_product_audiences",
|
|
44930
45128
|
"get_top_warehouse_for_data_product_mcons",
|
|
45129
|
+
"get_data_product_dry_run_counts",
|
|
44931
45130
|
"parse_query",
|
|
44932
45131
|
"ping_data_collector",
|
|
44933
45132
|
"get_ms_teams_integrations",
|
|
@@ -45327,6 +45526,11 @@ class Query(sgqlc.types.Type):
|
|
|
45327
45526
|
"get_account_secret",
|
|
45328
45527
|
"get_account_secrets",
|
|
45329
45528
|
)
|
|
45529
|
+
get_agent_trace_tables = sgqlc.types.Field(
|
|
45530
|
+
sgqlc.types.list_of("AgentTraceTable"), graphql_name="getAgentTraceTables"
|
|
45531
|
+
)
|
|
45532
|
+
"""(experimental) Get all agent trace tables"""
|
|
45533
|
+
|
|
45330
45534
|
get_table_monitor_metric = sgqlc.types.Field(
|
|
45331
45535
|
"TableMonitorMetric",
|
|
45332
45536
|
graphql_name="getTableMonitorMetric",
|
|
@@ -47724,6 +47928,31 @@ class Query(sgqlc.types.Type):
|
|
|
47724
47928
|
* `mcons` (`[String]!`): List of MCONs to analyze
|
|
47725
47929
|
"""
|
|
47726
47930
|
|
|
47931
|
+
get_data_product_dry_run_counts = sgqlc.types.Field(
|
|
47932
|
+
DataProductDryRunTableCounts,
|
|
47933
|
+
graphql_name="getDataProductDryRunCounts",
|
|
47934
|
+
args=sgqlc.types.ArgDict(
|
|
47935
|
+
(
|
|
47936
|
+
(
|
|
47937
|
+
"mcons",
|
|
47938
|
+
sgqlc.types.Arg(
|
|
47939
|
+
sgqlc.types.non_null(sgqlc.types.list_of(String)),
|
|
47940
|
+
graphql_name="mcons",
|
|
47941
|
+
default=None,
|
|
47942
|
+
),
|
|
47943
|
+
),
|
|
47944
|
+
)
|
|
47945
|
+
),
|
|
47946
|
+
)
|
|
47947
|
+
"""(experimental) Return asset counts for a data product had it been
|
|
47948
|
+
created from these MCONs
|
|
47949
|
+
|
|
47950
|
+
Arguments:
|
|
47951
|
+
|
|
47952
|
+
* `mcons` (`[String]!`): MCON of assets to create data product
|
|
47953
|
+
from
|
|
47954
|
+
"""
|
|
47955
|
+
|
|
47727
47956
|
parse_query = sgqlc.types.Field(
|
|
47728
47957
|
"SqlParserResult",
|
|
47729
47958
|
graphql_name="parseQuery",
|
|
@@ -69105,6 +69334,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
|
|
|
69105
69334
|
"domain_restrictions",
|
|
69106
69335
|
"permissions",
|
|
69107
69336
|
"performance_dashboard_access",
|
|
69337
|
+
"can_edit_table_monitors",
|
|
69108
69338
|
)
|
|
69109
69339
|
groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
|
|
69110
69340
|
"""List of the groups this user is a member of."""
|
|
@@ -69129,6 +69359,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
|
|
|
69129
69359
|
"ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
|
|
69130
69360
|
)
|
|
69131
69361
|
|
|
69362
|
+
can_edit_table_monitors = sgqlc.types.Field(Boolean, graphql_name="canEditTableMonitors")
|
|
69363
|
+
"""Whether the user can create, update or delete table monitors."""
|
|
69364
|
+
|
|
69132
69365
|
|
|
69133
69366
|
class UserBasicInfoConnection(sgqlc.types.relay.Connection):
|
|
69134
69367
|
__schema__ = schema
|
|
@@ -70526,6 +70759,39 @@ class AdfTaskRun(sgqlc.types.Type, Node):
|
|
|
70526
70759
|
"""MCON of Job for provided job_id"""
|
|
70527
70760
|
|
|
70528
70761
|
|
|
70762
|
+
class AgentTraceTable(sgqlc.types.Type, Node):
|
|
70763
|
+
__schema__ = schema
|
|
70764
|
+
__field_names__ = (
|
|
70765
|
+
"created_time",
|
|
70766
|
+
"updated_time",
|
|
70767
|
+
"uuid",
|
|
70768
|
+
"account",
|
|
70769
|
+
"table",
|
|
70770
|
+
"span_format",
|
|
70771
|
+
"schedule",
|
|
70772
|
+
)
|
|
70773
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
70774
|
+
|
|
70775
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
70776
|
+
|
|
70777
|
+
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
70778
|
+
"""Unique ID of the Agent Trace Table."""
|
|
70779
|
+
|
|
70780
|
+
account = sgqlc.types.Field(sgqlc.types.non_null(Account), graphql_name="account")
|
|
70781
|
+
|
|
70782
|
+
table = sgqlc.types.Field(sgqlc.types.non_null("WarehouseTable"), graphql_name="table")
|
|
70783
|
+
"""Agent trace table"""
|
|
70784
|
+
|
|
70785
|
+
span_format = sgqlc.types.Field(
|
|
70786
|
+
sgqlc.types.non_null(AgentTraceTableModelSpanFormat), graphql_name="spanFormat"
|
|
70787
|
+
)
|
|
70788
|
+
"""Format of spans in the table."""
|
|
70789
|
+
|
|
70790
|
+
schedule = sgqlc.types.Field(
|
|
70791
|
+
sgqlc.types.non_null(DataCollectorSchedule), graphql_name="schedule"
|
|
70792
|
+
)
|
|
70793
|
+
|
|
70794
|
+
|
|
70529
70795
|
class AirflowDag(sgqlc.types.Type, Node):
|
|
70530
70796
|
__schema__ = schema
|
|
70531
70797
|
__field_names__ = (
|
|
@@ -72769,6 +73035,114 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
72769
73035
|
)
|
|
72770
73036
|
|
|
72771
73037
|
|
|
73038
|
+
class ConnectionRestriction(sgqlc.types.Type, Node):
|
|
73039
|
+
__schema__ = schema
|
|
73040
|
+
__field_names__ = (
|
|
73041
|
+
"created_time",
|
|
73042
|
+
"updated_time",
|
|
73043
|
+
"created_by",
|
|
73044
|
+
"last_update_user",
|
|
73045
|
+
"deleted_at",
|
|
73046
|
+
"uuid",
|
|
73047
|
+
"type",
|
|
73048
|
+
"subtype",
|
|
73049
|
+
"name",
|
|
73050
|
+
"warehouse",
|
|
73051
|
+
"bi_container",
|
|
73052
|
+
"etl_container",
|
|
73053
|
+
"deletion_protection",
|
|
73054
|
+
"job_types",
|
|
73055
|
+
"streaming_cluster",
|
|
73056
|
+
"credentials_s3_key",
|
|
73057
|
+
"integration_gateway_credentials_key",
|
|
73058
|
+
"data",
|
|
73059
|
+
"created_on",
|
|
73060
|
+
"updated_on",
|
|
73061
|
+
"is_active",
|
|
73062
|
+
"disabled_on",
|
|
73063
|
+
"dbt_projects",
|
|
73064
|
+
)
|
|
73065
|
+
created_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdTime")
|
|
73066
|
+
|
|
73067
|
+
updated_time = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="updatedTime")
|
|
73068
|
+
|
|
73069
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
73070
|
+
"""Creator"""
|
|
73071
|
+
|
|
73072
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
73073
|
+
"""Last updated by"""
|
|
73074
|
+
|
|
73075
|
+
deleted_at = sgqlc.types.Field(DateTime, graphql_name="deletedAt")
|
|
73076
|
+
|
|
73077
|
+
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
73078
|
+
|
|
73079
|
+
type = sgqlc.types.Field(sgqlc.types.non_null(ConnectionModelType), graphql_name="type")
|
|
73080
|
+
|
|
73081
|
+
subtype = sgqlc.types.Field(String, graphql_name="subtype")
|
|
73082
|
+
"""Subtype of a plugin connection"""
|
|
73083
|
+
|
|
73084
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
73085
|
+
"""Name of the connection"""
|
|
73086
|
+
|
|
73087
|
+
warehouse = sgqlc.types.Field(Warehouse, graphql_name="warehouse")
|
|
73088
|
+
|
|
73089
|
+
bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
|
|
73090
|
+
|
|
73091
|
+
etl_container = sgqlc.types.Field(EtlContainer, graphql_name="etlContainer")
|
|
73092
|
+
|
|
73093
|
+
deletion_protection = sgqlc.types.Field(
|
|
73094
|
+
sgqlc.types.non_null(Boolean), graphql_name="deletionProtection"
|
|
73095
|
+
)
|
|
73096
|
+
"""Prevents deletion when enabled."""
|
|
73097
|
+
|
|
73098
|
+
job_types = sgqlc.types.Field(
|
|
73099
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(String))),
|
|
73100
|
+
graphql_name="jobTypes",
|
|
73101
|
+
)
|
|
73102
|
+
|
|
73103
|
+
streaming_cluster = sgqlc.types.Field(StreamingCluster, graphql_name="streamingCluster")
|
|
73104
|
+
|
|
73105
|
+
credentials_s3_key = sgqlc.types.Field(String, graphql_name="credentialsS3Key")
|
|
73106
|
+
|
|
73107
|
+
integration_gateway_credentials_key = sgqlc.types.Field(
|
|
73108
|
+
String, graphql_name="integrationGatewayCredentialsKey"
|
|
73109
|
+
)
|
|
73110
|
+
|
|
73111
|
+
data = sgqlc.types.Field(JSONString, graphql_name="data")
|
|
73112
|
+
|
|
73113
|
+
created_on = sgqlc.types.Field(sgqlc.types.non_null(DateTime), graphql_name="createdOn")
|
|
73114
|
+
|
|
73115
|
+
updated_on = sgqlc.types.Field(DateTime, graphql_name="updatedOn")
|
|
73116
|
+
|
|
73117
|
+
is_active = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name="isActive")
|
|
73118
|
+
|
|
73119
|
+
disabled_on = sgqlc.types.Field(DateTime, graphql_name="disabledOn")
|
|
73120
|
+
|
|
73121
|
+
dbt_projects = sgqlc.types.Field(
|
|
73122
|
+
sgqlc.types.non_null(DbtProjectConnection),
|
|
73123
|
+
graphql_name="dbtProjects",
|
|
73124
|
+
args=sgqlc.types.ArgDict(
|
|
73125
|
+
(
|
|
73126
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
73127
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
73128
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
73129
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
73130
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
73131
|
+
)
|
|
73132
|
+
),
|
|
73133
|
+
)
|
|
73134
|
+
"""dbt connection
|
|
73135
|
+
|
|
73136
|
+
Arguments:
|
|
73137
|
+
|
|
73138
|
+
* `offset` (`Int`)None
|
|
73139
|
+
* `before` (`String`)None
|
|
73140
|
+
* `after` (`String`)None
|
|
73141
|
+
* `first` (`Int`)None
|
|
73142
|
+
* `last` (`Int`)None
|
|
73143
|
+
"""
|
|
73144
|
+
|
|
73145
|
+
|
|
72772
73146
|
class CustomRule(sgqlc.types.Type, Node):
|
|
72773
73147
|
__schema__ = schema
|
|
72774
73148
|
__field_names__ = (
|
|
@@ -75572,9 +75946,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
|
|
|
75572
75946
|
|
|
75573
75947
|
class FilterValueField(sgqlc.types.Type, FilterValueInterface):
|
|
75574
75948
|
__schema__ = schema
|
|
75575
|
-
__field_names__ = ("field", "mcon")
|
|
75949
|
+
__field_names__ = ("field", "table", "mcon")
|
|
75576
75950
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
|
|
75577
75951
|
|
|
75952
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
75953
|
+
|
|
75578
75954
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
75579
75955
|
|
|
75580
75956
|
|
|
@@ -77541,6 +77917,7 @@ class User(sgqlc.types.Type, Node):
|
|
|
77541
77917
|
"account",
|
|
77542
77918
|
"role",
|
|
77543
77919
|
"auth",
|
|
77920
|
+
"allowed_connections",
|
|
77544
77921
|
)
|
|
77545
77922
|
cognito_user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cognitoUserId")
|
|
77546
77923
|
|
|
@@ -78751,6 +79128,12 @@ class User(sgqlc.types.Type, Node):
|
|
|
78751
79128
|
auth = sgqlc.types.Field(UserAuthorizationOutput, graphql_name="auth")
|
|
78752
79129
|
"""User's aggregate authorization policy."""
|
|
78753
79130
|
|
|
79131
|
+
allowed_connections = sgqlc.types.Field(
|
|
79132
|
+
sgqlc.types.non_null(sgqlc.types.list_of(sgqlc.types.non_null(Connection))),
|
|
79133
|
+
graphql_name="allowedConnections",
|
|
79134
|
+
)
|
|
79135
|
+
"""Connections this user is allowed to use. Empty means unrestricted."""
|
|
79136
|
+
|
|
78754
79137
|
|
|
78755
79138
|
class UserBasicInfo(sgqlc.types.Type, Node):
|
|
78756
79139
|
__schema__ = schema
|
|
@@ -79159,6 +79542,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
79159
79542
|
"dbt_nodes",
|
|
79160
79543
|
"dbt_run_steps",
|
|
79161
79544
|
"fivetranconnectormodel_set",
|
|
79545
|
+
"agent_trace_tables",
|
|
79162
79546
|
"thresholds",
|
|
79163
79547
|
"get_thresholds",
|
|
79164
79548
|
"freshness_anomaly",
|
|
@@ -79563,6 +79947,30 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
79563
79947
|
* `last` (`Int`)None
|
|
79564
79948
|
"""
|
|
79565
79949
|
|
|
79950
|
+
agent_trace_tables = sgqlc.types.Field(
|
|
79951
|
+
sgqlc.types.non_null(AgentTraceTableConnection),
|
|
79952
|
+
graphql_name="agentTraceTables",
|
|
79953
|
+
args=sgqlc.types.ArgDict(
|
|
79954
|
+
(
|
|
79955
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=None)),
|
|
79956
|
+
("before", sgqlc.types.Arg(String, graphql_name="before", default=None)),
|
|
79957
|
+
("after", sgqlc.types.Arg(String, graphql_name="after", default=None)),
|
|
79958
|
+
("first", sgqlc.types.Arg(Int, graphql_name="first", default=None)),
|
|
79959
|
+
("last", sgqlc.types.Arg(Int, graphql_name="last", default=None)),
|
|
79960
|
+
)
|
|
79961
|
+
),
|
|
79962
|
+
)
|
|
79963
|
+
"""Agent trace table
|
|
79964
|
+
|
|
79965
|
+
Arguments:
|
|
79966
|
+
|
|
79967
|
+
* `offset` (`Int`)None
|
|
79968
|
+
* `before` (`String`)None
|
|
79969
|
+
* `after` (`String`)None
|
|
79970
|
+
* `first` (`Int`)None
|
|
79971
|
+
* `last` (`Int`)None
|
|
79972
|
+
"""
|
|
79973
|
+
|
|
79566
79974
|
thresholds = sgqlc.types.Field(ThresholdsData, graphql_name="thresholds")
|
|
79567
79975
|
"""Section describing various anomaly thresholds for the table"""
|
|
79568
79976
|
|