Sha256: 31e641929b0c7eea63978021431e5d8d5a456aa976152d2c2929c6bf403345ba
Contents?: true
Size: 749 Bytes
Versions: 1
Compression:
Stored size: 749 Bytes
Contents
module Fog module ApplicationGateway class AzureRM # Probe model class for Application Gateway Service class Probe < Fog::Model identity :name attribute :protocol attribute :host attribute :path attribute :interval attribute :timeout attribute :unhealthy_threshold def self.parse(probe) hash = {} hash['name'] = probe.name hash['protocol'] = probe.protocol hash['host'] = probe.host hash['path'] = probe.path hash['interval'] = probe.interval hash['timeout'] = probe.timeout hash['unhealthy_threshold'] = probe.unhealthy_threshold hash end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
fog-azure-rm-0.1.2 | lib/fog/azurerm/models/application_gateway/probe.rb |