com.microsoft.azure.management.sql.SyncGroupSchemaTable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-mgmt-sql Show documentation
Show all versions of azure-mgmt-sql Show documentation
This package contains Microsoft Azure SDK for SQL Management module.
/**
* 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;
import java.util.List;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Properties of table in sync group schema.
*/
public class SyncGroupSchemaTable {
/**
* List of columns in sync group schema.
*/
@JsonProperty(value = "columns")
private List columns;
/**
* Quoted name of sync group schema table.
*/
@JsonProperty(value = "quotedName")
private String quotedName;
/**
* Get list of columns in sync group schema.
*
* @return the columns value
*/
public List columns() {
return this.columns;
}
/**
* Set list of columns in sync group schema.
*
* @param columns the columns value to set
* @return the SyncGroupSchemaTable object itself.
*/
public SyncGroupSchemaTable withColumns(List columns) {
this.columns = columns;
return this;
}
/**
* Get quoted name of sync group schema table.
*
* @return the quotedName value
*/
public String quotedName() {
return this.quotedName;
}
/**
* Set quoted name of sync group schema table.
*
* @param quotedName the quotedName value to set
* @return the SyncGroupSchemaTable object itself.
*/
public SyncGroupSchemaTable withQuotedName(String quotedName) {
this.quotedName = quotedName;
return this;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy