class Azure::ContainerInstance::Mgmt::V2018_09_01::Models::ContainerExecRequestTerminalSize
The size of the terminal.
Attributes
cols[RW]
@return [Integer] The column size of the terminal
rows[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-09-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: { rows: { client_side_validation: true, required: false, serialized_name: 'rows', type: { name: 'Number' } }, cols: { client_side_validation: true, required: false, serialized_name: 'cols', type: { name: 'Number' } } } } } end