/**
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
*/
package com.microsoft.azure.management.sql.implementation;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.microsoft.rest.serializer.JsonFlatten;
import com.microsoft.azure.Resource;
/**
* Represents an Azure SQL Database schema.
*/
@JsonFlatten
public class SchemaInner extends Resource {
/**
* The tables from this database.
*/
@JsonProperty(value = "properties.tables", access = JsonProperty.Access.WRITE_ONLY)
private List<TableInner> tables;
/**
* Get the tables value.
*
* @return the tables value
*/
public List<TableInner> tables() {
return this.tables;
}
}