From a9385fa6c8c16253b61b7c0c5a4d3fbb975bc8ba Mon Sep 17 00:00:00 2001 From: Azure SDK for Python bot Date: Wed, 14 Mar 2018 18:10:38 +0000 Subject: [PATCH] Generated from 2f0dc17f7d69b23e41058c6aa7eef3946337ffd6 Fixing error in naming convention for rows and cols --- .../ContainerExecRequestTerminalSize.java | 40 +++++++++---------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/azure-mgmt-containerinstance/src/main/java/com/microsoft/azure/management/containerinstance/ContainerExecRequestTerminalSize.java b/azure-mgmt-containerinstance/src/main/java/com/microsoft/azure/management/containerinstance/ContainerExecRequestTerminalSize.java index aa3620ba5ba..dba7c333b9a 100644 --- a/azure-mgmt-containerinstance/src/main/java/com/microsoft/azure/management/containerinstance/ContainerExecRequestTerminalSize.java +++ b/azure-mgmt-containerinstance/src/main/java/com/microsoft/azure/management/containerinstance/ContainerExecRequestTerminalSize.java @@ -17,52 +17,52 @@ public class ContainerExecRequestTerminalSize { /** * The row size of the terminal. */ - @JsonProperty(value = "row") - private Integer row; + @JsonProperty(value = "rows") + private Integer rows; /** * The column size of the terminal. */ - @JsonProperty(value = "column") - private Integer column; + @JsonProperty(value = "cols") + private Integer cols; /** - * Get the row value. + * Get the rows value. * - * @return the row value + * @return the rows value */ - public Integer row() { - return this.row; + public Integer rows() { + return this.rows; } /** - * Set the row value. + * Set the rows value. * - * @param row the row value to set + * @param rows the rows value to set * @return the ContainerExecRequestTerminalSize object itself. */ - public ContainerExecRequestTerminalSize withRow(Integer row) { - this.row = row; + public ContainerExecRequestTerminalSize withRows(Integer rows) { + this.rows = rows; return this; } /** - * Get the column value. + * Get the cols value. * - * @return the column value + * @return the cols value */ - public Integer column() { - return this.column; + public Integer cols() { + return this.cols; } /** - * Set the column value. + * Set the cols value. * - * @param column the column value to set + * @param cols the cols value to set * @return the ContainerExecRequestTerminalSize object itself. */ - public ContainerExecRequestTerminalSize withColumn(Integer column) { - this.column = column; + public ContainerExecRequestTerminalSize withCols(Integer cols) { + this.cols = cols; return this; }