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

com.aliyuncs.petadata.model.v20160101.DescribeTablesResponse Maven / Gradle / Ivy

/*
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.aliyuncs.petadata.model.v20160101;

import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.petadata.transform.v20160101.DescribeTablesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
 * @author auto create
 * @version 
 */
public class DescribeTablesResponse extends AcsResponse {

	private String requestId;

	private String instanceId;

	private String dBName;

	private List tables;

	public String getRequestId() {
		return this.requestId;
	}

	public void setRequestId(String requestId) {
		this.requestId = requestId;
	}

	public String getInstanceId() {
		return this.instanceId;
	}

	public void setInstanceId(String instanceId) {
		this.instanceId = instanceId;
	}

	public String getDBName() {
		return this.dBName;
	}

	public void setDBName(String dBName) {
		this.dBName = dBName;
	}

	public List
getTables() { return this.tables; } public void setTables(List
tables) { this.tables = tables; } public static class Table { private String tableName; private String partitionKey; private String primaryKey; private String tableStatus; public String getTableName() { return this.tableName; } public void setTableName(String tableName) { this.tableName = tableName; } public String getPartitionKey() { return this.partitionKey; } public void setPartitionKey(String partitionKey) { this.partitionKey = partitionKey; } public String getPrimaryKey() { return this.primaryKey; } public void setPrimaryKey(String primaryKey) { this.primaryKey = primaryKey; } public String getTableStatus() { return this.tableStatus; } public void setTableStatus(String tableStatus) { this.tableStatus = tableStatus; } } @Override public DescribeTablesResponse getInstance(UnmarshallerContext context) { return DescribeTablesResponseUnmarshaller.unmarshall(this, context); } }