云数据库 RDS-表级时间点恢复(PostgreSQL):请求消息

时间:2024-12-20 17:08:15

请求消息

  • 参数说明
    表2 参数说明

    名称

    是否必选

    参数类型

    说明

    instances

    Array of objects

    表信息。详细说明请参见表3

    表3 instances字段数据结构说明

    名称

    是否必选

    参数类型

    说明

    restore_time

    Long

    恢复时间。

    instance_id

    String

    实例ID。

    databases

    Array of objects

    数据库信息。详细说明请参见表4

    表4 databases字段数据结构说明

    名称

    是否必选

    参数类型

    说明

    database

    String

    数据库名。

    schemas

    Array of objects

    模式信息。详细说明请参见表5

    表5 schemas字段数据结构说明

    名称

    是否必选

    参数类型

    说明

    schema

    String

    模式信息。

    tables

    Array of objects

    表信息。详细说明请参见表6

    表6 tables字段数据结构说明

    名称

    是否必选

    参数类型

    说明

    old_name

    String

    恢复前表名。

    new_name

    String

    恢复后表名。

  • 请求样例
    POST https://{endpoint}/v3/0483b6b16e954cb88930a360d2c4e663/instances/batch/restore/tables 
    { 
            "instances": [{ 
                   "restore_time": 1688556737000, 
                   "instance_id": "df29b535eec64ee1b286bd2c62871a9cin03", 
                   "databases": [{ 
                          "database": "data1", 
                          "schemas": [{ 
                                 "schema": "schema1", 
                                 "tables": [{ 
                                        "old_name": "table1", 
                                        "new_name": "table1_1688556737000" 
                                 }] 
                          }], 
                   }] 
            }] 
     }
support.huaweicloud.com/api-rds/rds_09_0024.html