Class: Azure::ContainerInstance::Mgmt::V2018_06_01::Models::ContainerExecResponse
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2018_06_01::Models::ContainerExecResponse
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-06-01/generated/azure_mgmt_container_instance/models/container_exec_response.rb
Overview
The information for the container exec command.
Instance Attribute Summary collapse
-
#password ⇒ String
The password to start the exec command.
-
#web_socket_uri ⇒ String
The uri for the exec websocket.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerExecResponse class as Ruby Hash.
Instance Attribute Details
#password ⇒ String
Returns The password to start the exec command.
19 20 21 |
# File 'lib/2018-06-01/generated/azure_mgmt_container_instance/models/container_exec_response.rb', line 19 def password @password end |
#web_socket_uri ⇒ String
Returns The uri for the exec websocket.
16 17 18 |
# File 'lib/2018-06-01/generated/azure_mgmt_container_instance/models/container_exec_response.rb', line 16 def web_socket_uri @web_socket_uri end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerExecResponse class as Ruby Hash. This will be used for serialization/deserialization.
26 27 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 |
# File 'lib/2018-06-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 |