class Azure::ContainerInstance::Mgmt::V2020_11_01::Models::ContainerAttachResponse
The information for the output stream from container attach.
Attributes
password[RW]
@return [String] The password to the output stream from the attach. Send as an Authorization header value when connecting to the websocketUri.
web_socket_uri[RW]
@return [String] The uri for the output stream from the attach.
Private Class Methods
mapper()
click to toggle source
Mapper for ContainerAttachResponse
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-11-01/generated/azure_mgmt_container_instance/models/container_attach_response.rb, line 28 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerAttachResponse', type: { name: 'Composite', class_name: 'ContainerAttachResponse', 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