Class: Azure::ContainerInstance::Mgmt::V2018_04_01::Models::ContainerPort
- Inherits:
-
Object
- Object
- Azure::ContainerInstance::Mgmt::V2018_04_01::Models::ContainerPort
- Includes:
- MsRestAzure
- Defined in:
- lib/2018-04-01/generated/azure_mgmt_container_instance/models/container_port.rb
Overview
The port exposed on the container instance.
Instance Attribute Summary collapse
-
#port ⇒ Integer
The port number exposed within the container group.
-
#protocol ⇒ ContainerNetworkProtocol
port.
Class Method Summary collapse
-
.mapper ⇒ Object
Mapper for ContainerPort class as Ruby Hash.
Instance Attribute Details
#port ⇒ Integer
Returns The port number exposed within the container group.
20 21 22 |
# File 'lib/2018-04-01/generated/azure_mgmt_container_instance/models/container_port.rb', line 20 def port @port end |
#protocol ⇒ ContainerNetworkProtocol
port. Possible values include: ‘TCP’, ‘UDP’
17 18 19 |
# File 'lib/2018-04-01/generated/azure_mgmt_container_instance/models/container_port.rb', line 17 def protocol @protocol end |
Class Method Details
.mapper ⇒ Object
Mapper for ContainerPort class as Ruby Hash. This will be used for serialization/deserialization.
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 55 |
# File 'lib/2018-04-01/generated/azure_mgmt_container_instance/models/container_port.rb', line 27 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerPort', type: { name: 'Composite', class_name: 'ContainerPort', model_properties: { protocol: { client_side_validation: true, required: false, serialized_name: 'protocol', type: { name: 'String' } }, port: { client_side_validation: true, required: true, serialized_name: 'port', type: { name: 'Number' } } } } } end |