class Azure::ContainerInstance::Mgmt::V2018_04_01::Models::ContainerExecRequestTerminalSize

The size of the terminal.

Attributes

column[RW]

@return [Integer] The column size of the terminal

row[RW]

@return [Integer] The row size of the terminal

Public Class Methods

mapper() click to toggle source

Mapper for ContainerExecRequestTerminalSize class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/2018-04-01/generated/azure_mgmt_container_instance/models/container_exec_request_terminal_size.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ContainerExecRequest_terminalSize',
    type: {
      name: 'Composite',
      class_name: 'ContainerExecRequestTerminalSize',
      model_properties: {
        row: {
          client_side_validation: true,
          required: false,
          serialized_name: 'row',
          type: {
            name: 'Number'
          }
        },
        column: {
          client_side_validation: true,
          required: false,
          serialized_name: 'column',
          type: {
            name: 'Number'
          }
        }
      }
    }
  }
end