Viewing docs for tencentcloud 1.82.94
published on Tuesday, May 19, 2026 by tencentcloudstack
published on Tuesday, May 19, 2026 by tencentcloudstack
Viewing docs for tencentcloud 1.82.94
published on Tuesday, May 19, 2026 by tencentcloudstack
published on Tuesday, May 19, 2026 by tencentcloudstack
Use this data source to query detailed information of wedata quality rule group exec results
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const wedataQualityRuleGroupExecResults = tencentcloud.getWedataQualityRuleGroupExecResults({
projectId: "1840731342293087232",
filters: [{
name: "Status",
values: ["3"],
}],
orderFields: [{
name: "UpdateTime",
direction: "DESC",
}],
});
import pulumi
import pulumi_tencentcloud as tencentcloud
wedata_quality_rule_group_exec_results = tencentcloud.get_wedata_quality_rule_group_exec_results(project_id="1840731342293087232",
filters=[{
"name": "Status",
"values": ["3"],
}],
order_fields=[{
"name": "UpdateTime",
"direction": "DESC",
}])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.GetWedataQualityRuleGroupExecResults(ctx, &tencentcloud.GetWedataQualityRuleGroupExecResultsArgs{
ProjectId: "1840731342293087232",
Filters: []tencentcloud.GetWedataQualityRuleGroupExecResultsFilter{
{
Name: pulumi.StringRef("Status"),
Values: []string{
"3",
},
},
},
OrderFields: []tencentcloud.GetWedataQualityRuleGroupExecResultsOrderField{
{
Name: "UpdateTime",
Direction: "DESC",
},
},
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var wedataQualityRuleGroupExecResults = Tencentcloud.GetWedataQualityRuleGroupExecResults.Invoke(new()
{
ProjectId = "1840731342293087232",
Filters = new[]
{
new Tencentcloud.Inputs.GetWedataQualityRuleGroupExecResultsFilterInputArgs
{
Name = "Status",
Values = new[]
{
"3",
},
},
},
OrderFields = new[]
{
new Tencentcloud.Inputs.GetWedataQualityRuleGroupExecResultsOrderFieldInputArgs
{
Name = "UpdateTime",
Direction = "DESC",
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetWedataQualityRuleGroupExecResultsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var wedataQualityRuleGroupExecResults = TencentcloudFunctions.getWedataQualityRuleGroupExecResults(GetWedataQualityRuleGroupExecResultsArgs.builder()
.projectId("1840731342293087232")
.filters(GetWedataQualityRuleGroupExecResultsFilterArgs.builder()
.name("Status")
.values("3")
.build())
.orderFields(GetWedataQualityRuleGroupExecResultsOrderFieldArgs.builder()
.name("UpdateTime")
.direction("DESC")
.build())
.build());
}
}
variables:
wedataQualityRuleGroupExecResults:
fn::invoke:
function: tencentcloud:getWedataQualityRuleGroupExecResults
arguments:
projectId: '1840731342293087232'
filters:
- name: Status
values:
- '3'
orderFields:
- name: UpdateTime
direction: DESC
Example coming soon!
Using getWedataQualityRuleGroupExecResults
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getWedataQualityRuleGroupExecResults(args: GetWedataQualityRuleGroupExecResultsArgs, opts?: InvokeOptions): Promise<GetWedataQualityRuleGroupExecResultsResult>
function getWedataQualityRuleGroupExecResultsOutput(args: GetWedataQualityRuleGroupExecResultsOutputArgs, opts?: InvokeOptions): Output<GetWedataQualityRuleGroupExecResultsResult>def get_wedata_quality_rule_group_exec_results(filters: Optional[Sequence[GetWedataQualityRuleGroupExecResultsFilter]] = None,
id: Optional[str] = None,
order_fields: Optional[Sequence[GetWedataQualityRuleGroupExecResultsOrderField]] = None,
project_id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetWedataQualityRuleGroupExecResultsResult
def get_wedata_quality_rule_group_exec_results_output(filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetWedataQualityRuleGroupExecResultsFilterArgs]]]] = None,
id: pulumi.Input[Optional[str]] = None,
order_fields: pulumi.Input[Optional[Sequence[pulumi.Input[GetWedataQualityRuleGroupExecResultsOrderFieldArgs]]]] = None,
project_id: pulumi.Input[Optional[str]] = None,
result_output_file: pulumi.Input[Optional[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetWedataQualityRuleGroupExecResultsResult]func GetWedataQualityRuleGroupExecResults(ctx *Context, args *GetWedataQualityRuleGroupExecResultsArgs, opts ...InvokeOption) (*GetWedataQualityRuleGroupExecResultsResult, error)
func GetWedataQualityRuleGroupExecResultsOutput(ctx *Context, args *GetWedataQualityRuleGroupExecResultsOutputArgs, opts ...InvokeOption) GetWedataQualityRuleGroupExecResultsResultOutput> Note: This function is named GetWedataQualityRuleGroupExecResults in the Go SDK.
public static class GetWedataQualityRuleGroupExecResults
{
public static Task<GetWedataQualityRuleGroupExecResultsResult> InvokeAsync(GetWedataQualityRuleGroupExecResultsArgs args, InvokeOptions? opts = null)
public static Output<GetWedataQualityRuleGroupExecResultsResult> Invoke(GetWedataQualityRuleGroupExecResultsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetWedataQualityRuleGroupExecResultsResult> getWedataQualityRuleGroupExecResults(GetWedataQualityRuleGroupExecResultsArgs args, InvokeOptions options)
public static Output<GetWedataQualityRuleGroupExecResultsResult> getWedataQualityRuleGroupExecResults(GetWedataQualityRuleGroupExecResultsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getWedataQualityRuleGroupExecResults:getWedataQualityRuleGroupExecResults
arguments:
# arguments dictionarydata "tencentcloud_getwedataqualityrulegroupexecresults" "name" {
# arguments
}The following arguments are supported:
- Project
Id string - Project ID.
- Filters
List<Get
Wedata Quality Rule Group Exec Results Filter> - Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- Id string
- Order
Fields List<GetWedata Quality Rule Group Exec Results Order Field> - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- Result
Output stringFile - Used to save results.
- Project
Id string - Project ID.
- Filters
[]Get
Wedata Quality Rule Group Exec Results Filter - Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- Id string
- Order
Fields []GetWedata Quality Rule Group Exec Results Order Field - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- Result
Output stringFile - Used to save results.
- project_
id string - Project ID.
- filters list(object)
- Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- id string
- order_
fields list(object) - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- result_
output_ stringfile - Used to save results.
- project
Id String - Project ID.
- filters
List<Get
Wedata Quality Rule Group Exec Results Filter> - Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- id String
- order
Fields List<GetWedata Quality Rule Group Exec Results Order Field> - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- result
Output StringFile - Used to save results.
- project
Id string - Project ID.
- filters
Get
Wedata Quality Rule Group Exec Results Filter[] - Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- id string
- order
Fields GetWedata Quality Rule Group Exec Results Order Field[] - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- result
Output stringFile - Used to save results.
- project_
id str - Project ID.
- filters
Sequence[Get
Wedata Quality Rule Group Exec Results Filter] - Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- id str
- order_
fields Sequence[GetWedata Quality Rule Group Exec Results Order Field] - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- result_
output_ strfile - Used to save results.
- project
Id String - Project ID.
- filters List<Property Map>
- Filter conditions. Supported filters:
- GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
- InstanceId - Rule group execution instance ID
- ParentInstanceId - Parent instance ID
- LifeCycleRunNum - Lifecycle run number
- InstanceStatus - Instance status: Waiting (INITIAL, EVENT_LISTENING, DEPENDENCE, ALLOCATED, LAUNCHED, BEFORE_ASPECT, ISSUED), Running (RUNNING, AFTER_ASPECT, WAITING_AFTER_ASPECT), Failed (FAILED, EXPIRED, KILL, KILLING, PENDING), Success (COMPLETED)
- DatasourceId - Data source ID
- DatasourceType - Data source type: 1-MYSQL, 2-HIVE, 3-DLC, 4-GBASE, 5-TCHouse-P/CDW, 6-ICEBERG, 7-DORIS, 8-TCHouse-D, 9-EMR_STARROCKS, 10-TBDS_STARROCKS, 11-TCHouse-X
- DatabaseName - Database name
- DatabaseId - Database ID
- SchemaName - Schema name
- ReceiverFlag - Whether it is the current user's subscription: true/false
- TableName - Table name (supports fuzzy matching)
- RuleGroupName - Rule group name
- RuleGroupExecId - Rule group execution ID
- RuleGroupTableId - Rule group table ID
- Keyword - Keyword search (rule group execution ID, table name, table owner)
- StartTime - Actual run start time (Unix timestamp)
- EndTime - Actual run end time (Unix timestamp)
- ScheduledStartTime - Scheduled start time (Unix timestamp)
- ScheduledEndTime - Scheduled end time (Unix timestamp)
- DsJobId - Data source job ID
- TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
- Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
- TableIds - Table ID collection
- RuleGroupId - Rule group ID
- BizCatalogIds - Business catalog ID
- CatalogName - Data catalog name.
- id String
- order
Fields List<Property Map> - Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
- result
Output StringFile - Used to save results.
getWedataQualityRuleGroupExecResults Result
The following output properties are available:
- Datas
List<Get
Wedata Quality Rule Group Exec Results Data> - Rule group execution result list.
- Id string
- Project
Id string - Filters
List<Get
Wedata Quality Rule Group Exec Results Filter> - Order
Fields List<GetWedata Quality Rule Group Exec Results Order Field> - Result
Output stringFile
- Datas
[]Get
Wedata Quality Rule Group Exec Results Data - Rule group execution result list.
- Id string
- Project
Id string - Filters
[]Get
Wedata Quality Rule Group Exec Results Filter - Order
Fields []GetWedata Quality Rule Group Exec Results Order Field - Result
Output stringFile
- datas list(object)
- Rule group execution result list.
- id string
- project_
id string - filters list(object)
- order_
fields list(object) - result_
output_ stringfile
- datas
List<Get
Wedata Quality Rule Group Exec Results Data> - Rule group execution result list.
- id String
- project
Id String - filters
List<Get
Wedata Quality Rule Group Exec Results Filter> - order
Fields List<GetWedata Quality Rule Group Exec Results Order Field> - result
Output StringFile
- datas
Get
Wedata Quality Rule Group Exec Results Data[] - Rule group execution result list.
- id string
- project
Id string - filters
Get
Wedata Quality Rule Group Exec Results Filter[] - order
Fields GetWedata Quality Rule Group Exec Results Order Field[] - result
Output stringFile
- datas List<Property Map>
- Rule group execution result list.
- id String
- project
Id String - filters List<Property Map>
- order
Fields List<Property Map> - result
Output StringFile
Supporting Types
GetWedataQualityRuleGroupExecResultsData
- items list(object)
- total_
count number
GetWedataQualityRuleGroupExecResultsDataItem
- Alarm
Rule doubleCount - Biz
Catalog stringId - Biz
Catalog stringName - Cluster
Deploy stringType - Database
Id string - Database
Name string - Datasource
Id string - Ds
Env doubleType - Engine
Type string - Exec
Detail string - Exec
Time string - Fail
Msg string - Finish
Time string - Instance
Id string - Instance
Status string - Permission bool
- Project
Id string - Project ID.
- Project
Name string - Rule
Exec List<GetResult Vo Lists Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List> - Rule
Group doubleExec Id - Rule
Group doubleExist - Rule
Group doubleId - Rule
Group stringName - Rule
Group doubleTable Id - Start
Time string - Status double
- Table
Id string - Table
Name string - Table
Owner stringName - Total
Rule doubleCount - Trigger
Type double
- Alarm
Rule float64Count - Biz
Catalog stringId - Biz
Catalog stringName - Cluster
Deploy stringType - Database
Id string - Database
Name string - Datasource
Id string - Ds
Env float64Type - Engine
Type string - Exec
Detail string - Exec
Time string - Fail
Msg string - Finish
Time string - Instance
Id string - Instance
Status string - Permission bool
- Project
Id string - Project ID.
- Project
Name string - Rule
Exec []GetResult Vo Lists Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List - Rule
Group float64Exec Id - Rule
Group float64Exist - Rule
Group float64Id - Rule
Group stringName - Rule
Group float64Table Id - Start
Time string - Status float64
- Table
Id string - Table
Name string - Table
Owner stringName - Total
Rule float64Count - Trigger
Type float64
- alarm_
rule_ numbercount - biz_
catalog_ stringid - biz_
catalog_ stringname - cluster_
deploy_ stringtype - database_
id string - database_
name string - datasource_
id string - ds_
env_ numbertype - engine_
type string - exec_
detail string - exec_
time string - fail_
msg string - finish_
time string - instance_
id string - instance_
status string - permission bool
- project_
id string - Project ID.
- project_
name string - rule_
exec_ list(object)result_ vo_ lists - rule_
group_ numberexec_ id - rule_
group_ numberexist - rule_
group_ numberid - rule_
group_ stringname - rule_
group_ numbertable_ id - start_
time string - status number
- table_
id string - table_
name string - table_
owner_ stringname - total_
rule_ numbercount - trigger_
type number
- alarm
Rule DoubleCount - biz
Catalog StringId - biz
Catalog StringName - cluster
Deploy StringType - database
Id String - database
Name String - datasource
Id String - ds
Env DoubleType - engine
Type String - exec
Detail String - exec
Time String - fail
Msg String - finish
Time String - instance
Id String - instance
Status String - permission Boolean
- project
Id String - Project ID.
- project
Name String - rule
Exec List<GetResult Vo Lists Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List> - rule
Group DoubleExec Id - rule
Group DoubleExist - rule
Group DoubleId - rule
Group StringName - rule
Group DoubleTable Id - start
Time String - status Double
- table
Id String - table
Name String - table
Owner StringName - total
Rule DoubleCount - trigger
Type Double
- alarm
Rule numberCount - biz
Catalog stringId - biz
Catalog stringName - cluster
Deploy stringType - database
Id string - database
Name string - datasource
Id string - ds
Env numberType - engine
Type string - exec
Detail string - exec
Time string - fail
Msg string - finish
Time string - instance
Id string - instance
Status string - permission boolean
- project
Id string - Project ID.
- project
Name string - rule
Exec GetResult Vo Lists Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List[] - rule
Group numberExec Id - rule
Group numberExist - rule
Group numberId - rule
Group stringName - rule
Group numberTable Id - start
Time string - status number
- table
Id string - table
Name string - table
Owner stringName - total
Rule numberCount - trigger
Type number
- alarm_
rule_ floatcount - biz_
catalog_ strid - biz_
catalog_ strname - cluster_
deploy_ strtype - database_
id str - database_
name str - datasource_
id str - ds_
env_ floattype - engine_
type str - exec_
detail str - exec_
time str - fail_
msg str - finish_
time str - instance_
id str - instance_
status str - permission bool
- project_
id str - Project ID.
- project_
name str - rule_
exec_ Sequence[Getresult_ vo_ lists Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List] - rule_
group_ floatexec_ id - rule_
group_ floatexist - rule_
group_ floatid - rule_
group_ strname - rule_
group_ floattable_ id - start_
time str - status float
- table_
id str - table_
name str - table_
owner_ strname - total_
rule_ floatcount - trigger_
type float
- alarm
Rule NumberCount - biz
Catalog StringId - biz
Catalog StringName - cluster
Deploy StringType - database
Id String - database
Name String - datasource
Id String - ds
Env NumberType - engine
Type String - exec
Detail String - exec
Time String - fail
Msg String - finish
Time String - instance
Id String - instance
Status String - permission Boolean
- project
Id String - Project ID.
- project
Name String - rule
Exec List<Property Map>Result Vo Lists - rule
Group NumberExec Id - rule
Group NumberExist - rule
Group NumberId - rule
Group StringName - rule
Group NumberTable Id - start
Time String - status Number
- table
Id String - table
Name String - table
Owner StringName - total
Rule NumberCount - trigger
Type Number
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoList
- Alarm
Level double - Aspect
Task stringId - Catalog
Name string - Compare
Results List<GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result> - Condition
Expression string - Database
Name string - Datasource
Id string - Datasource
Name string - Datasource
Type double - Exec
Result doubleStatus - Field
Configs List<GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Field Config> - Finish
Time string - Group
Type string - Monitor
Type double - Quality
Dim double - Rel
Condition stringExpr - Rule
Exec doubleId - Rule
Group doubleExec Id - Rule
Group doubleExist - Rule
Group doubleId - Rule
Group stringName - Rule
Group doubleTable Id - Rule
Id double - Rule
Name string - Rule
Type double - Schema
Name string - Source
Object stringData Type Name - Source
Object stringValue - Start
Time string - Table
Name string - Target
Db stringTable Name - Target
Object stringData Type - Target
Object stringValue - Template
Name string - Trigger
Condition string - Trigger
Result string
- Alarm
Level float64 - Aspect
Task stringId - Catalog
Name string - Compare
Results []GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result - Condition
Expression string - Database
Name string - Datasource
Id string - Datasource
Name string - Datasource
Type float64 - Exec
Result float64Status - Field
Configs []GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Field Config - Finish
Time string - Group
Type string - Monitor
Type float64 - Quality
Dim float64 - Rel
Condition stringExpr - Rule
Exec float64Id - Rule
Group float64Exec Id - Rule
Group float64Exist - Rule
Group float64Id - Rule
Group stringName - Rule
Group float64Table Id - Rule
Id float64 - Rule
Name string - Rule
Type float64 - Schema
Name string - Source
Object stringData Type Name - Source
Object stringValue - Start
Time string - Table
Name string - Target
Db stringTable Name - Target
Object stringData Type - Target
Object stringValue - Template
Name string - Trigger
Condition string - Trigger
Result string
- alarm_
level number - aspect_
task_ stringid - catalog_
name string - compare_
results list(object) - condition_
expression string - database_
name string - datasource_
id string - datasource_
name string - datasource_
type number - exec_
result_ numberstatus - field_
configs list(object) - finish_
time string - group_
type string - monitor_
type number - quality_
dim number - rel_
condition_ stringexpr - rule_
exec_ numberid - rule_
group_ numberexec_ id - rule_
group_ numberexist - rule_
group_ numberid - rule_
group_ stringname - rule_
group_ numbertable_ id - rule_
id number - rule_
name string - rule_
type number - schema_
name string - source_
object_ stringdata_ type_ name - source_
object_ stringvalue - start_
time string - table_
name string - target_
db_ stringtable_ name - target_
object_ stringdata_ type - target_
object_ stringvalue - template_
name string - trigger_
condition string - trigger_
result string
- alarm
Level Double - aspect
Task StringId - catalog
Name String - compare
Results List<GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result> - condition
Expression String - database
Name String - datasource
Id String - datasource
Name String - datasource
Type Double - exec
Result DoubleStatus - field
Configs List<GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Field Config> - finish
Time String - group
Type String - monitor
Type Double - quality
Dim Double - rel
Condition StringExpr - rule
Exec DoubleId - rule
Group DoubleExec Id - rule
Group DoubleExist - rule
Group DoubleId - rule
Group StringName - rule
Group DoubleTable Id - rule
Id Double - rule
Name String - rule
Type Double - schema
Name String - source
Object StringData Type Name - source
Object StringValue - start
Time String - table
Name String - target
Db StringTable Name - target
Object StringData Type - target
Object StringValue - template
Name String - trigger
Condition String - trigger
Result String
- alarm
Level number - aspect
Task stringId - catalog
Name string - compare
Results GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result[] - condition
Expression string - database
Name string - datasource
Id string - datasource
Name string - datasource
Type number - exec
Result numberStatus - field
Configs GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Field Config[] - finish
Time string - group
Type string - monitor
Type number - quality
Dim number - rel
Condition stringExpr - rule
Exec numberId - rule
Group numberExec Id - rule
Group numberExist - rule
Group numberId - rule
Group stringName - rule
Group numberTable Id - rule
Id number - rule
Name string - rule
Type number - schema
Name string - source
Object stringData Type Name - source
Object stringValue - start
Time string - table
Name string - target
Db stringTable Name - target
Object stringData Type - target
Object stringValue - template
Name string - trigger
Condition string - trigger
Result string
- alarm_
level float - aspect_
task_ strid - catalog_
name str - compare_
results Sequence[GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result] - condition_
expression str - database_
name str - datasource_
id str - datasource_
name str - datasource_
type float - exec_
result_ floatstatus - field_
configs Sequence[GetWedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Field Config] - finish_
time str - group_
type str - monitor_
type float - quality_
dim float - rel_
condition_ strexpr - rule_
exec_ floatid - rule_
group_ floatexec_ id - rule_
group_ floatexist - rule_
group_ floatid - rule_
group_ strname - rule_
group_ floattable_ id - rule_
id float - rule_
name str - rule_
type float - schema_
name str - source_
object_ strdata_ type_ name - source_
object_ strvalue - start_
time str - table_
name str - target_
db_ strtable_ name - target_
object_ strdata_ type - target_
object_ strvalue - template_
name str - trigger_
condition str - trigger_
result str
- alarm
Level Number - aspect
Task StringId - catalog
Name String - compare
Results List<Property Map> - condition
Expression String - database
Name String - datasource
Id String - datasource
Name String - datasource
Type Number - exec
Result NumberStatus - field
Configs List<Property Map> - finish
Time String - group
Type String - monitor
Type Number - quality
Dim Number - rel
Condition StringExpr - rule
Exec NumberId - rule
Group NumberExec Id - rule
Group NumberExist - rule
Group NumberId - rule
Group StringName - rule
Group NumberTable Id - rule
Id Number - rule
Name String - rule
Type Number - schema
Name String - source
Object StringData Type Name - source
Object StringValue - start
Time String - table
Name String - target
Db StringTable Name - target
Object StringData Type - target
Object StringValue - template
Name String - trigger
Condition String - trigger
Result String
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult
- compute_
expression string - items list(object)
- pass_
rows number - total_
rows number - trigger_
rows number
- compute
Expression String - items List<Property Map>
- pass
Rows Number - total
Rows Number - trigger
Rows Number
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResultItem
- Compare
Type double - Fix
Result double - Operator string
- Result
Value string - Value
Compute doubleType - Values
List<Get
Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result Item Value> - Filter value list.
- Compare
Type float64 - Fix
Result float64 - Operator string
- Result
Value string - Value
Compute float64Type - Values
[]Get
Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result Item Value - Filter value list.
- compare_
type number - fix_
result number - operator string
- result_
value string - value_
compute_ numbertype - values list(object)
- Filter value list.
- compare
Type Double - fix
Result Double - operator String
- result
Value String - value
Compute DoubleType - values
List<Get
Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result Item Value> - Filter value list.
- compare
Type number - fix
Result number - operator string
- result
Value string - value
Compute numberType - values
Get
Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result Item Value[] - Filter value list.
- compare_
type float - fix_
result float - operator str
- result_
value str - value_
compute_ floattype - values
Sequence[Get
Wedata Quality Rule Group Exec Results Data Item Rule Exec Result Vo List Compare Result Item Value] - Filter value list.
- compare
Type Number - fix
Result Number - operator String
- result
Value String - value
Compute NumberType - values List<Property Map>
- Filter value list.
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResultItemValue
- value string
- value_
type number
- value str
- value_
type float
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfig
- database_
id string - database_
name string - field_
configs list(object) - table_
id string - table_
key string - table_
name string
- database
Id String - database
Name String - field
Configs List<Property Map> - table
Id String - table
Key String - table
Name String
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfigFieldConfig
- field_
data_ stringtype - field_
key string - field_
value string - value_
configs list(object)
- field
Data StringType - field
Key String - field
Value String - value
Configs List<Property Map>
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfigFieldConfigValueConfig
- Field
Data stringType - Field
Key string - Field
Value string
- Field
Data stringType - Field
Key string - Field
Value string
- field_
data_ stringtype - field_
key string - field_
value string
- field
Data StringType - field
Key String - field
Value String
- field
Data stringType - field
Key string - field
Value string
- field_
data_ strtype - field_
key str - field_
value str
- field
Data StringType - field
Key String - field
Value String
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigWhereConfig
- field_
data_ stringtype - field_
key string - field_
value string - value_
configs list(object)
- field
Data StringType - field
Key String - field
Value String - value
Configs List<Property Map>
GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigWhereConfigValueConfig
- Field
Data stringType - Field
Key string - Field
Value string
- Field
Data stringType - Field
Key string - Field
Value string
- field_
data_ stringtype - field_
key string - field_
value string
- field
Data StringType - field
Key String - field
Value String
- field
Data stringType - field
Key string - field
Value string
- field_
data_ strtype - field_
key str - field_
value str
- field
Data StringType - field
Key String - field
Value String
GetWedataQualityRuleGroupExecResultsFilter
GetWedataQualityRuleGroupExecResultsOrderField
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloudTerraform Provider.
Viewing docs for tencentcloud 1.82.94
published on Tuesday, May 19, 2026 by tencentcloudstack
published on Tuesday, May 19, 2026 by tencentcloudstack
