class Azure::ContainerInstance::Mgmt::V2020_11_01::Models::ContainerExecResponse
The information for the container exec command.
Attributes
password[RW]
@return [String] The password to start the exec command.
web_socket_uri[RW]
@return [String] The uri for the exec websocket.
Private Class Methods
mapper()
click to toggle source
Mapper for ContainerExecResponse
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-11-01/generated/azure_mgmt_container_instance/models/container_exec_response.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerExecResponse', type: { name: 'Composite', class_name: 'ContainerExecResponse', model_properties: { web_socket_uri: { client_side_validation: true, required: false, serialized_name: 'webSocketUri', type: { name: 'String' } }, password: { client_side_validation: true, required: false, serialized_name: 'password', type: { name: 'String' } } } } } end