pycarlo 0.12.57__py3-none-any.whl → 0.12.64__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 +30919 -30438
- pycarlo/lib/schema.py +239 -8
- {pycarlo-0.12.57.dist-info → pycarlo-0.12.64.dist-info}/METADATA +1 -1
- {pycarlo-0.12.57.dist-info → pycarlo-0.12.64.dist-info}/RECORD +7 -7
- {pycarlo-0.12.57.dist-info → pycarlo-0.12.64.dist-info}/LICENSE +0 -0
- {pycarlo-0.12.57.dist-info → pycarlo-0.12.64.dist-info}/WHEEL +0 -0
- {pycarlo-0.12.57.dist-info → pycarlo-0.12.64.dist-info}/top_level.txt +0 -0
pycarlo/lib/schema.py
CHANGED
|
@@ -4096,7 +4096,6 @@ class Permission(pycarlo.lib.types.Enum):
|
|
|
4096
4096
|
* `SettingsUsageAccess`None
|
|
4097
4097
|
* `SettingsUsageEdit`None
|
|
4098
4098
|
* `SettingsUserSubscribeWeeklyDigest`None
|
|
4099
|
-
* `SettingsUserSubscribeWeeklyDigestV2`None
|
|
4100
4099
|
* `SettingsUsersAccess`None
|
|
4101
4100
|
* `SettingsUsersEdit`None
|
|
4102
4101
|
* `SettingsUsersEditAuthProvisioning`None
|
|
@@ -4162,7 +4161,6 @@ class Permission(pycarlo.lib.types.Enum):
|
|
|
4162
4161
|
"SettingsUsageAccess",
|
|
4163
4162
|
"SettingsUsageEdit",
|
|
4164
4163
|
"SettingsUserSubscribeWeeklyDigest",
|
|
4165
|
-
"SettingsUserSubscribeWeeklyDigestV2",
|
|
4166
4164
|
"SettingsUsersAccess",
|
|
4167
4165
|
"SettingsUsersEdit",
|
|
4168
4166
|
"SettingsUsersEditAuthProvisioning",
|
|
@@ -4775,22 +4773,38 @@ class SelfHostedCredentialsTypeEnum(pycarlo.lib.types.Enum):
|
|
|
4775
4773
|
* `AWS_SECRETS_MANAGER`None
|
|
4776
4774
|
* `AZURE_KEY_VAULT`None
|
|
4777
4775
|
* `ENV_VAR`None
|
|
4776
|
+
* `FILE`None
|
|
4778
4777
|
* `GCP_SECRET_MANAGER`None
|
|
4779
4778
|
"""
|
|
4780
4779
|
|
|
4781
4780
|
__schema__ = schema
|
|
4782
|
-
__choices__ = (
|
|
4781
|
+
__choices__ = (
|
|
4782
|
+
"AWS_SECRETS_MANAGER",
|
|
4783
|
+
"AZURE_KEY_VAULT",
|
|
4784
|
+
"ENV_VAR",
|
|
4785
|
+
"FILE",
|
|
4786
|
+
"GCP_SECRET_MANAGER",
|
|
4787
|
+
)
|
|
4783
4788
|
|
|
4784
4789
|
|
|
4785
4790
|
class SelfHostedUpdateCredentialsTypeEnum(pycarlo.lib.types.Enum):
|
|
4786
4791
|
"""Enumeration Choices:
|
|
4787
4792
|
|
|
4788
4793
|
* `AWS_SECRETS_MANAGER`None
|
|
4794
|
+
* `AZURE_KEY_VAULT`None
|
|
4789
4795
|
* `ENV_VAR`None
|
|
4796
|
+
* `FILE`None
|
|
4797
|
+
* `GCP_SECRET_MANAGER`None
|
|
4790
4798
|
"""
|
|
4791
4799
|
|
|
4792
4800
|
__schema__ = schema
|
|
4793
|
-
__choices__ = (
|
|
4801
|
+
__choices__ = (
|
|
4802
|
+
"AWS_SECRETS_MANAGER",
|
|
4803
|
+
"AZURE_KEY_VAULT",
|
|
4804
|
+
"ENV_VAR",
|
|
4805
|
+
"FILE",
|
|
4806
|
+
"GCP_SECRET_MANAGER",
|
|
4807
|
+
)
|
|
4794
4808
|
|
|
4795
4809
|
|
|
4796
4810
|
class SensitivityLevels(pycarlo.lib.types.Enum):
|
|
@@ -5433,6 +5447,20 @@ class TraceSortField(pycarlo.lib.types.Enum):
|
|
|
5433
5447
|
)
|
|
5434
5448
|
|
|
5435
5449
|
|
|
5450
|
+
class TsaAnalysisStatus(pycarlo.lib.types.Enum):
|
|
5451
|
+
"""Status of TSA analysis for an alert.
|
|
5452
|
+
|
|
5453
|
+
Enumeration Choices:
|
|
5454
|
+
|
|
5455
|
+
* `COMPLETED`None
|
|
5456
|
+
* `IN_PROGRESS`None
|
|
5457
|
+
* `NOT_STARTED`None
|
|
5458
|
+
"""
|
|
5459
|
+
|
|
5460
|
+
__schema__ = schema
|
|
5461
|
+
__choices__ = ("COMPLETED", "IN_PROGRESS", "NOT_STARTED")
|
|
5462
|
+
|
|
5463
|
+
|
|
5436
5464
|
class TutorialStatusType(pycarlo.lib.types.Enum):
|
|
5437
5465
|
"""Enumeration Choices:
|
|
5438
5466
|
|
|
@@ -9322,6 +9350,7 @@ class SelfHostedCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9322
9350
|
"akv_vault_name",
|
|
9323
9351
|
"akv_vault_url",
|
|
9324
9352
|
"akv_secret",
|
|
9353
|
+
"file_path",
|
|
9325
9354
|
"aws_region",
|
|
9326
9355
|
"assumable_role",
|
|
9327
9356
|
"external_id",
|
|
@@ -9384,6 +9413,11 @@ class SelfHostedCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9384
9413
|
when self_hosted_credentials_type is 'azure_key_vault'.
|
|
9385
9414
|
"""
|
|
9386
9415
|
|
|
9416
|
+
file_path = sgqlc.types.Field(String, graphql_name="filePath")
|
|
9417
|
+
"""Path to file containing credentials on the agent. Required when
|
|
9418
|
+
self_hosted_credentials_type is 'file'.
|
|
9419
|
+
"""
|
|
9420
|
+
|
|
9387
9421
|
aws_region = sgqlc.types.Field(String, graphql_name="awsRegion")
|
|
9388
9422
|
"""Optional AWS region to access ASM secret or KMS key"""
|
|
9389
9423
|
|
|
@@ -9445,6 +9479,11 @@ class SelfHostedUpdateCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9445
9479
|
"env_var_name",
|
|
9446
9480
|
"kms_key_id",
|
|
9447
9481
|
"aws_secret",
|
|
9482
|
+
"gcp_secret",
|
|
9483
|
+
"akv_vault_name",
|
|
9484
|
+
"akv_vault_url",
|
|
9485
|
+
"akv_secret",
|
|
9486
|
+
"file_path",
|
|
9448
9487
|
"aws_region",
|
|
9449
9488
|
"assumable_role",
|
|
9450
9489
|
"external_id",
|
|
@@ -9480,6 +9519,33 @@ class SelfHostedUpdateCredentialsConnectionDetails(sgqlc.types.Input):
|
|
|
9480
9519
|
'aws_secrets_manager'.
|
|
9481
9520
|
"""
|
|
9482
9521
|
|
|
9522
|
+
gcp_secret = sgqlc.types.Field(String, graphql_name="gcpSecret")
|
|
9523
|
+
"""Name of GCP Secret Manager secret containing credentials. Required
|
|
9524
|
+
when self_hosted_credentials_type is 'gcp_secrets_manager'.
|
|
9525
|
+
"""
|
|
9526
|
+
|
|
9527
|
+
akv_vault_name = sgqlc.types.Field(String, graphql_name="akvVaultName")
|
|
9528
|
+
"""Name of Azure Key Vault containing credentials. Required when
|
|
9529
|
+
self_hosted_credentials_type is 'azure_key_vault' and
|
|
9530
|
+
'akv_vault_url' is not provided.
|
|
9531
|
+
"""
|
|
9532
|
+
|
|
9533
|
+
akv_vault_url = sgqlc.types.Field(String, graphql_name="akvVaultUrl")
|
|
9534
|
+
"""URL of Azure Key Vault containing credentials. Required when
|
|
9535
|
+
self_hosted_credentials_type is 'azure_key_vault' and
|
|
9536
|
+
'akv_vault_name' is not provided.
|
|
9537
|
+
"""
|
|
9538
|
+
|
|
9539
|
+
akv_secret = sgqlc.types.Field(String, graphql_name="akvSecret")
|
|
9540
|
+
"""Name of Azure Key Vault secret containing credentials. Required
|
|
9541
|
+
when self_hosted_credentials_type is 'azure_key_vault'.
|
|
9542
|
+
"""
|
|
9543
|
+
|
|
9544
|
+
file_path = sgqlc.types.Field(String, graphql_name="filePath")
|
|
9545
|
+
"""Path to file containing credentials on the agent. Required when
|
|
9546
|
+
self_hosted_credentials_type is 'file'.
|
|
9547
|
+
"""
|
|
9548
|
+
|
|
9483
9549
|
aws_region = sgqlc.types.Field(String, graphql_name="awsRegion")
|
|
9484
9550
|
"""Optional AWS region to access ASM secret or KMS key"""
|
|
9485
9551
|
|
|
@@ -17559,6 +17625,13 @@ class CreateOrUpdateDashboard(sgqlc.types.Type):
|
|
|
17559
17625
|
"""Dashboard configuration"""
|
|
17560
17626
|
|
|
17561
17627
|
|
|
17628
|
+
class CreateOrUpdateDashboardFromJson(sgqlc.types.Type):
|
|
17629
|
+
__schema__ = schema
|
|
17630
|
+
__field_names__ = ("dashboard",)
|
|
17631
|
+
dashboard = sgqlc.types.Field(sgqlc.types.non_null("CustomDashboard"), graphql_name="dashboard")
|
|
17632
|
+
"""Dashboard configuration"""
|
|
17633
|
+
|
|
17634
|
+
|
|
17562
17635
|
class CreateOrUpdateDataExplorerComparisonDashboardMutation(sgqlc.types.Type):
|
|
17563
17636
|
__schema__ = schema
|
|
17564
17637
|
__field_names__ = ("data_explorer_comparison_dashboard",)
|
|
@@ -18047,6 +18120,12 @@ class CustomDashboardEdge(sgqlc.types.Type):
|
|
|
18047
18120
|
"""A cursor for use in pagination"""
|
|
18048
18121
|
|
|
18049
18122
|
|
|
18123
|
+
class CustomDashboardJsonResponse(sgqlc.types.Type):
|
|
18124
|
+
__schema__ = schema
|
|
18125
|
+
__field_names__ = ("dashboard_json",)
|
|
18126
|
+
dashboard_json = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="dashboardJson")
|
|
18127
|
+
|
|
18128
|
+
|
|
18050
18129
|
class CustomDashboardListConnection(sgqlc.types.relay.Connection):
|
|
18051
18130
|
__schema__ = schema
|
|
18052
18131
|
__field_names__ = ("page_info", "edges")
|
|
@@ -18360,6 +18439,7 @@ class CustomSQLOutputSample(sgqlc.types.Type):
|
|
|
18360
18439
|
"columns",
|
|
18361
18440
|
"rows",
|
|
18362
18441
|
"matches",
|
|
18442
|
+
"has_custom_sql_filter",
|
|
18363
18443
|
"sampling_disabled",
|
|
18364
18444
|
"next_file_index",
|
|
18365
18445
|
"total_samples_size",
|
|
@@ -18370,6 +18450,9 @@ class CustomSQLOutputSample(sgqlc.types.Type):
|
|
|
18370
18450
|
|
|
18371
18451
|
matches = sgqlc.types.Field(sgqlc.types.list_of(ConditionMatches), graphql_name="matches")
|
|
18372
18452
|
|
|
18453
|
+
has_custom_sql_filter = sgqlc.types.Field(Boolean, graphql_name="hasCustomSqlFilter")
|
|
18454
|
+
"""True if the alert condition contains custom SQL expressions"""
|
|
18455
|
+
|
|
18373
18456
|
sampling_disabled = sgqlc.types.Field(Boolean, graphql_name="samplingDisabled")
|
|
18374
18457
|
|
|
18375
18458
|
next_file_index = sgqlc.types.Field(Int, graphql_name="nextFileIndex")
|
|
@@ -22602,6 +22685,7 @@ class FieldHealthSampling(sgqlc.types.Type):
|
|
|
22602
22685
|
"columns",
|
|
22603
22686
|
"rows",
|
|
22604
22687
|
"matches",
|
|
22688
|
+
"has_custom_sql_filter",
|
|
22605
22689
|
"sampling_disabled",
|
|
22606
22690
|
"next_file_index",
|
|
22607
22691
|
"total_samples_size",
|
|
@@ -22614,6 +22698,9 @@ class FieldHealthSampling(sgqlc.types.Type):
|
|
|
22614
22698
|
|
|
22615
22699
|
matches = sgqlc.types.Field(sgqlc.types.list_of(ConditionMatches), graphql_name="matches")
|
|
22616
22700
|
|
|
22701
|
+
has_custom_sql_filter = sgqlc.types.Field(Boolean, graphql_name="hasCustomSqlFilter")
|
|
22702
|
+
"""True if the alert condition contains custom SQL expressions"""
|
|
22703
|
+
|
|
22617
22704
|
sampling_disabled = sgqlc.types.Field(Boolean, graphql_name="samplingDisabled")
|
|
22618
22705
|
|
|
22619
22706
|
next_file_index = sgqlc.types.Field(Int, graphql_name="nextFileIndex")
|
|
@@ -26029,13 +26116,16 @@ class MetricMonitoringEdge(sgqlc.types.Type):
|
|
|
26029
26116
|
|
|
26030
26117
|
class MetricSampling(sgqlc.types.Type):
|
|
26031
26118
|
__schema__ = schema
|
|
26032
|
-
__field_names__ = ("columns", "rows", "matches", "query", "has_error")
|
|
26119
|
+
__field_names__ = ("columns", "rows", "matches", "has_custom_sql_filter", "query", "has_error")
|
|
26033
26120
|
columns = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="columns")
|
|
26034
26121
|
|
|
26035
26122
|
rows = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.list_of(String)), graphql_name="rows")
|
|
26036
26123
|
|
|
26037
26124
|
matches = sgqlc.types.Field(sgqlc.types.list_of(ConditionMatches), graphql_name="matches")
|
|
26038
26125
|
|
|
26126
|
+
has_custom_sql_filter = sgqlc.types.Field(Boolean, graphql_name="hasCustomSqlFilter")
|
|
26127
|
+
"""True if the alert condition contains custom SQL expressions"""
|
|
26128
|
+
|
|
26039
26129
|
query = sgqlc.types.Field(String, graphql_name="query")
|
|
26040
26130
|
|
|
26041
26131
|
has_error = sgqlc.types.Field(Boolean, graphql_name="hasError")
|
|
@@ -27142,6 +27232,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
27142
27232
|
__schema__ = schema
|
|
27143
27233
|
__field_names__ = (
|
|
27144
27234
|
"create_or_update_custom_dashboard",
|
|
27235
|
+
"create_or_update_custom_dashboard_from_json",
|
|
27145
27236
|
"delete_custom_dashboard",
|
|
27146
27237
|
"add_or_update_custom_dashboard_widget",
|
|
27147
27238
|
"delete_custom_dashboard_widget",
|
|
@@ -27618,6 +27709,32 @@ class Mutation(sgqlc.types.Type):
|
|
|
27618
27709
|
* `title` (`String`): Title of the dashboard
|
|
27619
27710
|
"""
|
|
27620
27711
|
|
|
27712
|
+
create_or_update_custom_dashboard_from_json = sgqlc.types.Field(
|
|
27713
|
+
CreateOrUpdateDashboardFromJson,
|
|
27714
|
+
graphql_name="createOrUpdateCustomDashboardFromJson",
|
|
27715
|
+
args=sgqlc.types.ArgDict(
|
|
27716
|
+
(
|
|
27717
|
+
("dashboard_id", sgqlc.types.Arg(UUID, graphql_name="dashboardId", default=None)),
|
|
27718
|
+
(
|
|
27719
|
+
"dashboard_json",
|
|
27720
|
+
sgqlc.types.Arg(
|
|
27721
|
+
sgqlc.types.non_null(String), graphql_name="dashboardJson", default=None
|
|
27722
|
+
),
|
|
27723
|
+
),
|
|
27724
|
+
)
|
|
27725
|
+
),
|
|
27726
|
+
)
|
|
27727
|
+
"""(experimental) Create or update a custom dashboard from a JSON
|
|
27728
|
+
definition
|
|
27729
|
+
|
|
27730
|
+
Arguments:
|
|
27731
|
+
|
|
27732
|
+
* `dashboard_id` (`UUID`): Id of the dashboard to update existing.
|
|
27733
|
+
If not specified, a new dashboard is created.
|
|
27734
|
+
* `dashboard_json` (`String!`): Dashboard definition as JSON
|
|
27735
|
+
string
|
|
27736
|
+
"""
|
|
27737
|
+
|
|
27621
27738
|
delete_custom_dashboard = sgqlc.types.Field(
|
|
27622
27739
|
DeleteDashboard,
|
|
27623
27740
|
graphql_name="deleteCustomDashboard",
|
|
@@ -29390,6 +29507,7 @@ class Mutation(sgqlc.types.Type):
|
|
|
29390
29507
|
sgqlc.types.non_null(UUID), graphql_name="connectionId", default=None
|
|
29391
29508
|
),
|
|
29392
29509
|
),
|
|
29510
|
+
("replace", sgqlc.types.Arg(Boolean, graphql_name="replace", default=False)),
|
|
29393
29511
|
)
|
|
29394
29512
|
),
|
|
29395
29513
|
)
|
|
@@ -29402,6 +29520,8 @@ class Mutation(sgqlc.types.Type):
|
|
|
29402
29520
|
Updated connection parameters for the connection with self-
|
|
29403
29521
|
hosted credentials.
|
|
29404
29522
|
* `connection_id` (`UUID!`): ID for connection to update.
|
|
29523
|
+
* `replace` (`Boolean`): Set true to replace credentials with
|
|
29524
|
+
changes. Otherwise merges. (default: `false`)
|
|
29405
29525
|
"""
|
|
29406
29526
|
|
|
29407
29527
|
update_dbt_cloud_credentials_v2_mutation = sgqlc.types.Field(
|
|
@@ -46635,6 +46755,7 @@ class Query(sgqlc.types.Type):
|
|
|
46635
46755
|
__field_names__ = (
|
|
46636
46756
|
"list_custom_dashboards",
|
|
46637
46757
|
"get_custom_dashboard",
|
|
46758
|
+
"get_custom_dashboard_as_json",
|
|
46638
46759
|
"load_custom_dashboard_widget_data",
|
|
46639
46760
|
"lookup_custom_dashboard_time_series_id_by_mcon",
|
|
46640
46761
|
"lookup_custom_dashboard_time_series_id_by_monitor",
|
|
@@ -47123,6 +47244,7 @@ class Query(sgqlc.types.Type):
|
|
|
47123
47244
|
"get_airflow_tasks_for_source_and_destination_tables",
|
|
47124
47245
|
"get_airflow_dag_runs",
|
|
47125
47246
|
"get_airflow_capabilities",
|
|
47247
|
+
"get_tsa_analysis_result",
|
|
47126
47248
|
"get_ai_agent_config",
|
|
47127
47249
|
"fix_sql_query",
|
|
47128
47250
|
"create_sql_query",
|
|
@@ -47185,6 +47307,27 @@ class Query(sgqlc.types.Type):
|
|
|
47185
47307
|
* `dashboard_id` (`UUID!`)None
|
|
47186
47308
|
"""
|
|
47187
47309
|
|
|
47310
|
+
get_custom_dashboard_as_json = sgqlc.types.Field(
|
|
47311
|
+
CustomDashboardJsonResponse,
|
|
47312
|
+
graphql_name="getCustomDashboardAsJson",
|
|
47313
|
+
args=sgqlc.types.ArgDict(
|
|
47314
|
+
(
|
|
47315
|
+
(
|
|
47316
|
+
"dashboard_id",
|
|
47317
|
+
sgqlc.types.Arg(
|
|
47318
|
+
sgqlc.types.non_null(UUID), graphql_name="dashboardId", default=None
|
|
47319
|
+
),
|
|
47320
|
+
),
|
|
47321
|
+
)
|
|
47322
|
+
),
|
|
47323
|
+
)
|
|
47324
|
+
"""(experimental) Get a specific custom dashboard as JSON
|
|
47325
|
+
|
|
47326
|
+
Arguments:
|
|
47327
|
+
|
|
47328
|
+
* `dashboard_id` (`UUID!`)None
|
|
47329
|
+
"""
|
|
47330
|
+
|
|
47188
47331
|
load_custom_dashboard_widget_data = sgqlc.types.Field(
|
|
47189
47332
|
sgqlc.types.list_of(sgqlc.types.non_null(CustomDashboardWidgetContentData)),
|
|
47190
47333
|
graphql_name="loadCustomDashboardWidgetData",
|
|
@@ -64735,6 +64878,28 @@ class Query(sgqlc.types.Type):
|
|
|
64735
64878
|
* `etl_container_uuid` (`UUID`): UUID of ETL Container
|
|
64736
64879
|
"""
|
|
64737
64880
|
|
|
64881
|
+
get_tsa_analysis_result = sgqlc.types.Field(
|
|
64882
|
+
"TsaAnalysisResultType",
|
|
64883
|
+
graphql_name="getTsaAnalysisResult",
|
|
64884
|
+
args=sgqlc.types.ArgDict(
|
|
64885
|
+
(
|
|
64886
|
+
(
|
|
64887
|
+
"alert_id",
|
|
64888
|
+
sgqlc.types.Arg(
|
|
64889
|
+
sgqlc.types.non_null(UUID), graphql_name="alertId", default=None
|
|
64890
|
+
),
|
|
64891
|
+
),
|
|
64892
|
+
)
|
|
64893
|
+
),
|
|
64894
|
+
)
|
|
64895
|
+
"""(experimental) Get TSA analysis result for an alert
|
|
64896
|
+
|
|
64897
|
+
Arguments:
|
|
64898
|
+
|
|
64899
|
+
* `alert_id` (`UUID!`): UUID of the alert to get TSA analysis
|
|
64900
|
+
result for
|
|
64901
|
+
"""
|
|
64902
|
+
|
|
64738
64903
|
get_ai_agent_config = sgqlc.types.Field(
|
|
64739
64904
|
AiAgent,
|
|
64740
64905
|
graphql_name="getAiAgentConfig",
|
|
@@ -66128,13 +66293,16 @@ class RunTableMonitorValidation(sgqlc.types.Type):
|
|
|
66128
66293
|
|
|
66129
66294
|
class SQLQueryResult(sgqlc.types.Type):
|
|
66130
66295
|
__schema__ = schema
|
|
66131
|
-
__field_names__ = ("columns", "rows", "matches")
|
|
66296
|
+
__field_names__ = ("columns", "rows", "matches", "has_custom_sql_filter")
|
|
66132
66297
|
columns = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name="columns")
|
|
66133
66298
|
|
|
66134
66299
|
rows = sgqlc.types.Field(sgqlc.types.list_of(sgqlc.types.list_of(String)), graphql_name="rows")
|
|
66135
66300
|
|
|
66136
66301
|
matches = sgqlc.types.Field(sgqlc.types.list_of(ConditionMatches), graphql_name="matches")
|
|
66137
66302
|
|
|
66303
|
+
has_custom_sql_filter = sgqlc.types.Field(Boolean, graphql_name="hasCustomSqlFilter")
|
|
66304
|
+
"""True if the alert condition contains custom SQL expressions"""
|
|
66305
|
+
|
|
66138
66306
|
|
|
66139
66307
|
class SQLResponse(sgqlc.types.Type):
|
|
66140
66308
|
__schema__ = schema
|
|
@@ -66142,6 +66310,7 @@ class SQLResponse(sgqlc.types.Type):
|
|
|
66142
66310
|
"columns",
|
|
66143
66311
|
"rows",
|
|
66144
66312
|
"matches",
|
|
66313
|
+
"has_custom_sql_filter",
|
|
66145
66314
|
"query",
|
|
66146
66315
|
"has_error",
|
|
66147
66316
|
"error",
|
|
@@ -66158,6 +66327,9 @@ class SQLResponse(sgqlc.types.Type):
|
|
|
66158
66327
|
|
|
66159
66328
|
matches = sgqlc.types.Field(sgqlc.types.list_of(ConditionMatches), graphql_name="matches")
|
|
66160
66329
|
|
|
66330
|
+
has_custom_sql_filter = sgqlc.types.Field(Boolean, graphql_name="hasCustomSqlFilter")
|
|
66331
|
+
"""True if the alert condition contains custom SQL expressions"""
|
|
66332
|
+
|
|
66161
66333
|
query = sgqlc.types.Field(String, graphql_name="query")
|
|
66162
66334
|
"""The executed SQL query."""
|
|
66163
66335
|
|
|
@@ -71130,6 +71302,26 @@ class TriggerPlatformMigrationTest(sgqlc.types.Type):
|
|
|
71130
71302
|
"""UUID assigned to the operation, used to check status"""
|
|
71131
71303
|
|
|
71132
71304
|
|
|
71305
|
+
class TsaAnalysisResultType(sgqlc.types.Type):
|
|
71306
|
+
"""Result of a TSA analysis query."""
|
|
71307
|
+
|
|
71308
|
+
__schema__ = schema
|
|
71309
|
+
__field_names__ = ("status", "conversation_data", "thread_id", "run_id")
|
|
71310
|
+
status = sgqlc.types.Field(sgqlc.types.non_null(TsaAnalysisStatus), graphql_name="status")
|
|
71311
|
+
"""Status of the TSA analysis: NOT_STARTED, IN_PROGRESS, or COMPLETED"""
|
|
71312
|
+
|
|
71313
|
+
conversation_data = sgqlc.types.Field(GenericScalar, graphql_name="conversationData")
|
|
71314
|
+
"""Complete conversation state values from the thread history"""
|
|
71315
|
+
|
|
71316
|
+
thread_id = sgqlc.types.Field(String, graphql_name="threadId")
|
|
71317
|
+
"""LangGraph thread ID if one exists"""
|
|
71318
|
+
|
|
71319
|
+
run_id = sgqlc.types.Field(String, graphql_name="runId")
|
|
71320
|
+
"""LangGraph run ID for feedback submission. Available when status is
|
|
71321
|
+
COMPLETED.
|
|
71322
|
+
"""
|
|
71323
|
+
|
|
71324
|
+
|
|
71133
71325
|
class UCSAutomatedAlertConditionOutput(sgqlc.types.Type):
|
|
71134
71326
|
__schema__ = schema
|
|
71135
71327
|
__field_names__ = ("sensitivity_level",)
|
|
@@ -76315,7 +76507,27 @@ class ConnectionRestriction(sgqlc.types.Type, Node):
|
|
|
76315
76507
|
|
|
76316
76508
|
class CustomDashboard(sgqlc.types.Type, Node):
|
|
76317
76509
|
__schema__ = schema
|
|
76318
|
-
__field_names__ = (
|
|
76510
|
+
__field_names__ = (
|
|
76511
|
+
"created_time",
|
|
76512
|
+
"created_by",
|
|
76513
|
+
"updated_time",
|
|
76514
|
+
"last_update_user",
|
|
76515
|
+
"dashboard_id",
|
|
76516
|
+
"title",
|
|
76517
|
+
"widgets",
|
|
76518
|
+
)
|
|
76519
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
76520
|
+
"""When the dashboard was created"""
|
|
76521
|
+
|
|
76522
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
76523
|
+
"""Who created the dashboard"""
|
|
76524
|
+
|
|
76525
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
76526
|
+
"""When the dashboard was last updated"""
|
|
76527
|
+
|
|
76528
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
76529
|
+
"""Who last updated the dashboard"""
|
|
76530
|
+
|
|
76319
76531
|
dashboard_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="dashboardId")
|
|
76320
76532
|
|
|
76321
76533
|
title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="title")
|
|
@@ -76330,12 +76542,31 @@ class CustomDashboard(sgqlc.types.Type, Node):
|
|
|
76330
76542
|
|
|
76331
76543
|
class CustomDashboardList(sgqlc.types.Type, Node):
|
|
76332
76544
|
__schema__ = schema
|
|
76333
|
-
__field_names__ = (
|
|
76545
|
+
__field_names__ = (
|
|
76546
|
+
"dashboard_id",
|
|
76547
|
+
"title",
|
|
76548
|
+
"created_time",
|
|
76549
|
+
"created_by",
|
|
76550
|
+
"updated_time",
|
|
76551
|
+
"last_update_user",
|
|
76552
|
+
)
|
|
76334
76553
|
dashboard_id = sgqlc.types.Field(sgqlc.types.non_null(UUID), graphql_name="dashboardId")
|
|
76335
76554
|
|
|
76336
76555
|
title = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name="title")
|
|
76337
76556
|
"""The title of the dashboard"""
|
|
76338
76557
|
|
|
76558
|
+
created_time = sgqlc.types.Field(DateTime, graphql_name="createdTime")
|
|
76559
|
+
"""When the dashboard was created"""
|
|
76560
|
+
|
|
76561
|
+
created_by = sgqlc.types.Field("User", graphql_name="createdBy")
|
|
76562
|
+
"""Who created the dashboard"""
|
|
76563
|
+
|
|
76564
|
+
updated_time = sgqlc.types.Field(DateTime, graphql_name="updatedTime")
|
|
76565
|
+
"""When the dashboard was last updated"""
|
|
76566
|
+
|
|
76567
|
+
last_update_user = sgqlc.types.Field("User", graphql_name="lastUpdateUser")
|
|
76568
|
+
"""Who last updated the dashboard"""
|
|
76569
|
+
|
|
76339
76570
|
|
|
76340
76571
|
class CustomDashboardWidget(sgqlc.types.Type, Node):
|
|
76341
76572
|
__schema__ = schema
|
|
@@ -38,11 +38,11 @@ pycarlo/features/user/queries.py,sha256=m97RvM0oiBlrU5xmOwe_JJ5N0G0NG5hIOeyQqN2O
|
|
|
38
38
|
pycarlo/features/user/service.py,sha256=DHkhuonySaHro07NTd0YNe3cNkDk62CiRTY77dhVaMs,2890
|
|
39
39
|
pycarlo/lib/README.md,sha256=CVVrPPgje7pkXNNsPvwLSeUOm5aktb22MlttmoxX08k,1677
|
|
40
40
|
pycarlo/lib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
41
|
-
pycarlo/lib/schema.json,sha256=
|
|
42
|
-
pycarlo/lib/schema.py,sha256=
|
|
41
|
+
pycarlo/lib/schema.json,sha256=YIhDLzj5Ec0iAOF_sjs4X-4MQp-ik_kT0wM8Yhx1U34,6792739
|
|
42
|
+
pycarlo/lib/schema.py,sha256=LyxaCs49TR-mhULyegA4gbTySAMGA_02wOdtzx_ZNag,2938860
|
|
43
43
|
pycarlo/lib/types.py,sha256=lGOrm5Qm-SieDAkOkVOFSgyUJYGOjKnea961AD9Dv6s,2404
|
|
44
|
-
pycarlo-0.12.
|
|
45
|
-
pycarlo-0.12.
|
|
46
|
-
pycarlo-0.12.
|
|
47
|
-
pycarlo-0.12.
|
|
48
|
-
pycarlo-0.12.
|
|
44
|
+
pycarlo-0.12.64.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
45
|
+
pycarlo-0.12.64.dist-info/METADATA,sha256=Zcnya5JXmJbdDCrFeOxHB-zD_PP_j9kFgLrP6ktWGOE,10431
|
|
46
|
+
pycarlo-0.12.64.dist-info/WHEEL,sha256=iAkIy5fosb7FzIOwONchHf19Qu7_1wCWyFNR5gu9nU0,91
|
|
47
|
+
pycarlo-0.12.64.dist-info/top_level.txt,sha256=TIE04H4pgzGaFxAB-gvkmVAUOAoHxxFfhnEcpuQ5bF4,8
|
|
48
|
+
pycarlo-0.12.64.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|