1. Packages
  2. Volcengine
  3. API Docs
  4. rds_mysql
  5. getTasks
Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine

volcengine.rds_mysql.getTasks

Explore with Pulumi AI

volcengine logo
Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine

    Use this data source to query detailed information of rds mysql tasks

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const foo = volcengine.rds_mysql.getTasks({
        creationEndTime: "2025-06-23T00:00:00Z",
        creationStartTime: "2025-06-21T00:00:00Z",
        instanceId: "mysql-b51d37110dd1",
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    foo = volcengine.rds_mysql.get_tasks(creation_end_time="2025-06-23T00:00:00Z",
        creation_start_time="2025-06-21T00:00:00Z",
        instance_id="mysql-b51d37110dd1")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_mysql"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rds_mysql.GetTasks(ctx, &rds_mysql.GetTasksArgs{
    			CreationEndTime:   pulumi.StringRef("2025-06-23T00:00:00Z"),
    			CreationStartTime: pulumi.StringRef("2025-06-21T00:00:00Z"),
    			InstanceId:        pulumi.StringRef("mysql-b51d37110dd1"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var foo = Volcengine.Rds_mysql.GetTasks.Invoke(new()
        {
            CreationEndTime = "2025-06-23T00:00:00Z",
            CreationStartTime = "2025-06-21T00:00:00Z",
            InstanceId = "mysql-b51d37110dd1",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.rds_mysql.Rds_mysqlFunctions;
    import com.pulumi.volcengine.rds_mysql.inputs.GetTasksArgs;
    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 foo = Rds_mysqlFunctions.getTasks(GetTasksArgs.builder()
                .creationEndTime("2025-06-23T00:00:00Z")
                .creationStartTime("2025-06-21T00:00:00Z")
                .instanceId("mysql-b51d37110dd1")
                .build());
    
        }
    }
    
    variables:
      foo:
        fn::invoke:
          Function: volcengine:rds_mysql:getTasks
          Arguments:
            creationEndTime: 2025-06-23T00:00:00Z
            creationStartTime: 2025-06-21T00:00:00Z
            instanceId: mysql-b51d37110dd1
    

    Using getTasks

    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 getTasks(args: GetTasksArgs, opts?: InvokeOptions): Promise<GetTasksResult>
    function getTasksOutput(args: GetTasksOutputArgs, opts?: InvokeOptions): Output<GetTasksResult>
    def get_tasks(creation_end_time: Optional[str] = None,
                  creation_start_time: Optional[str] = None,
                  instance_id: Optional[str] = None,
                  output_file: Optional[str] = None,
                  project_name: Optional[str] = None,
                  task_action: Optional[str] = None,
                  task_categories: Optional[Sequence[str]] = None,
                  task_id: Optional[str] = None,
                  task_source: Optional[str] = None,
                  task_statuses: Optional[Sequence[str]] = None,
                  task_type: Optional[str] = None,
                  opts: Optional[InvokeOptions] = None) -> GetTasksResult
    def get_tasks_output(creation_end_time: Optional[pulumi.Input[str]] = None,
                  creation_start_time: Optional[pulumi.Input[str]] = None,
                  instance_id: Optional[pulumi.Input[str]] = None,
                  output_file: Optional[pulumi.Input[str]] = None,
                  project_name: Optional[pulumi.Input[str]] = None,
                  task_action: Optional[pulumi.Input[str]] = None,
                  task_categories: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                  task_id: Optional[pulumi.Input[str]] = None,
                  task_source: Optional[pulumi.Input[str]] = None,
                  task_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                  task_type: Optional[pulumi.Input[str]] = None,
                  opts: Optional[InvokeOptions] = None) -> Output[GetTasksResult]
    func GetTasks(ctx *Context, args *GetTasksArgs, opts ...InvokeOption) (*GetTasksResult, error)
    func GetTasksOutput(ctx *Context, args *GetTasksOutputArgs, opts ...InvokeOption) GetTasksResultOutput

    > Note: This function is named GetTasks in the Go SDK.

    public static class GetTasks 
    {
        public static Task<GetTasksResult> InvokeAsync(GetTasksArgs args, InvokeOptions? opts = null)
        public static Output<GetTasksResult> Invoke(GetTasksInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetTasksResult> getTasks(GetTasksArgs args, InvokeOptions options)
    public static Output<GetTasksResult> getTasks(GetTasksArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:rds_mysql/getTasks:getTasks
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CreationEndTime string
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    CreationStartTime string
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    InstanceId string
    Instance ID.
    OutputFile string
    File name where to save data source results.
    ProjectName string
    The project name.
    TaskAction string
    Task name.
    TaskCategories List<string>
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    TaskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    TaskSource string
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    TaskStatuses List<string>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    TaskType string
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.
    CreationEndTime string
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    CreationStartTime string
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    InstanceId string
    Instance ID.
    OutputFile string
    File name where to save data source results.
    ProjectName string
    The project name.
    TaskAction string
    Task name.
    TaskCategories []string
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    TaskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    TaskSource string
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    TaskStatuses []string
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    TaskType string
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.
    creationEndTime String
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    creationStartTime String
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    instanceId String
    Instance ID.
    outputFile String
    File name where to save data source results.
    projectName String
    The project name.
    taskAction String
    Task name.
    taskCategories List<String>
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskId String
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskSource String
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    taskStatuses List<String>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType String
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.
    creationEndTime string
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    creationStartTime string
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    instanceId string
    Instance ID.
    outputFile string
    File name where to save data source results.
    projectName string
    The project name.
    taskAction string
    Task name.
    taskCategories string[]
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskSource string
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    taskStatuses string[]
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType string
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.
    creation_end_time str
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    creation_start_time str
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    instance_id str
    Instance ID.
    output_file str
    File name where to save data source results.
    project_name str
    The project name.
    task_action str
    Task name.
    task_categories Sequence[str]
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    task_id str
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    task_source str
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    task_statuses Sequence[str]
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    task_type str
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.
    creationEndTime String
    The end time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) shall not exceed 7 days.
    creationStartTime String
    The start time of the task. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Instructions: For the two groups of parameters, task time (CreationStartTime and CreationEndTime) and TaskId, one of them must be selected. The maximum time interval between the task start time (CreationStartTime) and the task end time (CreationEndTime) cannot exceed 7 days.
    instanceId String
    Instance ID.
    outputFile String
    File name where to save data source results.
    projectName String
    The project name.
    taskAction String
    Task name.
    taskCategories List<String>
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskId String
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskSource String
    Task source. Values: User: Tenant. System: System. SystemUser: Internal operation and maintenance. UserMaintain: Maintenance operations initiated by system/operation and maintenance administrators and visible to tenants.
    taskStatuses List<String>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType String
    Task type. Values: Web: Console request. OpenAPI: OpenAPI request. AssumeRole: Role - playing request. Other: Other requests.

    getTasks Result

    The following output properties are available:

    Datas List<GetTasksData>
    The collection of query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    CreationEndTime string
    CreationStartTime string
    InstanceId string
    Instance ID.
    OutputFile string
    ProjectName string
    TaskAction string
    Task name.
    TaskCategories List<string>
    Task category.
    TaskId string
    Task ID.
    TaskSource string
    TaskStatuses List<string>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    TaskType string
    Datas []GetTasksData
    The collection of query.
    Id string
    The provider-assigned unique ID for this managed resource.
    TotalCount int
    The total count of query.
    CreationEndTime string
    CreationStartTime string
    InstanceId string
    Instance ID.
    OutputFile string
    ProjectName string
    TaskAction string
    Task name.
    TaskCategories []string
    Task category.
    TaskId string
    Task ID.
    TaskSource string
    TaskStatuses []string
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    TaskType string
    datas List<GetTasksData>
    The collection of query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Integer
    The total count of query.
    creationEndTime String
    creationStartTime String
    instanceId String
    Instance ID.
    outputFile String
    projectName String
    taskAction String
    Task name.
    taskCategories List<String>
    Task category.
    taskId String
    Task ID.
    taskSource String
    taskStatuses List<String>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType String
    datas GetTasksData[]
    The collection of query.
    id string
    The provider-assigned unique ID for this managed resource.
    totalCount number
    The total count of query.
    creationEndTime string
    creationStartTime string
    instanceId string
    Instance ID.
    outputFile string
    projectName string
    taskAction string
    Task name.
    taskCategories string[]
    Task category.
    taskId string
    Task ID.
    taskSource string
    taskStatuses string[]
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType string
    datas Sequence[GetTasksData]
    The collection of query.
    id str
    The provider-assigned unique ID for this managed resource.
    total_count int
    The total count of query.
    creation_end_time str
    creation_start_time str
    instance_id str
    Instance ID.
    output_file str
    project_name str
    task_action str
    Task name.
    task_categories Sequence[str]
    Task category.
    task_id str
    Task ID.
    task_source str
    task_statuses Sequence[str]
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    task_type str
    datas List<Property Map>
    The collection of query.
    id String
    The provider-assigned unique ID for this managed resource.
    totalCount Number
    The total count of query.
    creationEndTime String
    creationStartTime String
    instanceId String
    Instance ID.
    outputFile String
    projectName String
    taskAction String
    Task name.
    taskCategories List<String>
    Task category.
    taskId String
    Task ID.
    taskSource String
    taskStatuses List<String>
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    taskType String

    Supporting Types

    GetTasksData

    CreateTime string
    The creation time of the task.
    FinishTime string
    The completion time of the task.
    Progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    ScheduledExecuteEndTime string
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    ScheduledSwitchEndTime string
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    ScheduledSwitchStartTime string
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    StartTime string
    The start time of the task.
    TaskAction string
    Task name.
    TaskCategory string
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    TaskDesc string
    The description of the task.
    TaskDetails List<GetTasksDataTaskDetail>
    Detailed information of the task.
    TaskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    TaskParams string
    Task parameters.
    TaskProgresses List<GetTasksDataTaskProgress>
    Progress details.
    TaskStatus string
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    CreateTime string
    The creation time of the task.
    FinishTime string
    The completion time of the task.
    Progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    ScheduledExecuteEndTime string
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    ScheduledSwitchEndTime string
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    ScheduledSwitchStartTime string
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    StartTime string
    The start time of the task.
    TaskAction string
    Task name.
    TaskCategory string
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    TaskDesc string
    The description of the task.
    TaskDetails []GetTasksDataTaskDetail
    Detailed information of the task.
    TaskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    TaskParams string
    Task parameters.
    TaskProgresses []GetTasksDataTaskProgress
    Progress details.
    TaskStatus string
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    createTime String
    The creation time of the task.
    finishTime String
    The completion time of the task.
    progress Integer
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    scheduledExecuteEndTime String
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchEndTime String
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchStartTime String
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    startTime String
    The start time of the task.
    taskAction String
    Task name.
    taskCategory String
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskDesc String
    The description of the task.
    taskDetails List<GetTasksDataTaskDetail>
    Detailed information of the task.
    taskId String
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskParams String
    Task parameters.
    taskProgresses List<GetTasksDataTaskProgress>
    Progress details.
    taskStatus String
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    createTime string
    The creation time of the task.
    finishTime string
    The completion time of the task.
    progress number
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    scheduledExecuteEndTime string
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchEndTime string
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchStartTime string
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    startTime string
    The start time of the task.
    taskAction string
    Task name.
    taskCategory string
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskDesc string
    The description of the task.
    taskDetails GetTasksDataTaskDetail[]
    Detailed information of the task.
    taskId string
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskParams string
    Task parameters.
    taskProgresses GetTasksDataTaskProgress[]
    Progress details.
    taskStatus string
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    create_time str
    The creation time of the task.
    finish_time str
    The completion time of the task.
    progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    scheduled_execute_end_time str
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduled_switch_end_time str
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduled_switch_start_time str
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    start_time str
    The start time of the task.
    task_action str
    Task name.
    task_category str
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    task_desc str
    The description of the task.
    task_details Sequence[GetTasksDataTaskDetail]
    Detailed information of the task.
    task_id str
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    task_params str
    Task parameters.
    task_progresses Sequence[GetTasksDataTaskProgress]
    Progress details.
    task_status str
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.
    createTime String
    The creation time of the task.
    finishTime String
    The completion time of the task.
    progress Number
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    scheduledExecuteEndTime String
    The deadline for the planned startup. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchEndTime String
    The scheduled end time for the switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field will only be returned for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" states.
    scheduledSwitchStartTime String
    The start time of the scheduled switch. The time format is yyyy-MM-ddTHH:mm:ssZ (UTC time). Description: This field is returned only for tasks in the "Waiting to Start", "Waiting to Execute", or "Waiting to Switch" state.
    startTime String
    The start time of the task.
    taskAction String
    Task name.
    taskCategory String
    Task Category. The values are as shown in the following list, and multiple values can be selected: BackupRecoveryManagement: Backup and Recovery Management. DatabaseAdminManagement: Database Administration Management. DatabaseProxy: Database Proxy. HighAvailability: High Availability. InstanceAttribute: Instance Attribute. InstanceManagement: Instance Management. NetworkManagement: Network Management. SecurityManagement: Security Management. SystemMaintainManagement: System Operation and Maintenance Management. VersionUpgrade: Version Upgrade.
    taskDesc String
    The description of the task.
    taskDetails List<Property Map>
    Detailed information of the task.
    taskId String
    Task ID. Description: For the two groups of parameters, TaskId and task time (CreationStartTime and CreationEndTime), one of them must be selected.
    taskParams String
    Task parameters.
    taskProgresses List<Property Map>
    Progress details.
    taskStatus String
    Task status. The values are as shown in the following list, and multiple values can be selected: WaitSwitch: Waiting for switching. WaitStart: Waiting for execution. Canceled: Canceled. Stopped: Terminated. Running_BeforeSwitch: Running (before switching). Timeout: Execution Timeout. Success: Execution Success. Failed: Execution Failed. Running: In Execution. Stopping: In Termination.

    GetTasksDataTaskDetail

    CheckItemLog string
    The log of inspection items for the instance major version upgrade.
    CheckItems List<GetTasksDataTaskDetailCheckItem>
    Check results for major version upgrade.
    TaskInfos List<GetTasksDataTaskDetailTaskInfo>
    Details of the task.
    CheckItemLog string
    The log of inspection items for the instance major version upgrade.
    CheckItems []GetTasksDataTaskDetailCheckItem
    Check results for major version upgrade.
    TaskInfos []GetTasksDataTaskDetailTaskInfo
    Details of the task.
    checkItemLog String
    The log of inspection items for the instance major version upgrade.
    checkItems List<GetTasksDataTaskDetailCheckItem>
    Check results for major version upgrade.
    taskInfos List<GetTasksDataTaskDetailTaskInfo>
    Details of the task.
    checkItemLog string
    The log of inspection items for the instance major version upgrade.
    checkItems GetTasksDataTaskDetailCheckItem[]
    Check results for major version upgrade.
    taskInfos GetTasksDataTaskDetailTaskInfo[]
    Details of the task.
    check_item_log str
    The log of inspection items for the instance major version upgrade.
    check_items Sequence[GetTasksDataTaskDetailCheckItem]
    Check results for major version upgrade.
    task_infos Sequence[GetTasksDataTaskDetailTaskInfo]
    Details of the task.
    checkItemLog String
    The log of inspection items for the instance major version upgrade.
    checkItems List<Property Map>
    Check results for major version upgrade.
    taskInfos List<Property Map>
    Details of the task.

    GetTasksDataTaskDetailCheckItem

    CheckDetails List<GetTasksDataTaskDetailCheckItemCheckDetail>
    Details of the failed check items.
    Description string
    The description of the check item.
    ItemName string
    The name of the check item.
    RiskLevel string
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.
    CheckDetails []GetTasksDataTaskDetailCheckItemCheckDetail
    Details of the failed check items.
    Description string
    The description of the check item.
    ItemName string
    The name of the check item.
    RiskLevel string
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.
    checkDetails List<GetTasksDataTaskDetailCheckItemCheckDetail>
    Details of the failed check items.
    description String
    The description of the check item.
    itemName String
    The name of the check item.
    riskLevel String
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.
    checkDetails GetTasksDataTaskDetailCheckItemCheckDetail[]
    Details of the failed check items.
    description string
    The description of the check item.
    itemName string
    The name of the check item.
    riskLevel string
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.
    check_details Sequence[GetTasksDataTaskDetailCheckItemCheckDetail]
    Details of the failed check items.
    description str
    The description of the check item.
    item_name str
    The name of the check item.
    risk_level str
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.
    checkDetails List<Property Map>
    Details of the failed check items.
    description String
    The description of the check item.
    itemName String
    The name of the check item.
    riskLevel String
    The risk level of the failed check items. Values: Notice: Attention. Warning: Warning. Error: Error.

    GetTasksDataTaskDetailCheckItemCheckDetail

    Impact string
    The impact of the issue that caused the failure of the check item after the upgrade.
    Issue string
    Problems that caused the failure to pass the check items.
    Impact string
    The impact of the issue that caused the failure of the check item after the upgrade.
    Issue string
    Problems that caused the failure to pass the check items.
    impact String
    The impact of the issue that caused the failure of the check item after the upgrade.
    issue String
    Problems that caused the failure to pass the check items.
    impact string
    The impact of the issue that caused the failure of the check item after the upgrade.
    issue string
    Problems that caused the failure to pass the check items.
    impact str
    The impact of the issue that caused the failure of the check item after the upgrade.
    issue str
    Problems that caused the failure to pass the check items.
    impact String
    The impact of the issue that caused the failure of the check item after the upgrade.
    issue String
    Problems that caused the failure to pass the check items.

    GetTasksDataTaskDetailTaskInfo

    CreateTime string
    The creation time of the task.
    FinishTime string
    The completion time of the task.
    Progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    RelatedInstanceInfos List<GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo>
    Instances related to the task.
    CreateTime string
    The creation time of the task.
    FinishTime string
    The completion time of the task.
    Progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    RelatedInstanceInfos []GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo
    Instances related to the task.
    createTime String
    The creation time of the task.
    finishTime String
    The completion time of the task.
    progress Integer
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    relatedInstanceInfos List<GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo>
    Instances related to the task.
    createTime string
    The creation time of the task.
    finishTime string
    The completion time of the task.
    progress number
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    relatedInstanceInfos GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo[]
    Instances related to the task.
    create_time str
    The creation time of the task.
    finish_time str
    The completion time of the task.
    progress int
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    related_instance_infos Sequence[GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo]
    Instances related to the task.
    createTime String
    The creation time of the task.
    finishTime String
    The completion time of the task.
    progress Number
    Task progress. The unit is percentage. Description: Only tasks with a task status of In Progress, that is, tasks with a TaskStatus value of Running, will return the task progress.
    relatedInstanceInfos List<Property Map>
    Instances related to the task.

    GetTasksDataTaskDetailTaskInfoRelatedInstanceInfo

    InstanceId string
    Instance ID.
    InstanceId string
    Instance ID.
    instanceId String
    Instance ID.
    instanceId string
    Instance ID.
    instance_id str
    Instance ID.
    instanceId String
    Instance ID.

    GetTasksDataTaskProgress

    Name string
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    StepExtraInfos List<GetTasksDataTaskProgressStepExtraInfo>
    Specific information of the step.
    StepStatus string
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.
    Name string
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    StepExtraInfos []GetTasksDataTaskProgressStepExtraInfo
    Specific information of the step.
    StepStatus string
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.
    name String
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    stepExtraInfos List<GetTasksDataTaskProgressStepExtraInfo>
    Specific information of the step.
    stepStatus String
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.
    name string
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    stepExtraInfos GetTasksDataTaskProgressStepExtraInfo[]
    Specific information of the step.
    stepStatus string
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.
    name str
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    step_extra_infos Sequence[GetTasksDataTaskProgressStepExtraInfo]
    Specific information of the step.
    step_status str
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.
    name String
    Step Name. Values: InstanceInitialization: Task initialization. InstanceRecoveryPreparation Instance recovery preparation. DataBackupImport: Cold backup import. LogBackupBinlogAdd: Binlog playback. TaskSuccessful: Task success.
    stepExtraInfos List<Property Map>
    Specific information of the step.
    stepStatus String
    Step status. Values: Running: In progress. Success: Successful. Failed: Failed. Unexecuted: Not executed.

    GetTasksDataTaskProgressStepExtraInfo

    Type string
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    Unit string
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    Value double
    The specific value corresponding to the Type field.
    Type string
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    Unit string
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    Value float64
    The specific value corresponding to the Type field.
    type String
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    unit String
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    value Double
    The specific value corresponding to the Type field.
    type string
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    unit string
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    value number
    The specific value corresponding to the Type field.
    type str
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    unit str
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    value float
    The specific value corresponding to the Type field.
    type String
    Current stage. CostTime: The time taken for the current stage. CurDataSize: The amount of data imported currently. CurBinlog: The number of Binlog files being replayed currently. RemainCostTime: The remaining time taken. RemainDataSize: The remaining amount of data to be imported. RemainBinlog: The number of Binlog files remaining for playback.
    unit String
    Unit. Values: MS: Milliseconds. Bytes: Bytes. Files: Number of (files).
    value Number
    The specific value corresponding to the Type field.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.34 published on Wednesday, Jul 2, 2025 by Volcengine