class Azure::Hdinsight::Mgmt::V2018_06_01_preview::Models::ConnectivityEndpoint
The connectivity properties
Attributes
location[RW]
@return [String] The location of the endpoint.
name[RW]
@return [String] The name of the endpoint.
port[RW]
@return [Integer] The port to connect to.
private_ipaddress[RW]
@return [String] The private ip address of the endpoint.
protocol[RW]
@return [String] The protocol of the endpoint.
Private Class Methods
mapper()
click to toggle source
Mapper for ConnectivityEndpoint
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/connectivity_endpoint.rb, line 35 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ConnectivityEndpoint', type: { name: 'Composite', class_name: 'ConnectivityEndpoint', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, protocol: { client_side_validation: true, required: false, serialized_name: 'protocol', type: { name: 'String' } }, location: { client_side_validation: true, required: false, serialized_name: 'location', type: { name: 'String' } }, port: { client_side_validation: true, required: false, serialized_name: 'port', type: { name: 'Number' } }, private_ipaddress: { client_side_validation: true, required: false, serialized_name: 'privateIPAddress', type: { name: 'String' } } } } } end