Sha256: 8ef60a953b1f4eeff190a4c76efb06b859aad46afe7c93ef6edfa566133c806e
Contents?: true
Size: 1.9 KB
Versions: 33
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::V2017_11_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
33 entries across 33 versions & 2 rubygems