Sha256: 3d3a27104810ded9fbedf466cbb35ea6fbff3aa4a2e9d0c35b7f634be0e0d34f
Contents?: true
Size: 913 Bytes
Versions: 46
Compression:
Stored size: 913 Bytes
Contents
module Fog module ApplicationGateway class AzureRM # Backend Http Settings model class for Application Gateway Service class BackendHttpSetting < Fog::Model identity :name attribute :id attribute :port attribute :protocol attribute :cookie_based_affinity attribute :request_timeout attribute :probe def self.parse(backend_http_setting) hash = {} hash['id'] = backend_http_setting.id hash['name'] = backend_http_setting.name hash['port'] = backend_http_setting.port hash['protocol'] = backend_http_setting.protocol hash['cookie_based_affinity'] = backend_http_setting.cookie_based_affinity hash['request_timeout'] = backend_http_setting.request_timeout hash['probe'] = backend_http_setting.probe hash end end end end end
Version data entries
46 entries across 46 versions & 4 rubygems