All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ucloud.usql.model.GetCatalogTableDDLParam Maven / Gradle / Ivy

There is a newer version: 0.8.4.4-release
Show newest version
package cn.ucloud.usql.model;

import cn.ucloud.common.annotation.UcloudParam;
import cn.ucloud.common.pojo.BaseRequestParam;

import javax.validation.constraints.NotEmpty;


/**
 * @Description : 获取数据表的DDL 参数类
 * @Author : ucloud-sdk-generator
 * @Date : 2019-03-13 07:56
 **/
public class GetCatalogTableDDLParam extends BaseRequestParam {
    /**
     * 地域。 参见 [地域和可用区列表](../summary/regionlist.html)
     */
    @UcloudParam("Region")
    @NotEmpty(message = "region can not be empty")
    private String region;
    /**
     * 数据库名称
     */
    @UcloudParam("DatabaseName")
    @NotEmpty(message = "databaseName can not be empty")
    private String databaseName;
    /**
     * 数据表名称
     */
    @UcloudParam("TableName")
    @NotEmpty(message = "tableName can not be empty")
    private String tableName;


    public GetCatalogTableDDLParam(String region
            , String databaseName
            , String tableName
    ) {
        super("GetCatalogTableDDL");
        this.region = region;
        this.databaseName = databaseName;
        this.tableName = tableName;
    }


    public String getRegion() {
        return this.region;
    }

    public void setRegion(String region) {
        this.region = region;
    }

    public String getDatabaseName() {
        return this.databaseName;
    }

    public void setDatabaseName(String databaseName) {
        this.databaseName = databaseName;
    }

    public String getTableName() {
        return this.tableName;
    }

    public void setTableName(String tableName) {
        this.tableName = tableName;
    }


}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy