Class: Azure::ContainerInstance::Mgmt::V2020_11_01::Models::ContainerAttachResponse
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2020_11_01::Models::ContainerAttachResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2020-11-01/generated/azure_mgmt_container_instance/models/container_attach_response.rb
Overview
The information for the output stream from container attach.
Instance Attribute Summary collapse
-
#password ⇒ String
Send as an Authorization header value when connecting to the websocketUri.
-
#web_socket_uri ⇒ String
The uri for the output stream from the attach.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerAttachResponse class as Ruby Hash.
Instance Attribute Details
#password ⇒ String
Send as an Authorization header value when connecting to the websocketUri.
21 22 23 |
# File 'lib/2020-11-01/generated/azure_mgmt_container_instance/models/container_attach_response.rb', line 21 def password @password end |
#web_socket_uri ⇒ String
Returns The uri for the output stream from the attach.
16 17 18 |
# File 'lib/2020-11-01/generated/azure_mgmt_container_instance/models/container_attach_response.rb', line 16 def web_socket_uri @web_socket_uri end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerAttachResponse class as Ruby Hash. This will be used for serialization/deserialization.
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 |
# 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 |