-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from 0ba75505cddaddce442eb2172170ccd408e6cfd5 (#2223)
Update default package version for WebSiteManagementClient
- Loading branch information
1 parent
c6276a5
commit 3282bdb
Showing
59 changed files
with
5,642 additions
and
1,224 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95 changes: 95 additions & 0 deletions
95
...n/java/com/microsoft/azure/management/appservice/v2018_02_01/DataTableResponseColumn.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
/** | ||
* 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.appservice.v2018_02_01; | ||
|
||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
|
||
/** | ||
* Column definition. | ||
*/ | ||
public class DataTableResponseColumn { | ||
/** | ||
* Name of the column. | ||
*/ | ||
@JsonProperty(value = "columnName") | ||
private String columnName; | ||
|
||
/** | ||
* Data type which looks like 'String' or 'Int32'. | ||
*/ | ||
@JsonProperty(value = "dataType") | ||
private String dataType; | ||
|
||
/** | ||
* Column Type. | ||
*/ | ||
@JsonProperty(value = "columnType") | ||
private String columnType; | ||
|
||
/** | ||
* Get name of the column. | ||
* | ||
* @return the columnName value | ||
*/ | ||
public String columnName() { | ||
return this.columnName; | ||
} | ||
|
||
/** | ||
* Set name of the column. | ||
* | ||
* @param columnName the columnName value to set | ||
* @return the DataTableResponseColumn object itself. | ||
*/ | ||
public DataTableResponseColumn withColumnName(String columnName) { | ||
this.columnName = columnName; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get data type which looks like 'String' or 'Int32'. | ||
* | ||
* @return the dataType value | ||
*/ | ||
public String dataType() { | ||
return this.dataType; | ||
} | ||
|
||
/** | ||
* Set data type which looks like 'String' or 'Int32'. | ||
* | ||
* @param dataType the dataType value to set | ||
* @return the DataTableResponseColumn object itself. | ||
*/ | ||
public DataTableResponseColumn withDataType(String dataType) { | ||
this.dataType = dataType; | ||
return this; | ||
} | ||
|
||
/** | ||
* Get column Type. | ||
* | ||
* @return the columnType value | ||
*/ | ||
public String columnType() { | ||
return this.columnType; | ||
} | ||
|
||
/** | ||
* Set column Type. | ||
* | ||
* @param columnType the columnType value to set | ||
* @return the DataTableResponseColumn object itself. | ||
*/ | ||
public DataTableResponseColumn withColumnType(String columnType) { | ||
this.columnType = columnType; | ||
return this; | ||
} | ||
|
||
} |
Oops, something went wrong.