pycarlo 0.10.207__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 +49246 -46811
- pycarlo/lib/schema.py +836 -12
- {pycarlo-0.10.207.dist-info → pycarlo-0.10.228.dist-info}/METADATA +1 -1
- {pycarlo-0.10.207.dist-info → pycarlo-0.10.228.dist-info}/RECORD +7 -7
- {pycarlo-0.10.207.dist-info → pycarlo-0.10.228.dist-info}/LICENSE +0 -0
- {pycarlo-0.10.207.dist-info → pycarlo-0.10.228.dist-info}/WHEEL +0 -0
- {pycarlo-0.10.207.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",
|
|
@@ -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",
|
|
@@ -6408,6 +6447,22 @@ class ConnectionTestOptions(sgqlc.types.Input):
|
|
|
6408
6447
|
"""Specify tests to run (Redshift only)."""
|
|
6409
6448
|
|
|
6410
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
|
+
|
|
6411
6466
|
class CreatedByFilters(sgqlc.types.Input):
|
|
6412
6467
|
__schema__ = schema
|
|
6413
6468
|
__field_names__ = ("created_by", "is_template_managed", "namespace", "rule_name")
|
|
@@ -7305,13 +7360,15 @@ class FilterUnionInput(sgqlc.types.Input):
|
|
|
7305
7360
|
|
|
7306
7361
|
class FilterValueUnionInput(sgqlc.types.Input):
|
|
7307
7362
|
__schema__ = schema
|
|
7308
|
-
__field_names__ = ("literal", "sql", "field", "mcon", "type", "id")
|
|
7363
|
+
__field_names__ = ("literal", "sql", "field", "table", "mcon", "type", "id")
|
|
7309
7364
|
literal = sgqlc.types.Field(String, graphql_name="literal")
|
|
7310
7365
|
|
|
7311
7366
|
sql = sgqlc.types.Field(String, graphql_name="sql")
|
|
7312
7367
|
|
|
7313
7368
|
field = sgqlc.types.Field(String, graphql_name="field")
|
|
7314
7369
|
|
|
7370
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
7371
|
+
|
|
7315
7372
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
7316
7373
|
|
|
7317
7374
|
type = sgqlc.types.Field(sgqlc.types.non_null(FilterValueType), graphql_name="type")
|
|
@@ -11222,6 +11279,7 @@ class Account(sgqlc.types.Type):
|
|
|
11222
11279
|
"data_products",
|
|
11223
11280
|
"opsgenie_integrations",
|
|
11224
11281
|
"collibra_integrations",
|
|
11282
|
+
"agenttracetablemodel_set",
|
|
11225
11283
|
"entitlements",
|
|
11226
11284
|
"dashboards",
|
|
11227
11285
|
"comparison_dashboards",
|
|
@@ -11673,6 +11731,28 @@ class Account(sgqlc.types.Type):
|
|
|
11673
11731
|
* `last` (`Int`)None
|
|
11674
11732
|
"""
|
|
11675
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
|
+
|
|
11676
11756
|
entitlements = sgqlc.types.Field(
|
|
11677
11757
|
sgqlc.types.list_of(EntitlementTypes), graphql_name="entitlements"
|
|
11678
11758
|
)
|
|
@@ -12432,12 +12512,17 @@ class AdditionalMonitoredTablesCountOutput(sgqlc.types.Type):
|
|
|
12432
12512
|
"""Number of additional tables that would be monitored by"""
|
|
12433
12513
|
|
|
12434
12514
|
__schema__ = schema
|
|
12435
|
-
__field_names__ = ("count",)
|
|
12515
|
+
__field_names__ = ("count", "total_count")
|
|
12436
12516
|
count = sgqlc.types.Field(Int, graphql_name="count")
|
|
12437
12517
|
"""Number of additional tables that would be monitored by current and
|
|
12438
12518
|
new rules if applied
|
|
12439
12519
|
"""
|
|
12440
12520
|
|
|
12521
|
+
total_count = sgqlc.types.Field(Int, graphql_name="totalCount")
|
|
12522
|
+
"""Total number of tables encapsulated by the rule (both currently
|
|
12523
|
+
monitored and unmonitored)
|
|
12524
|
+
"""
|
|
12525
|
+
|
|
12441
12526
|
|
|
12442
12527
|
class AdfJobConnection(sgqlc.types.relay.Connection):
|
|
12443
12528
|
__schema__ = schema
|
|
@@ -12723,6 +12808,30 @@ class AgentSpanTree(sgqlc.types.Type):
|
|
|
12723
12808
|
query = sgqlc.types.Field(String, graphql_name="query")
|
|
12724
12809
|
|
|
12725
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
|
+
|
|
12726
12835
|
class AggregatedMetricDataType(sgqlc.types.Type):
|
|
12727
12836
|
__schema__ = schema
|
|
12728
12837
|
__field_names__ = ("query_group", "metric_aggregation", "timestamp", "value")
|
|
@@ -13621,6 +13730,16 @@ class AudienceMonitorEdge(sgqlc.types.Type):
|
|
|
13621
13730
|
"""A cursor for use in pagination"""
|
|
13622
13731
|
|
|
13623
13732
|
|
|
13733
|
+
class AudienceRef(sgqlc.types.Type):
|
|
13734
|
+
__schema__ = schema
|
|
13735
|
+
__field_names__ = ("uuid", "label")
|
|
13736
|
+
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
13737
|
+
"""Audience UUID"""
|
|
13738
|
+
|
|
13739
|
+
label = sgqlc.types.Field(String, graphql_name="label")
|
|
13740
|
+
"""Audience label"""
|
|
13741
|
+
|
|
13742
|
+
|
|
13624
13743
|
class AudienceRoutingStats(sgqlc.types.Type):
|
|
13625
13744
|
__schema__ = schema
|
|
13626
13745
|
__field_names__ = (
|
|
@@ -13697,6 +13816,7 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
|
|
|
13697
13816
|
"description",
|
|
13698
13817
|
"users",
|
|
13699
13818
|
"domain_restrictions",
|
|
13819
|
+
"connection_restrictions",
|
|
13700
13820
|
"sso_group",
|
|
13701
13821
|
"source",
|
|
13702
13822
|
"is_membership_managed",
|
|
@@ -13738,6 +13858,12 @@ class AuthorizationGroupOutput(sgqlc.types.Type):
|
|
|
13738
13858
|
)
|
|
13739
13859
|
"""List of domains this group is limited to."""
|
|
13740
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
|
+
|
|
13741
13867
|
sso_group = sgqlc.types.Field(String, graphql_name="ssoGroup")
|
|
13742
13868
|
"""SSO group name to map this authorization group to"""
|
|
13743
13869
|
|
|
@@ -14054,7 +14180,15 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
|
|
|
14054
14180
|
"""Output type for Azure DevOps integration."""
|
|
14055
14181
|
|
|
14056
14182
|
__schema__ = schema
|
|
14057
|
-
__field_names__ = (
|
|
14183
|
+
__field_names__ = (
|
|
14184
|
+
"integration_id",
|
|
14185
|
+
"integration_name",
|
|
14186
|
+
"organization",
|
|
14187
|
+
"created_time",
|
|
14188
|
+
"updated_time",
|
|
14189
|
+
"created_by",
|
|
14190
|
+
"last_update_user",
|
|
14191
|
+
)
|
|
14058
14192
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
14059
14193
|
"""The integration ID"""
|
|
14060
14194
|
|
|
@@ -14066,6 +14200,18 @@ class AzureDevOpsIntegrationOutput(sgqlc.types.Type):
|
|
|
14066
14200
|
organization = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="organization")
|
|
14067
14201
|
"""Azure DevOps organization name"""
|
|
14068
14202
|
|
|
14203
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
14204
|
+
"""When the integration was created"""
|
|
14205
|
+
|
|
14206
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
14207
|
+
"""When the integration was last updated"""
|
|
14208
|
+
|
|
14209
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
14210
|
+
"""Who created the integration"""
|
|
14211
|
+
|
|
14212
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
14213
|
+
"""Who last updated the integration"""
|
|
14214
|
+
|
|
14069
14215
|
|
|
14070
14216
|
class AzureDevOpsProjectOutput(sgqlc.types.Type):
|
|
14071
14217
|
"""Output type for Azure DevOps project."""
|
|
@@ -15737,7 +15883,6 @@ class Connection(sgqlc.types.Type):
|
|
|
15737
15883
|
"type",
|
|
15738
15884
|
"subtype",
|
|
15739
15885
|
"name",
|
|
15740
|
-
"account",
|
|
15741
15886
|
"warehouse",
|
|
15742
15887
|
"bi_container",
|
|
15743
15888
|
"etl_container",
|
|
@@ -15752,6 +15897,7 @@ class Connection(sgqlc.types.Type):
|
|
|
15752
15897
|
"is_active",
|
|
15753
15898
|
"disabled_on",
|
|
15754
15899
|
"dbt_projects",
|
|
15900
|
+
"account",
|
|
15755
15901
|
"connection_identifier",
|
|
15756
15902
|
"connection_identifiers",
|
|
15757
15903
|
"job_errors",
|
|
@@ -15782,8 +15928,6 @@ class Connection(sgqlc.types.Type):
|
|
|
15782
15928
|
name = sgqlc.types.Field(String, graphql_name="name")
|
|
15783
15929
|
"""Connection name"""
|
|
15784
15930
|
|
|
15785
|
-
account = sgqlc.types.Field(Account, graphql_name="account")
|
|
15786
|
-
|
|
15787
15931
|
warehouse = sgqlc.types.Field("Warehouse", graphql_name="warehouse")
|
|
15788
15932
|
|
|
15789
15933
|
bi_container = sgqlc.types.Field(BiContainer, graphql_name="biContainer")
|
|
@@ -15842,6 +15986,8 @@ class Connection(sgqlc.types.Type):
|
|
|
15842
15986
|
* `last` (`Int`)None
|
|
15843
15987
|
"""
|
|
15844
15988
|
|
|
15989
|
+
account = sgqlc.types.Field(Account, graphql_name="account")
|
|
15990
|
+
|
|
15845
15991
|
connection_identifier = sgqlc.types.Field(
|
|
15846
15992
|
"ConnectionIdentifier", graphql_name="connectionIdentifier"
|
|
15847
15993
|
)
|
|
@@ -16414,6 +16560,12 @@ class CreateOrUpdateAgentMonitor(sgqlc.types.Type):
|
|
|
16414
16560
|
"""SQL queries that will be run by the monitor on each execution."""
|
|
16415
16561
|
|
|
16416
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
|
+
|
|
16417
16569
|
class CreateOrUpdateAlationIntegration(sgqlc.types.Type):
|
|
16418
16570
|
"""Create or update Alation integration"""
|
|
16419
16571
|
|
|
@@ -16992,6 +17144,38 @@ class CreateWebexIntegration(sgqlc.types.Type):
|
|
|
16992
17144
|
"""The integration that was created"""
|
|
16993
17145
|
|
|
16994
17146
|
|
|
17147
|
+
class CreatorDimension(sgqlc.types.Type):
|
|
17148
|
+
__schema__ = schema
|
|
17149
|
+
__field_names__ = ("full_name", "email", "user_id")
|
|
17150
|
+
full_name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="fullName")
|
|
17151
|
+
|
|
17152
|
+
email = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="email")
|
|
17153
|
+
|
|
17154
|
+
user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="userId")
|
|
17155
|
+
|
|
17156
|
+
|
|
17157
|
+
class CreatorMonitorCount(sgqlc.types.Type):
|
|
17158
|
+
__schema__ = schema
|
|
17159
|
+
__field_names__ = ("creator", "count")
|
|
17160
|
+
creator = sgqlc.types.Field(sgqlc.types.non_null(CreatorDimension), graphql_name="creator")
|
|
17161
|
+
|
|
17162
|
+
count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
|
|
17163
|
+
|
|
17164
|
+
|
|
17165
|
+
class CreatorMonitorCountsResponse(sgqlc.types.Type):
|
|
17166
|
+
__schema__ = schema
|
|
17167
|
+
__field_names__ = ("results", "total_count", "offset", "limit")
|
|
17168
|
+
results = sgqlc.types.Field(
|
|
17169
|
+
sgqlc.types.non_null(sgqlc.types.list_of(CreatorMonitorCount)), graphql_name="results"
|
|
17170
|
+
)
|
|
17171
|
+
|
|
17172
|
+
total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
|
|
17173
|
+
|
|
17174
|
+
offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
|
|
17175
|
+
|
|
17176
|
+
limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
|
|
17177
|
+
|
|
17178
|
+
|
|
16995
17179
|
class CustomComparisonMetric(sgqlc.types.Type):
|
|
16996
17180
|
__schema__ = schema
|
|
16997
17181
|
__field_names__ = ("uuid", "display_name", "source_sql_expression", "target_sql_expression")
|
|
@@ -17587,6 +17771,7 @@ class DataCollectorSchedule(sgqlc.types.Type):
|
|
|
17587
17771
|
"queued_at",
|
|
17588
17772
|
"metric_monitors",
|
|
17589
17773
|
"custom_rules",
|
|
17774
|
+
"agent_trace_tables",
|
|
17590
17775
|
)
|
|
17591
17776
|
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name="id")
|
|
17592
17777
|
|
|
@@ -17738,6 +17923,28 @@ class DataCollectorSchedule(sgqlc.types.Type):
|
|
|
17738
17923
|
* `warehouse_uuid` (`UUID`)None
|
|
17739
17924
|
"""
|
|
17740
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
|
+
|
|
17741
17948
|
|
|
17742
17949
|
class DataCollectorScheduleInfo(sgqlc.types.Type):
|
|
17743
17950
|
"""Detailed information about a data collector schedule"""
|
|
@@ -18025,6 +18232,25 @@ class DataProductConnection(sgqlc.types.relay.Connection):
|
|
|
18025
18232
|
"""Contains the nodes in this connection."""
|
|
18026
18233
|
|
|
18027
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
|
+
|
|
18028
18254
|
class DataProductEdge(sgqlc.types.Type):
|
|
18029
18255
|
"""A Relay edge containing a `DataProduct` and its cursor."""
|
|
18030
18256
|
|
|
@@ -18480,7 +18706,16 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
|
|
|
18480
18706
|
"""A Datadog integration"""
|
|
18481
18707
|
|
|
18482
18708
|
__schema__ = schema
|
|
18483
|
-
__field_names__ = (
|
|
18709
|
+
__field_names__ = (
|
|
18710
|
+
"integration_id",
|
|
18711
|
+
"integration_name",
|
|
18712
|
+
"site",
|
|
18713
|
+
"default_incident_fields",
|
|
18714
|
+
"created_time",
|
|
18715
|
+
"updated_time",
|
|
18716
|
+
"created_by",
|
|
18717
|
+
"last_update_user",
|
|
18718
|
+
)
|
|
18484
18719
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
18485
18720
|
"""The integration ID"""
|
|
18486
18721
|
|
|
@@ -18495,6 +18730,18 @@ class DatadogIntegrationOutput(sgqlc.types.Type):
|
|
|
18495
18730
|
default_incident_fields = sgqlc.types.Field(JSONString, graphql_name="defaultIncidentFields")
|
|
18496
18731
|
"""Default values for Datadog incident fields"""
|
|
18497
18732
|
|
|
18733
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
18734
|
+
"""When the integration was created"""
|
|
18735
|
+
|
|
18736
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
18737
|
+
"""When the integration was last updated"""
|
|
18738
|
+
|
|
18739
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
18740
|
+
"""Who created the integration"""
|
|
18741
|
+
|
|
18742
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
18743
|
+
"""Who last updated the integration"""
|
|
18744
|
+
|
|
18498
18745
|
|
|
18499
18746
|
class DatadogServiceOutput(sgqlc.types.Type):
|
|
18500
18747
|
"""A Datadog incident service"""
|
|
@@ -19792,6 +20039,16 @@ class DomainOutput(sgqlc.types.Type):
|
|
|
19792
20039
|
"""
|
|
19793
20040
|
|
|
19794
20041
|
|
|
20042
|
+
class DomainRef(sgqlc.types.Type):
|
|
20043
|
+
__schema__ = schema
|
|
20044
|
+
__field_names__ = ("uuid", "name")
|
|
20045
|
+
uuid = sgqlc.types.Field(UUID, graphql_name="uuid")
|
|
20046
|
+
"""Domain UUID"""
|
|
20047
|
+
|
|
20048
|
+
name = sgqlc.types.Field(String, graphql_name="name")
|
|
20049
|
+
"""Domain label"""
|
|
20050
|
+
|
|
20051
|
+
|
|
19795
20052
|
class DomainRestrictionConnection(sgqlc.types.relay.Connection):
|
|
19796
20053
|
__schema__ = schema
|
|
19797
20054
|
__field_names__ = ("page_info", "edges")
|
|
@@ -19933,6 +20190,24 @@ class Dynamic(sgqlc.types.Type):
|
|
|
19933
20190
|
"""Explanation if min/max is missing"""
|
|
19934
20191
|
|
|
19935
20192
|
|
|
20193
|
+
class ETLJobOrTaskSearchResult(sgqlc.types.Type):
|
|
20194
|
+
"""Search result for ETL jobs and tasks"""
|
|
20195
|
+
|
|
20196
|
+
__schema__ = schema
|
|
20197
|
+
__field_names__ = ("mcon", "name", "etl_type", "asset_type")
|
|
20198
|
+
mcon = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="mcon")
|
|
20199
|
+
"""Monte Carlo full identifier for an entity"""
|
|
20200
|
+
|
|
20201
|
+
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="name")
|
|
20202
|
+
"""Name of the job or task"""
|
|
20203
|
+
|
|
20204
|
+
etl_type = sgqlc.types.Field(sgqlc.types.non_null(EtlType), graphql_name="etlType")
|
|
20205
|
+
"""ETL type (airflow, databricks, azure-data-factory, dbt)"""
|
|
20206
|
+
|
|
20207
|
+
asset_type = sgqlc.types.Field(sgqlc.types.non_null(ETLAssetType), graphql_name="assetType")
|
|
20208
|
+
"""Whether this is a job or task"""
|
|
20209
|
+
|
|
20210
|
+
|
|
19936
20211
|
class ETLJobsConnectionTypeConnection(sgqlc.types.relay.Connection):
|
|
19937
20212
|
"""Etl Jobs"""
|
|
19938
20213
|
|
|
@@ -20999,6 +21274,8 @@ class FHEvent(sgqlc.types.Type):
|
|
|
20999
21274
|
"detector_feedback",
|
|
21000
21275
|
"agg_time_interval",
|
|
21001
21276
|
"event_type",
|
|
21277
|
+
"time_series_uuid",
|
|
21278
|
+
"parent_time_series_uuid",
|
|
21002
21279
|
)
|
|
21003
21280
|
event_uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="eventUuid")
|
|
21004
21281
|
"""UUID of the anomaly event"""
|
|
@@ -21060,6 +21337,12 @@ class FHEvent(sgqlc.types.Type):
|
|
|
21060
21337
|
event_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="eventType")
|
|
21061
21338
|
"""Type of the event"""
|
|
21062
21339
|
|
|
21340
|
+
time_series_uuid = sgqlc.types.Field(UUID, graphql_name="timeSeriesUuid")
|
|
21341
|
+
"""Time series UUID"""
|
|
21342
|
+
|
|
21343
|
+
parent_time_series_uuid = sgqlc.types.Field(UUID, graphql_name="parentTimeSeriesUuid")
|
|
21344
|
+
"""Parent time series UUID"""
|
|
21345
|
+
|
|
21063
21346
|
|
|
21064
21347
|
class FHEvents(sgqlc.types.Type):
|
|
21065
21348
|
__schema__ = schema
|
|
@@ -22764,6 +23047,10 @@ class JiraIntegrationOutput(sgqlc.types.Type):
|
|
|
22764
23047
|
"is_token_auth",
|
|
22765
23048
|
"webhook_secret_defined",
|
|
22766
23049
|
"webhook_secret_mismatch_detected",
|
|
23050
|
+
"created_time",
|
|
23051
|
+
"updated_time",
|
|
23052
|
+
"created_by",
|
|
23053
|
+
"last_updated_by",
|
|
22767
23054
|
)
|
|
22768
23055
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
22769
23056
|
"""The integration ID"""
|
|
@@ -22808,6 +23095,18 @@ class JiraIntegrationOutput(sgqlc.types.Type):
|
|
|
22808
23095
|
the received payloads
|
|
22809
23096
|
"""
|
|
22810
23097
|
|
|
23098
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
23099
|
+
"""When the integration was created"""
|
|
23100
|
+
|
|
23101
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
23102
|
+
"""When the integration was last updated"""
|
|
23103
|
+
|
|
23104
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
23105
|
+
"""Who created the integration"""
|
|
23106
|
+
|
|
23107
|
+
last_updated_by = sgqlc.types.Field("User", graphql_name="lastUpdatedBy")
|
|
23108
|
+
"""Who last updated the integration"""
|
|
23109
|
+
|
|
22811
23110
|
|
|
22812
23111
|
class JiraIssueTypeFieldAllowedValueOutput(sgqlc.types.Type):
|
|
22813
23112
|
__schema__ = schema
|
|
@@ -23145,6 +23444,9 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23145
23444
|
"exceptions_detail",
|
|
23146
23445
|
"runtime_variables",
|
|
23147
23446
|
"comparison_data_source_type",
|
|
23447
|
+
"table_monitor_warning",
|
|
23448
|
+
"size_collection_table_mcon",
|
|
23449
|
+
"size_collection_enabled",
|
|
23148
23450
|
"total_invocations_count",
|
|
23149
23451
|
"total_result_count",
|
|
23150
23452
|
"total_execution_duration",
|
|
@@ -23184,6 +23486,19 @@ class JobExecutionHistoryLog(sgqlc.types.Type):
|
|
|
23184
23486
|
)
|
|
23185
23487
|
"""Comparison Source type in the job execution"""
|
|
23186
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
|
+
|
|
23187
23502
|
total_invocations_count = sgqlc.types.Field(Int, graphql_name="totalInvocationsCount")
|
|
23188
23503
|
"""Total number of invocations for the job execution. May be null if
|
|
23189
23504
|
execution has not completed.
|
|
@@ -24243,6 +24558,10 @@ class LogsIntegrationOutput(sgqlc.types.Type):
|
|
|
24243
24558
|
"webhook_url",
|
|
24244
24559
|
"integration_type",
|
|
24245
24560
|
"headers",
|
|
24561
|
+
"created_time",
|
|
24562
|
+
"updated_time",
|
|
24563
|
+
"created_by",
|
|
24564
|
+
"last_update_user",
|
|
24246
24565
|
)
|
|
24247
24566
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
24248
24567
|
"""The integration ID"""
|
|
@@ -24261,6 +24580,18 @@ class LogsIntegrationOutput(sgqlc.types.Type):
|
|
|
24261
24580
|
headers = sgqlc.types.Field(sgqlc.types.list_of("WebhookHeader"), graphql_name="headers")
|
|
24262
24581
|
"""Header key/value to use when sending webhook request"""
|
|
24263
24582
|
|
|
24583
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
24584
|
+
"""When the integration was created"""
|
|
24585
|
+
|
|
24586
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
24587
|
+
"""When the integration was last updated"""
|
|
24588
|
+
|
|
24589
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
24590
|
+
"""Who created the integration"""
|
|
24591
|
+
|
|
24592
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
24593
|
+
"""Who last updated the integration"""
|
|
24594
|
+
|
|
24264
24595
|
|
|
24265
24596
|
class LookerDashboardTileRef(sgqlc.types.Type):
|
|
24266
24597
|
__schema__ = schema
|
|
@@ -25263,6 +25594,28 @@ class MonitorTable(sgqlc.types.Type):
|
|
|
25263
25594
|
"""List of MCONs for the tables with this identifier"""
|
|
25264
25595
|
|
|
25265
25596
|
|
|
25597
|
+
class MonitorTypeCount(sgqlc.types.Type):
|
|
25598
|
+
__schema__ = schema
|
|
25599
|
+
__field_names__ = ("monitor_type", "count")
|
|
25600
|
+
monitor_type = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="monitorType")
|
|
25601
|
+
|
|
25602
|
+
count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="count")
|
|
25603
|
+
|
|
25604
|
+
|
|
25605
|
+
class MonitorTypeCountsResponse(sgqlc.types.Type):
|
|
25606
|
+
__schema__ = schema
|
|
25607
|
+
__field_names__ = ("results", "total_count", "offset", "limit")
|
|
25608
|
+
results = sgqlc.types.Field(
|
|
25609
|
+
sgqlc.types.non_null(sgqlc.types.list_of(MonitorTypeCount)), graphql_name="results"
|
|
25610
|
+
)
|
|
25611
|
+
|
|
25612
|
+
total_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="totalCount")
|
|
25613
|
+
|
|
25614
|
+
offset = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="offset")
|
|
25615
|
+
|
|
25616
|
+
limit = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name="limit")
|
|
25617
|
+
|
|
25618
|
+
|
|
25266
25619
|
class MonitorWarehouse(sgqlc.types.Type):
|
|
25267
25620
|
"""Warehouse assets referenced by monitors, grouped by name"""
|
|
25268
25621
|
|
|
@@ -25596,6 +25949,7 @@ class MsTeamsInstallationList(sgqlc.types.Type):
|
|
|
25596
25949
|
class Mutation(sgqlc.types.Type):
|
|
25597
25950
|
__schema__ = schema
|
|
25598
25951
|
__field_names__ = (
|
|
25952
|
+
"create_or_update_agent_trace_table",
|
|
25599
25953
|
"link_slack_app_installation",
|
|
25600
25954
|
"create_logs_integration",
|
|
25601
25955
|
"update_logs_integration",
|
|
@@ -26051,6 +26405,29 @@ class Mutation(sgqlc.types.Type):
|
|
|
26051
26405
|
"update_account_secret",
|
|
26052
26406
|
"delete_account_secret",
|
|
26053
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
|
+
|
|
26054
26431
|
link_slack_app_installation = sgqlc.types.Field(
|
|
26055
26432
|
LinkSlackAppInstallation,
|
|
26056
26433
|
graphql_name="linkSlackAppInstallation",
|
|
@@ -33724,6 +34101,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
33724
34101
|
("dataset", sgqlc.types.Arg(String, graphql_name="dataset", default=None)),
|
|
33725
34102
|
("dw_id", sgqlc.types.Arg(UUID, graphql_name="dwId", default=None)),
|
|
33726
34103
|
("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
|
|
34104
|
+
("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
|
|
33727
34105
|
("id", sgqlc.types.Arg(Int, graphql_name="id", default=None)),
|
|
33728
34106
|
(
|
|
33729
34107
|
"maintenance_type",
|
|
@@ -33732,6 +34110,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
33732
34110
|
),
|
|
33733
34111
|
),
|
|
33734
34112
|
("mcon", sgqlc.types.Arg(String, graphql_name="mcon", default=None)),
|
|
34113
|
+
("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
|
|
33735
34114
|
("monitor_id", sgqlc.types.Arg(UUID, graphql_name="monitorId", default=None)),
|
|
33736
34115
|
("project", sgqlc.types.Arg(String, graphql_name="project", default=None)),
|
|
33737
34116
|
("reason", sgqlc.types.Arg(String, graphql_name="reason", default=None)),
|
|
@@ -33746,6 +34125,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
33746
34125
|
"time_series_uuid",
|
|
33747
34126
|
sgqlc.types.Arg(UUID, graphql_name="timeSeriesUuid", default=None),
|
|
33748
34127
|
),
|
|
34128
|
+
(
|
|
34129
|
+
"where_condition",
|
|
34130
|
+
sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
|
|
34131
|
+
),
|
|
33749
34132
|
)
|
|
33750
34133
|
),
|
|
33751
34134
|
)
|
|
@@ -33760,6 +34143,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
33760
34143
|
given
|
|
33761
34144
|
* `end_time` (`DateTime`): Start period of data maintenance. If
|
|
33762
34145
|
not set, all future data will be ignored until updated
|
|
34146
|
+
* `field` (`String`): Field to set maintenance period for. If set,
|
|
34147
|
+
the maintenance windows will only apply to the given field. Used
|
|
34148
|
+
for Monitor related windows only. Deprecated: Use
|
|
34149
|
+
time_series_uuid instead
|
|
33763
34150
|
* `id` (`Int`): ID of existing data maintenance entry for updating
|
|
33764
34151
|
* `maintenance_type` (`DataMaintenanceMetric`): If not set, all
|
|
33765
34152
|
metrics for the object will be ignored
|
|
@@ -33768,6 +34155,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
33768
34155
|
'project', 'dataset' or any table type. Setting any type other
|
|
33769
34156
|
than a table type will set the maintenance window for all
|
|
33770
34157
|
matching tables.
|
|
34158
|
+
* `metric` (`String`): Metric to set maintenance period for. If
|
|
34159
|
+
set, the maintenance windows will only apply to the given
|
|
34160
|
+
metric. Used for Monitor related windows only. Deprecated: Use
|
|
34161
|
+
time_series_uuid instead
|
|
33771
34162
|
* `monitor_id` (`UUID`): Monitor ID to set maintenance period for.
|
|
33772
34163
|
If set, the maintenance windows will only apply to the given
|
|
33773
34164
|
monitor.
|
|
@@ -33782,6 +34173,10 @@ class Mutation(sgqlc.types.Type):
|
|
|
33782
34173
|
* `time_series_uuid` (`UUID`): Time series UUID to set maintenance
|
|
33783
34174
|
period for. If set, the maintenance windows will only apply to
|
|
33784
34175
|
the given time series. Used for Monitor related windows only.
|
|
34176
|
+
* `where_condition` (`String`): Where condition to set maintenance
|
|
34177
|
+
period for. If set, the maintenance windows will only apply to
|
|
34178
|
+
the given where condition. Used for Monitor related windows
|
|
34179
|
+
only. Deprecated: Use time_series_uuid instead
|
|
33785
34180
|
"""
|
|
33786
34181
|
|
|
33787
34182
|
create_data_maintenance_window_from_holidays = sgqlc.types.Field(
|
|
@@ -37900,6 +38295,14 @@ class Mutation(sgqlc.types.Type):
|
|
|
37900
38295
|
graphql_name="createOrUpdateAuthorizationGroup",
|
|
37901
38296
|
args=sgqlc.types.ArgDict(
|
|
37902
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
|
+
),
|
|
37903
38306
|
("description", sgqlc.types.Arg(String, graphql_name="description", default=None)),
|
|
37904
38307
|
(
|
|
37905
38308
|
"domain_restriction_ids",
|
|
@@ -37937,6 +38340,9 @@ class Mutation(sgqlc.types.Type):
|
|
|
37937
38340
|
|
|
37938
38341
|
Arguments:
|
|
37939
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.
|
|
37940
38346
|
* `description` (`String`): Description/help text to help users
|
|
37941
38347
|
understand the purpose of the group. If not provided on updates,
|
|
37942
38348
|
will keep current value.
|
|
@@ -38976,6 +39382,12 @@ class Mutation(sgqlc.types.Type):
|
|
|
38976
39382
|
sgqlc.types.non_null(UUID), graphql_name="integrationId", default=None
|
|
38977
39383
|
),
|
|
38978
39384
|
),
|
|
39385
|
+
(
|
|
39386
|
+
"integration_type",
|
|
39387
|
+
sgqlc.types.Arg(
|
|
39388
|
+
sgqlc.types.non_null(String), graphql_name="integrationType", default=None
|
|
39389
|
+
),
|
|
39390
|
+
),
|
|
38979
39391
|
(
|
|
38980
39392
|
"name",
|
|
38981
39393
|
sgqlc.types.Arg(
|
|
@@ -38990,6 +39402,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
38990
39402
|
Arguments:
|
|
38991
39403
|
|
|
38992
39404
|
* `integration_id` (`UUID!`): UUID of the integration to update.
|
|
39405
|
+
* `integration_type` (`String!`): Integration type for direct
|
|
39406
|
+
routing.
|
|
38993
39407
|
* `name` (`String!`): Desired name.
|
|
38994
39408
|
"""
|
|
38995
39409
|
|
|
@@ -43898,6 +44312,10 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
|
|
|
43898
44312
|
"webhook_enabled",
|
|
43899
44313
|
"webhook_url",
|
|
43900
44314
|
"webhook_secret_defined",
|
|
44315
|
+
"created_time",
|
|
44316
|
+
"updated_time",
|
|
44317
|
+
"created_by",
|
|
44318
|
+
"last_update_user",
|
|
43901
44319
|
"webhook_secret_mismatch_detected",
|
|
43902
44320
|
)
|
|
43903
44321
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
@@ -43924,6 +44342,18 @@ class PagerDutyServiceIntegrationOutput(sgqlc.types.Type):
|
|
|
43924
44342
|
of webhook payloads sent by PagerDuty
|
|
43925
44343
|
"""
|
|
43926
44344
|
|
|
44345
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
44346
|
+
"""When the integration was created"""
|
|
44347
|
+
|
|
44348
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
44349
|
+
"""When the integration was last updated"""
|
|
44350
|
+
|
|
44351
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
44352
|
+
"""Who created the integration"""
|
|
44353
|
+
|
|
44354
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
44355
|
+
"""Who last updated the integration"""
|
|
44356
|
+
|
|
43927
44357
|
webhook_secret_mismatch_detected = sgqlc.types.Field(
|
|
43928
44358
|
Boolean, graphql_name="webhookSecretMismatchDetected"
|
|
43929
44359
|
)
|
|
@@ -44610,8 +45040,11 @@ class QueriedTable(sgqlc.types.Type):
|
|
|
44610
45040
|
class Query(sgqlc.types.Type):
|
|
44611
45041
|
__schema__ = schema
|
|
44612
45042
|
__field_names__ = (
|
|
45043
|
+
"get_agent_trace_tables",
|
|
44613
45044
|
"get_table_monitor_metric",
|
|
44614
45045
|
"get_tables_for_coverage_dashboard",
|
|
45046
|
+
"get_monitor_counts_by_creator",
|
|
45047
|
+
"get_monitor_counts_by_type",
|
|
44615
45048
|
"get_logs_integrations",
|
|
44616
45049
|
"generate_webhook_url",
|
|
44617
45050
|
"get_user_id",
|
|
@@ -44681,6 +45114,7 @@ class Query(sgqlc.types.Type):
|
|
|
44681
45114
|
"get_etl_jobs",
|
|
44682
45115
|
"get_etl_jobs_v2",
|
|
44683
45116
|
"get_etl_tasks",
|
|
45117
|
+
"search_etl_jobs_and_tasks",
|
|
44684
45118
|
"get_data_product",
|
|
44685
45119
|
"get_data_product_v2",
|
|
44686
45120
|
"get_data_products",
|
|
@@ -44692,6 +45126,7 @@ class Query(sgqlc.types.Type):
|
|
|
44692
45126
|
"get_data_product_upstream_counts",
|
|
44693
45127
|
"get_data_product_audiences",
|
|
44694
45128
|
"get_top_warehouse_for_data_product_mcons",
|
|
45129
|
+
"get_data_product_dry_run_counts",
|
|
44695
45130
|
"parse_query",
|
|
44696
45131
|
"ping_data_collector",
|
|
44697
45132
|
"get_ms_teams_integrations",
|
|
@@ -45091,6 +45526,11 @@ class Query(sgqlc.types.Type):
|
|
|
45091
45526
|
"get_account_secret",
|
|
45092
45527
|
"get_account_secrets",
|
|
45093
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
|
+
|
|
45094
45534
|
get_table_monitor_metric = sgqlc.types.Field(
|
|
45095
45535
|
"TableMonitorMetric",
|
|
45096
45536
|
graphql_name="getTableMonitorMetric",
|
|
@@ -45183,6 +45623,85 @@ class Query(sgqlc.types.Type):
|
|
|
45183
45623
|
* `data_product_ids` (`[UUID]`)None
|
|
45184
45624
|
"""
|
|
45185
45625
|
|
|
45626
|
+
get_monitor_counts_by_creator = sgqlc.types.Field(
|
|
45627
|
+
CreatorMonitorCountsResponse,
|
|
45628
|
+
graphql_name="getMonitorCountsByCreator",
|
|
45629
|
+
args=sgqlc.types.ArgDict(
|
|
45630
|
+
(
|
|
45631
|
+
(
|
|
45632
|
+
"domain_ids",
|
|
45633
|
+
sgqlc.types.Arg(
|
|
45634
|
+
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
45635
|
+
),
|
|
45636
|
+
),
|
|
45637
|
+
(
|
|
45638
|
+
"tags",
|
|
45639
|
+
sgqlc.types.Arg(
|
|
45640
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
45641
|
+
),
|
|
45642
|
+
),
|
|
45643
|
+
(
|
|
45644
|
+
"data_product_ids",
|
|
45645
|
+
sgqlc.types.Arg(
|
|
45646
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
45647
|
+
),
|
|
45648
|
+
),
|
|
45649
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
|
|
45650
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
|
|
45651
|
+
)
|
|
45652
|
+
),
|
|
45653
|
+
)
|
|
45654
|
+
"""(experimental) Get paginated monitor counts grouped by creator
|
|
45655
|
+
|
|
45656
|
+
Arguments:
|
|
45657
|
+
|
|
45658
|
+
* `domain_ids` (`[UUID]`)None
|
|
45659
|
+
* `tags` (`[TagKeyValuePairInput]`)None
|
|
45660
|
+
* `data_product_ids` (`[UUID]`)None
|
|
45661
|
+
* `offset` (`Int`)None (default: `0`)
|
|
45662
|
+
* `limit` (`Int`)None (default: `15`)
|
|
45663
|
+
"""
|
|
45664
|
+
|
|
45665
|
+
get_monitor_counts_by_type = sgqlc.types.Field(
|
|
45666
|
+
MonitorTypeCountsResponse,
|
|
45667
|
+
graphql_name="getMonitorCountsByType",
|
|
45668
|
+
args=sgqlc.types.ArgDict(
|
|
45669
|
+
(
|
|
45670
|
+
(
|
|
45671
|
+
"domain_ids",
|
|
45672
|
+
sgqlc.types.Arg(
|
|
45673
|
+
sgqlc.types.list_of(UUID), graphql_name="domainIds", default=None
|
|
45674
|
+
),
|
|
45675
|
+
),
|
|
45676
|
+
(
|
|
45677
|
+
"tags",
|
|
45678
|
+
sgqlc.types.Arg(
|
|
45679
|
+
sgqlc.types.list_of(TagKeyValuePairInput), graphql_name="tags", default=None
|
|
45680
|
+
),
|
|
45681
|
+
),
|
|
45682
|
+
(
|
|
45683
|
+
"data_product_ids",
|
|
45684
|
+
sgqlc.types.Arg(
|
|
45685
|
+
sgqlc.types.list_of(UUID), graphql_name="dataProductIds", default=None
|
|
45686
|
+
),
|
|
45687
|
+
),
|
|
45688
|
+
("offset", sgqlc.types.Arg(Int, graphql_name="offset", default=0)),
|
|
45689
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=15)),
|
|
45690
|
+
)
|
|
45691
|
+
),
|
|
45692
|
+
)
|
|
45693
|
+
"""(experimental) Get paginated monitor counts grouped by monitor
|
|
45694
|
+
type
|
|
45695
|
+
|
|
45696
|
+
Arguments:
|
|
45697
|
+
|
|
45698
|
+
* `domain_ids` (`[UUID]`)None
|
|
45699
|
+
* `tags` (`[TagKeyValuePairInput]`)None
|
|
45700
|
+
* `data_product_ids` (`[UUID]`)None
|
|
45701
|
+
* `offset` (`Int`)None (default: `0`)
|
|
45702
|
+
* `limit` (`Int`)None (default: `15`)
|
|
45703
|
+
"""
|
|
45704
|
+
|
|
45186
45705
|
get_logs_integrations = sgqlc.types.Field(
|
|
45187
45706
|
sgqlc.types.list_of(LogsIntegrationOutput),
|
|
45188
45707
|
graphql_name="getLogsIntegrations",
|
|
@@ -46963,16 +47482,48 @@ class Query(sgqlc.types.Type):
|
|
|
46963
47482
|
sgqlc.types.list_of(String), graphql_name="jobMcons", default=None
|
|
46964
47483
|
),
|
|
46965
47484
|
),
|
|
47485
|
+
(
|
|
47486
|
+
"task_mcons",
|
|
47487
|
+
sgqlc.types.Arg(
|
|
47488
|
+
sgqlc.types.list_of(String), graphql_name="taskMcons", default=None
|
|
47489
|
+
),
|
|
47490
|
+
),
|
|
46966
47491
|
)
|
|
46967
47492
|
),
|
|
46968
47493
|
)
|
|
46969
|
-
"""(experimental) Get ETL tasks for the given set of ETL Jobs
|
|
47494
|
+
"""(experimental) Get ETL tasks for the given set of ETL Jobs or
|
|
47495
|
+
specific tasks by mcons
|
|
46970
47496
|
|
|
46971
47497
|
Arguments:
|
|
46972
47498
|
|
|
46973
47499
|
* `first` (`Int!`): Page size
|
|
46974
47500
|
* `offset` (`Int!`): Page offset
|
|
46975
47501
|
* `job_mcons` (`[String]`): Filter by job mcons
|
|
47502
|
+
* `task_mcons` (`[String]`): Filter by task mcons
|
|
47503
|
+
"""
|
|
47504
|
+
|
|
47505
|
+
search_etl_jobs_and_tasks = sgqlc.types.Field(
|
|
47506
|
+
sgqlc.types.list_of(sgqlc.types.non_null(ETLJobOrTaskSearchResult)),
|
|
47507
|
+
graphql_name="searchEtlJobsAndTasks",
|
|
47508
|
+
args=sgqlc.types.ArgDict(
|
|
47509
|
+
(
|
|
47510
|
+
(
|
|
47511
|
+
"search",
|
|
47512
|
+
sgqlc.types.Arg(
|
|
47513
|
+
sgqlc.types.non_null(String), graphql_name="search", default=None
|
|
47514
|
+
),
|
|
47515
|
+
),
|
|
47516
|
+
("limit", sgqlc.types.Arg(Int, graphql_name="limit", default=50)),
|
|
47517
|
+
)
|
|
47518
|
+
),
|
|
47519
|
+
)
|
|
47520
|
+
"""(experimental) Search for ETL jobs and tasks by name across all
|
|
47521
|
+
types
|
|
47522
|
+
|
|
47523
|
+
Arguments:
|
|
47524
|
+
|
|
47525
|
+
* `search` (`String!`): Search string to filter by name
|
|
47526
|
+
* `limit` (`Int`): Maximum results to return (default: `50`)
|
|
46976
47527
|
"""
|
|
46977
47528
|
|
|
46978
47529
|
get_data_product = sgqlc.types.Field(
|
|
@@ -47377,6 +47928,31 @@ class Query(sgqlc.types.Type):
|
|
|
47377
47928
|
* `mcons` (`[String]!`): List of MCONs to analyze
|
|
47378
47929
|
"""
|
|
47379
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
|
+
|
|
47380
47956
|
parse_query = sgqlc.types.Field(
|
|
47381
47957
|
"SqlParserResult",
|
|
47382
47958
|
graphql_name="parseQuery",
|
|
@@ -51138,6 +51714,12 @@ class Query(sgqlc.types.Type):
|
|
|
51138
51714
|
),
|
|
51139
51715
|
("start_time", sgqlc.types.Arg(DateTime, graphql_name="startTime", default=None)),
|
|
51140
51716
|
("end_time", sgqlc.types.Arg(DateTime, graphql_name="endTime", default=None)),
|
|
51717
|
+
("metric", sgqlc.types.Arg(String, graphql_name="metric", default=None)),
|
|
51718
|
+
("field", sgqlc.types.Arg(String, graphql_name="field", default=None)),
|
|
51719
|
+
(
|
|
51720
|
+
"where_condition",
|
|
51721
|
+
sgqlc.types.Arg(String, graphql_name="whereCondition", default=None),
|
|
51722
|
+
),
|
|
51141
51723
|
)
|
|
51142
51724
|
),
|
|
51143
51725
|
)
|
|
@@ -51150,6 +51732,12 @@ class Query(sgqlc.types.Type):
|
|
|
51150
51732
|
time series UUID
|
|
51151
51733
|
* `start_time` (`DateTime`): Start time of maintenance period
|
|
51152
51734
|
* `end_time` (`DateTime`): End time of maintenance period
|
|
51735
|
+
* `metric` (`String`): Metric to set maintenance period for.
|
|
51736
|
+
Deprecated: Use time_series_uuid instead
|
|
51737
|
+
* `field` (`String`): Field to set maintenance period for.
|
|
51738
|
+
Deprecated: Use time_series_uuid instead
|
|
51739
|
+
* `where_condition` (`String`): Where condition to set maintenance
|
|
51740
|
+
period for. Deprecated: Use time_series_uuid instead
|
|
51153
51741
|
"""
|
|
51154
51742
|
|
|
51155
51743
|
get_data_maintenance_entries_by_mcon = sgqlc.types.Field(
|
|
@@ -63790,6 +64378,10 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
|
|
|
63790
64378
|
"webhook_url",
|
|
63791
64379
|
"webhook_config",
|
|
63792
64380
|
"options",
|
|
64381
|
+
"created_time",
|
|
64382
|
+
"updated_time",
|
|
64383
|
+
"created_by",
|
|
64384
|
+
"last_update_user",
|
|
63793
64385
|
)
|
|
63794
64386
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
63795
64387
|
"""The integration ID"""
|
|
@@ -63834,6 +64426,18 @@ class ServiceNowIntegrationOutput(sgqlc.types.Type):
|
|
|
63834
64426
|
options = sgqlc.types.Field(ServiceNowIntegrationOptions, graphql_name="options")
|
|
63835
64427
|
"""Options for ServiceNow integration"""
|
|
63836
64428
|
|
|
64429
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
64430
|
+
"""When the integration was created"""
|
|
64431
|
+
|
|
64432
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
64433
|
+
"""When the integration was last updated"""
|
|
64434
|
+
|
|
64435
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
64436
|
+
"""Who created the integration"""
|
|
64437
|
+
|
|
64438
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
64439
|
+
"""Who last updated the integration"""
|
|
64440
|
+
|
|
63837
64441
|
|
|
63838
64442
|
class ServiceNowStateMappingOutput(sgqlc.types.Type):
|
|
63839
64443
|
__schema__ = schema
|
|
@@ -68730,6 +69334,7 @@ class UserAuthorizationOutput(sgqlc.types.Type):
|
|
|
68730
69334
|
"domain_restrictions",
|
|
68731
69335
|
"permissions",
|
|
68732
69336
|
"performance_dashboard_access",
|
|
69337
|
+
"can_edit_table_monitors",
|
|
68733
69338
|
)
|
|
68734
69339
|
groups = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="groups")
|
|
68735
69340
|
"""List of the groups this user is a member of."""
|
|
@@ -68754,6 +69359,9 @@ class UserAuthorizationOutput(sgqlc.types.Type):
|
|
|
68754
69359
|
"ValidatePerformanceDashboardAccessResponse", graphql_name="performanceDashboardAccess"
|
|
68755
69360
|
)
|
|
68756
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
|
+
|
|
68757
69365
|
|
|
68758
69366
|
class UserBasicInfoConnection(sgqlc.types.relay.Connection):
|
|
68759
69367
|
__schema__ = schema
|
|
@@ -69737,7 +70345,14 @@ class WebexIntegrationOutput(sgqlc.types.Type):
|
|
|
69737
70345
|
"""A Webex integration"""
|
|
69738
70346
|
|
|
69739
70347
|
__schema__ = schema
|
|
69740
|
-
__field_names__ = (
|
|
70348
|
+
__field_names__ = (
|
|
70349
|
+
"integration_id",
|
|
70350
|
+
"integration_name",
|
|
70351
|
+
"created_time",
|
|
70352
|
+
"updated_time",
|
|
70353
|
+
"created_by",
|
|
70354
|
+
"last_update_user",
|
|
70355
|
+
)
|
|
69741
70356
|
integration_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="integrationId")
|
|
69742
70357
|
"""The integration ID"""
|
|
69743
70358
|
|
|
@@ -69746,6 +70361,18 @@ class WebexIntegrationOutput(sgqlc.types.Type):
|
|
|
69746
70361
|
)
|
|
69747
70362
|
"""A short name to identify the integration"""
|
|
69748
70363
|
|
|
70364
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
70365
|
+
"""When the integration was created"""
|
|
70366
|
+
|
|
70367
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
70368
|
+
"""When the integration was last updated"""
|
|
70369
|
+
|
|
70370
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
70371
|
+
"""Who created the integration"""
|
|
70372
|
+
|
|
70373
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
70374
|
+
"""Who last updated the integration"""
|
|
70375
|
+
|
|
69749
70376
|
|
|
69750
70377
|
class WebexTestCredentialsOutput(sgqlc.types.Type):
|
|
69751
70378
|
"""A Webex test credentials result"""
|
|
@@ -70132,6 +70759,39 @@ class AdfTaskRun(sgqlc.types.Type, Node):
|
|
|
70132
70759
|
"""MCON of Job for provided job_id"""
|
|
70133
70760
|
|
|
70134
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
|
+
|
|
70135
70795
|
class AirflowDag(sgqlc.types.Type, Node):
|
|
70136
70796
|
__schema__ = schema
|
|
70137
70797
|
__field_names__ = (
|
|
@@ -70593,6 +71253,10 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
|
|
|
70593
71253
|
"priority",
|
|
70594
71254
|
"status",
|
|
70595
71255
|
"tables",
|
|
71256
|
+
"audiences",
|
|
71257
|
+
"monitor_tags",
|
|
71258
|
+
"invalid_rows",
|
|
71259
|
+
"domains",
|
|
70596
71260
|
"jira_tickets",
|
|
70597
71261
|
"service_now_incidents",
|
|
70598
71262
|
"opsgenie_incidents",
|
|
@@ -70632,6 +71296,20 @@ class Alert(sgqlc.types.Type, NodeWithUUID):
|
|
|
70632
71296
|
tables = sgqlc.types.Field(sgqlc.types.list_of(TableOutput), graphql_name="tables")
|
|
70633
71297
|
"""Tables or views associated with the alert"""
|
|
70634
71298
|
|
|
71299
|
+
audiences = sgqlc.types.Field(sgqlc.types.list_of(AudienceRef), graphql_name="audiences")
|
|
71300
|
+
"""List of audiences associated with the alert"""
|
|
71301
|
+
|
|
71302
|
+
monitor_tags = sgqlc.types.Field(
|
|
71303
|
+
sgqlc.types.list_of(TagKeyValuePairOutput), graphql_name="monitorTags"
|
|
71304
|
+
)
|
|
71305
|
+
"""Monitor tags associated with the alert"""
|
|
71306
|
+
|
|
71307
|
+
invalid_rows = sgqlc.types.Field(Int, graphql_name="invalidRows")
|
|
71308
|
+
"""Number of invalid rows of a breached monitor if available"""
|
|
71309
|
+
|
|
71310
|
+
domains = sgqlc.types.Field(sgqlc.types.list_of(DomainRef), graphql_name="domains")
|
|
71311
|
+
"""List of domain associated with the alert"""
|
|
71312
|
+
|
|
70635
71313
|
jira_tickets = sgqlc.types.Field(sgqlc.types.list_of("JiraTicket"), graphql_name="jiraTickets")
|
|
70636
71314
|
"""Jira tickets associated with the alert"""
|
|
70637
71315
|
|
|
@@ -72254,6 +72932,7 @@ class CollectionBlock(sgqlc.types.Type, CollectionPreferenceNode):
|
|
|
72254
72932
|
class CollibraIntegration(sgqlc.types.Type, Node):
|
|
72255
72933
|
__schema__ = schema
|
|
72256
72934
|
__field_names__ = (
|
|
72935
|
+
"last_update_user",
|
|
72257
72936
|
"uuid",
|
|
72258
72937
|
"integration_name",
|
|
72259
72938
|
"server_url",
|
|
@@ -72264,6 +72943,9 @@ class CollibraIntegration(sgqlc.types.Type, Node):
|
|
|
72264
72943
|
"created_by",
|
|
72265
72944
|
"warehouse_domain_mapping",
|
|
72266
72945
|
)
|
|
72946
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
72947
|
+
"""Last updated by"""
|
|
72948
|
+
|
|
72267
72949
|
uuid = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="uuid")
|
|
72268
72950
|
"""Integration external ID"""
|
|
72269
72951
|
|
|
@@ -72353,6 +73035,114 @@ class ComparisonMonitorResponse(sgqlc.types.Type, Node):
|
|
|
72353
73035
|
)
|
|
72354
73036
|
|
|
72355
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
|
+
|
|
72356
73146
|
class CustomRule(sgqlc.types.Type, Node):
|
|
72357
73147
|
__schema__ = schema
|
|
72358
73148
|
__field_names__ = (
|
|
@@ -75156,9 +75946,11 @@ class FilterUnary(sgqlc.types.Type, FilterInterface):
|
|
|
75156
75946
|
|
|
75157
75947
|
class FilterValueField(sgqlc.types.Type, FilterValueInterface):
|
|
75158
75948
|
__schema__ = schema
|
|
75159
|
-
__field_names__ = ("field", "mcon")
|
|
75949
|
+
__field_names__ = ("field", "table", "mcon")
|
|
75160
75950
|
field = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="field")
|
|
75161
75951
|
|
|
75952
|
+
table = sgqlc.types.Field(String, graphql_name="table")
|
|
75953
|
+
|
|
75162
75954
|
mcon = sgqlc.types.Field(String, graphql_name="mcon")
|
|
75163
75955
|
|
|
75164
75956
|
|
|
@@ -77125,6 +77917,7 @@ class User(sgqlc.types.Type, Node):
|
|
|
77125
77917
|
"account",
|
|
77126
77918
|
"role",
|
|
77127
77919
|
"auth",
|
|
77920
|
+
"allowed_connections",
|
|
77128
77921
|
)
|
|
77129
77922
|
cognito_user_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="cognitoUserId")
|
|
77130
77923
|
|
|
@@ -78335,6 +79128,12 @@ class User(sgqlc.types.Type, Node):
|
|
|
78335
79128
|
auth = sgqlc.types.Field(UserAuthorizationOutput, graphql_name="auth")
|
|
78336
79129
|
"""User's aggregate authorization policy."""
|
|
78337
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
|
+
|
|
78338
79137
|
|
|
78339
79138
|
class UserBasicInfo(sgqlc.types.Type, Node):
|
|
78340
79139
|
__schema__ = schema
|
|
@@ -78743,6 +79542,7 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
78743
79542
|
"dbt_nodes",
|
|
78744
79543
|
"dbt_run_steps",
|
|
78745
79544
|
"fivetranconnectormodel_set",
|
|
79545
|
+
"agent_trace_tables",
|
|
78746
79546
|
"thresholds",
|
|
78747
79547
|
"get_thresholds",
|
|
78748
79548
|
"freshness_anomaly",
|
|
@@ -79147,6 +79947,30 @@ class WarehouseTable(sgqlc.types.Type, Node):
|
|
|
79147
79947
|
* `last` (`Int`)None
|
|
79148
79948
|
"""
|
|
79149
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
|
+
|
|
79150
79974
|
thresholds = sgqlc.types.Field(ThresholdsData, graphql_name="thresholds")
|
|
79151
79975
|
"""Section describing various anomaly thresholds for the table"""
|
|
79152
79976
|
|