Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Generated from 56a24ff7a0bf5903c623c562734aae727189cf22 (#2992)
fixing old mistake with exec request
  • Loading branch information
AutorestCI authored Jun 13, 2018
commit 571d8e43096cdf852b0f19d267918e3fb2798101
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class ContainerExecRequest {
* Create a ContainerExecRequest.
* @member {string} [command] The command to be executed.
* @member {object} [terminalSize] The size of the terminal.
* @member {number} [terminalSize.row] The row size of the terminal
* @member {number} [terminalSize.column] The column size of the terminal
* @member {number} [terminalSize.rows] The row size of the terminal
* @member {number} [terminalSize.cols] The column size of the terminal
*/
constructor() {
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@
class ContainerExecRequestTerminalSize {
/**
* Create a ContainerExecRequestTerminalSize.
* @member {number} [row] The row size of the terminal
* @member {number} [column] The column size of the terminal
* @member {number} [rows] The row size of the terminal
* @member {number} [cols] The column size of the terminal
*/
constructor() {
}
Expand All @@ -37,16 +37,16 @@ class ContainerExecRequestTerminalSize {
name: 'Composite',
className: 'ContainerExecRequestTerminalSize',
modelProperties: {
row: {
rows: {
required: false,
serializedName: 'row',
serializedName: 'rows',
type: {
name: 'Number'
}
},
column: {
cols: {
required: false,
serializedName: 'column',
serializedName: 'cols',
type: {
name: 'Number'
}
Expand Down
12 changes: 6 additions & 6 deletions lib/services/containerinstanceManagement/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -723,12 +723,12 @@ export interface Logs {
* @constructor
* The size of the terminal.
*
* @member {number} [row] The row size of the terminal
* @member {number} [column] The column size of the terminal
* @member {number} [rows] The row size of the terminal
* @member {number} [cols] The column size of the terminal
*/
export interface ContainerExecRequestTerminalSize {
row?: number;
column?: number;
rows?: number;
cols?: number;
}

/**
Expand All @@ -739,8 +739,8 @@ export interface ContainerExecRequestTerminalSize {
*
* @member {string} [command] The command to be executed.
* @member {object} [terminalSize] The size of the terminal.
* @member {number} [terminalSize.row] The row size of the terminal
* @member {number} [terminalSize.column] The column size of the terminal
* @member {number} [terminalSize.rows] The row size of the terminal
* @member {number} [terminalSize.cols] The column size of the terminal
*/
export interface ContainerExecRequest {
command?: string;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1070,11 +1070,11 @@ export interface StartContainer {
* @param {object} [containerExecRequest.terminalSize] The size of the
* terminal.
*
* @param {number} [containerExecRequest.terminalSize.row] The row size of the
* @param {number} [containerExecRequest.terminalSize.rows] The row size of the
* terminal
*
* @param {number} [containerExecRequest.terminalSize.column] The column size
* of the terminal
* @param {number} [containerExecRequest.terminalSize.cols] The column size of
* the terminal
*
* @param {object} [options] Optional Parameters.
*
Expand Down Expand Up @@ -1108,11 +1108,11 @@ export interface StartContainer {
* @param {object} [containerExecRequest.terminalSize] The size of the
* terminal.
*
* @param {number} [containerExecRequest.terminalSize.row] The row size of the
* @param {number} [containerExecRequest.terminalSize.rows] The row size of the
* terminal
*
* @param {number} [containerExecRequest.terminalSize.column] The column size
* of the terminal
* @param {number} [containerExecRequest.terminalSize.cols] The column size of
* the terminal
*
* @param {object} [options] Optional Parameters.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@ const WebResource = msRest.WebResource;
* @param {object} [containerExecRequest.terminalSize] The size of the
* terminal.
*
* @param {number} [containerExecRequest.terminalSize.row] The row size of the
* @param {number} [containerExecRequest.terminalSize.rows] The row size of the
* terminal
*
* @param {number} [containerExecRequest.terminalSize.column] The column size
* of the terminal
* @param {number} [containerExecRequest.terminalSize.cols] The column size of
* the terminal
*
* @param {object} [options] Optional Parameters.
*
Expand Down Expand Up @@ -228,11 +228,11 @@ class StartContainer {
* @param {object} [containerExecRequest.terminalSize] The size of the
* terminal.
*
* @param {number} [containerExecRequest.terminalSize.row] The row size of the
* @param {number} [containerExecRequest.terminalSize.rows] The row size of the
* terminal
*
* @param {number} [containerExecRequest.terminalSize.column] The column size
* of the terminal
* @param {number} [containerExecRequest.terminalSize.cols] The column size of
* the terminal
*
* @param {object} [options] Optional Parameters.
*
Expand Down Expand Up @@ -278,11 +278,11 @@ class StartContainer {
* @param {object} [containerExecRequest.terminalSize] The size of the
* terminal.
*
* @param {number} [containerExecRequest.terminalSize.row] The row size of the
* @param {number} [containerExecRequest.terminalSize.rows] The row size of the
* terminal
*
* @param {number} [containerExecRequest.terminalSize.column] The column size
* of the terminal
* @param {number} [containerExecRequest.terminalSize.cols] The column size of
* the terminal
*
* @param {object} [options] Optional Parameters.
*
Expand Down