Sha256: 1c7ca440f7e365dd846d3032a24c12f090bff8a4f075679bfcf43bc2846baded
Contents?: true
Size: 1.9 KB
Versions: 31
Compression:
Stored size: 1.9 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::Network::Mgmt::V2018_07_01 module Models # # Parameters that define destination of connection. # class ConnectivityDestination include MsRestAzure # @return [String] The ID of the resource to which a connection attempt # will be made. attr_accessor :resource_id # @return [String] The IP address or URI the resource to which a # connection attempt will be made. attr_accessor :address # @return [Integer] Port on which check connectivity will be performed. attr_accessor :port # # Mapper for ConnectivityDestination class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectivityDestination', type: { name: 'Composite', class_name: 'ConnectivityDestination', model_properties: { resource_id: { client_side_validation: true, required: false, serialized_name: 'resourceId', type: { name: 'String' } }, address: { client_side_validation: true, required: false, serialized_name: 'address', type: { name: 'String' } }, port: { client_side_validation: true, required: false, serialized_name: 'port', type: { name: 'Number' } } } } } end end end end
Version data entries
31 entries across 31 versions & 2 rubygems