Sha256: b9bbf1ecefe72526112ce67879fabc4c4cd07e89e9be92206daabcc5433e2fca
Contents?: true
Size: 1.44 KB
Versions: 6
Compression:
Stored size: 1.44 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ContainerInstance::Mgmt::V2018_09_01 module Models # # The port exposed on the container group. # class Port include MsRestAzure # @return [ContainerGroupNetworkProtocol] The protocol associated with # the port. Possible values include: 'TCP', 'UDP' attr_accessor :protocol # @return [Integer] The port number. attr_accessor :port # # Mapper for Port class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Port', type: { name: 'Composite', class_name: 'Port', 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 end end end
Version data entries
6 entries across 6 versions & 1 rubygems