1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. getWedataQualityRuleGroupExecResults
tencentcloud 1.82.70 published on Wednesday, Feb 11, 2026 by tencentcloudstack
tencentcloud logo
tencentcloud 1.82.70 published on Wednesday, Feb 11, 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
    

    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: Optional[pulumi.Input[Sequence[pulumi.Input[GetWedataQualityRuleGroupExecResultsFilterArgs]]]] = None,
                                                   id: Optional[pulumi.Input[str]] = None,
                                                   order_fields: Optional[pulumi.Input[Sequence[pulumi.Input[GetWedataQualityRuleGroupExecResultsOrderFieldArgs]]]] = None,
                                                   project_id: Optional[pulumi.Input[str]] = None,
                                                   result_output_file: Optional[pulumi.Input[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 dictionary

    The following arguments are supported:

    ProjectId string
    Project ID.
    Filters List<GetWedataQualityRuleGroupExecResultsFilter>
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    Id string
    OrderFields List<GetWedataQualityRuleGroupExecResultsOrderField>
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    ResultOutputFile string
    Used to save results.
    ProjectId string
    Project ID.
    Filters []GetWedataQualityRuleGroupExecResultsFilter
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    Id string
    OrderFields []GetWedataQualityRuleGroupExecResultsOrderField
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    ResultOutputFile string
    Used to save results.
    projectId String
    Project ID.
    filters List<GetWedataQualityRuleGroupExecResultsFilter>
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    id String
    orderFields List<GetWedataQualityRuleGroupExecResultsOrderField>
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    resultOutputFile String
    Used to save results.
    projectId string
    Project ID.
    filters GetWedataQualityRuleGroupExecResultsFilter[]
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    id string
    orderFields GetWedataQualityRuleGroupExecResultsOrderField[]
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    resultOutputFile string
    Used to save results.
    project_id str
    Project ID.
    filters Sequence[GetWedataQualityRuleGroupExecResultsFilter]
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    id str
    order_fields Sequence[GetWedataQualityRuleGroupExecResultsOrderField]
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    result_output_file str
    Used to save results.
    projectId String
    Project ID.
    filters List<Property Map>
    Filter conditions. Supported filters:

    1. GroupType - Rule group type: DEFAULT (default type), WORKFLOW_NODE (workflow node type)
    2. InstanceId - Rule group execution instance ID
    3. ParentInstanceId - Parent instance ID
    4. LifeCycleRunNum - Lifecycle run number
    5. 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)
    6. DatasourceId - Data source ID
    7. 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
    8. DatabaseName - Database name
    9. DatabaseId - Database ID
    10. SchemaName - Schema name
    11. ReceiverFlag - Whether it is the current user's subscription: true/false
    12. TableName - Table name (supports fuzzy matching)
    13. RuleGroupName - Rule group name
    14. RuleGroupExecId - Rule group execution ID
    15. RuleGroupTableId - Rule group table ID
    16. Keyword - Keyword search (rule group execution ID, table name, table owner)
    17. StartTime - Actual run start time (Unix timestamp)
    18. EndTime - Actual run end time (Unix timestamp)
    19. ScheduledStartTime - Scheduled start time (Unix timestamp)
    20. ScheduledEndTime - Scheduled end time (Unix timestamp)
    21. DsJobId - Data source job ID
    22. TriggerType - Trigger type: 1-Manual, 2-Schedule, 3-Periodic
    23. Status - Rule group execution status: 0-Initial, 1-Submitted, 2-Detecting, 3-Normal, 4-Abnormal, 5-Delivering, 6-Execution error, 7-Not detected
    24. TableIds - Table ID collection
    25. RuleGroupId - Rule group ID
    26. BizCatalogIds - Business catalog ID
    27. CatalogName - Data catalog name.
    id String
    orderFields List<Property Map>
    Sort fields. Supported fields: CreateTime (sort by creation time), UpdateTime (sort by update time, default). Sort direction: 1-ASC, 2-DESC.
    resultOutputFile String
    Used to save results.

    getWedataQualityRuleGroupExecResults Result

    The following output properties are available:

    Supporting Types

    GetWedataQualityRuleGroupExecResultsData

    GetWedataQualityRuleGroupExecResultsDataItem

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoList

    AlarmLevel double
    AspectTaskId string
    CatalogName string
    CompareResults List<GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult>
    ConditionExpression string
    DatabaseName string
    DatasourceId string
    DatasourceName string
    DatasourceType double
    ExecResultStatus double
    FieldConfigs List<GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig>
    FinishTime string
    GroupType string
    MonitorType double
    QualityDim double
    RelConditionExpr string
    RuleExecId double
    RuleGroupExecId double
    RuleGroupExist double
    RuleGroupId double
    RuleGroupName string
    RuleGroupTableId double
    RuleId double
    RuleName string
    RuleType double
    SchemaName string
    SourceObjectDataTypeName string
    SourceObjectValue string
    StartTime string
    TableName string
    TargetDbTableName string
    TargetObjectDataType string
    TargetObjectValue string
    TemplateName string
    TriggerCondition string
    TriggerResult string
    AlarmLevel float64
    AspectTaskId string
    CatalogName string
    CompareResults []GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult
    ConditionExpression string
    DatabaseName string
    DatasourceId string
    DatasourceName string
    DatasourceType float64
    ExecResultStatus float64
    FieldConfigs []GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig
    FinishTime string
    GroupType string
    MonitorType float64
    QualityDim float64
    RelConditionExpr string
    RuleExecId float64
    RuleGroupExecId float64
    RuleGroupExist float64
    RuleGroupId float64
    RuleGroupName string
    RuleGroupTableId float64
    RuleId float64
    RuleName string
    RuleType float64
    SchemaName string
    SourceObjectDataTypeName string
    SourceObjectValue string
    StartTime string
    TableName string
    TargetDbTableName string
    TargetObjectDataType string
    TargetObjectValue string
    TemplateName string
    TriggerCondition string
    TriggerResult string
    alarmLevel Double
    aspectTaskId String
    catalogName String
    compareResults List<GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult>
    conditionExpression String
    databaseName String
    datasourceId String
    datasourceName String
    datasourceType Double
    execResultStatus Double
    fieldConfigs List<GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig>
    finishTime String
    groupType String
    monitorType Double
    qualityDim Double
    relConditionExpr String
    ruleExecId Double
    ruleGroupExecId Double
    ruleGroupExist Double
    ruleGroupId Double
    ruleGroupName String
    ruleGroupTableId Double
    ruleId Double
    ruleName String
    ruleType Double
    schemaName String
    sourceObjectDataTypeName String
    sourceObjectValue String
    startTime String
    tableName String
    targetDbTableName String
    targetObjectDataType String
    targetObjectValue String
    templateName String
    triggerCondition String
    triggerResult String
    alarmLevel number
    aspectTaskId string
    catalogName string
    compareResults GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult[]
    conditionExpression string
    databaseName string
    datasourceId string
    datasourceName string
    datasourceType number
    execResultStatus number
    fieldConfigs GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig[]
    finishTime string
    groupType string
    monitorType number
    qualityDim number
    relConditionExpr string
    ruleExecId number
    ruleGroupExecId number
    ruleGroupExist number
    ruleGroupId number
    ruleGroupName string
    ruleGroupTableId number
    ruleId number
    ruleName string
    ruleType number
    schemaName string
    sourceObjectDataTypeName string
    sourceObjectValue string
    startTime string
    tableName string
    targetDbTableName string
    targetObjectDataType string
    targetObjectValue string
    templateName string
    triggerCondition string
    triggerResult string
    alarm_level float
    aspect_task_id str
    catalog_name str
    compare_results Sequence[GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult]
    condition_expression str
    database_name str
    datasource_id str
    datasource_name str
    datasource_type float
    exec_result_status float
    field_configs Sequence[GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig]
    finish_time str
    group_type str
    monitor_type float
    quality_dim float
    rel_condition_expr str
    rule_exec_id float
    rule_group_exec_id float
    rule_group_exist float
    rule_group_id float
    rule_group_name str
    rule_group_table_id float
    rule_id float
    rule_name str
    rule_type float
    schema_name str
    source_object_data_type_name str
    source_object_value str
    start_time str
    table_name str
    target_db_table_name str
    target_object_data_type str
    target_object_value str
    template_name str
    trigger_condition str
    trigger_result str

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResult

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResultItem

    compareType Number
    fixResult Number
    operator String
    resultValue String
    valueComputeType Number
    values List<Property Map>
    Filter value list.

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListCompareResultItemValue

    Value string
    ValueType double
    Value string
    ValueType float64
    value String
    valueType Double
    value string
    valueType number
    value str
    value_type float
    value String
    valueType Number

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfig

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfig

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfigFieldConfig

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigTableConfigFieldConfigValueConfig

    FieldDataType string
    FieldKey string
    FieldValue string
    FieldDataType string
    FieldKey string
    FieldValue string
    fieldDataType String
    fieldKey String
    fieldValue String
    fieldDataType string
    fieldKey string
    fieldValue string
    fieldDataType String
    fieldKey String
    fieldValue String

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigWhereConfig

    GetWedataQualityRuleGroupExecResultsDataItemRuleExecResultVoListFieldConfigWhereConfigValueConfig

    FieldDataType string
    FieldKey string
    FieldValue string
    FieldDataType string
    FieldKey string
    FieldValue string
    fieldDataType String
    fieldKey String
    fieldValue String
    fieldDataType string
    fieldKey string
    fieldValue string
    fieldDataType String
    fieldKey String
    fieldValue String

    GetWedataQualityRuleGroupExecResultsFilter

    Name string
    Filter field name.
    Values List<string>
    Filter value list.
    Name string
    Filter field name.
    Values []string
    Filter value list.
    name String
    Filter field name.
    values List<String>
    Filter value list.
    name string
    Filter field name.
    values string[]
    Filter value list.
    name str
    Filter field name.
    values Sequence[str]
    Filter value list.
    name String
    Filter field name.
    values List<String>
    Filter value list.

    GetWedataQualityRuleGroupExecResultsOrderField

    Direction string
    Sort direction: ASC|DESC.
    Name string
    Sort field name.
    Direction string
    Sort direction: ASC|DESC.
    Name string
    Sort field name.
    direction String
    Sort direction: ASC|DESC.
    name String
    Sort field name.
    direction string
    Sort direction: ASC|DESC.
    name string
    Sort field name.
    direction str
    Sort direction: ASC|DESC.
    name str
    Sort field name.
    direction String
    Sort direction: ASC|DESC.
    name String
    Sort field name.

    Package Details

    Repository
    tencentcloud tencentcloudstack/terraform-provider-tencentcloud
    License
    Notes
    This Pulumi package is based on the tencentcloud Terraform Provider.
    tencentcloud logo
    tencentcloud 1.82.70 published on Wednesday, Feb 11, 2026 by tencentcloudstack
      Meet Neo: Your AI Platform Teammate