Class: Azure::ARM::Network::Models::ApplicationGatewayProbePropertiesFormat
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ApplicationGatewayProbePropertiesFormat
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb
Overview
Properties of probe of application gateway
Instance Attribute Summary collapse
-
#host ⇒ String
Gets or sets the host to send probe to.
-
#interval ⇒ Integer
Gets or sets probing interval in seconds.
-
#path ⇒ String
Gets or sets the relative path of probe.
-
#protocol ⇒ ApplicationGatewayProtocol
Possible values include: ‘Http’, ‘Https’.
-
#provisioning_state ⇒ String
settings resource Updating/Deleting/Failed.
-
#timeout ⇒ Integer
Gets or sets probing timeout in seconds.
-
#unhealthy_threshold ⇒ Integer
Gets or sets probing unhealthy threshold.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ ApplicationGatewayProbePropertiesFormat
Deserializes given Ruby Hash into Model object.
-
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
Instance Method Summary collapse
-
#validate ⇒ Object
Validate the object.
Instance Attribute Details
#host ⇒ String
Returns Gets or sets the host to send probe to.
20 21 22 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 20 def host @host end |
#interval ⇒ Integer
Returns Gets or sets probing interval in seconds.
26 27 28 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 26 def interval @interval end |
#path ⇒ String
Returns Gets or sets the relative path of probe.
23 24 25 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 23 def path @path end |
#protocol ⇒ ApplicationGatewayProtocol
Possible values include: ‘Http’, ‘Https’
17 18 19 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 17 def protocol @protocol end |
#provisioning_state ⇒ String
settings resource Updating/Deleting/Failed
36 37 38 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 36 def provisioning_state @provisioning_state end |
#timeout ⇒ Integer
Returns Gets or sets probing timeout in seconds.
29 30 31 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 29 def timeout @timeout end |
#unhealthy_threshold ⇒ Integer
Returns Gets or sets probing unhealthy threshold.
32 33 34 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 32 def unhealthy_threshold @unhealthy_threshold end |
Class Method Details
.deserialize_object(object) ⇒ ApplicationGatewayProbePropertiesFormat
Deserializes given Ruby Hash into Model object.
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 82 def self.deserialize_object(object) return if object.nil? output_object = ApplicationGatewayProbePropertiesFormat.new deserialized_property = object['protocol'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = ApplicationGatewayProtocol.constants.any? { |e| ApplicationGatewayProtocol.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum ApplicationGatewayProtocol does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.protocol = deserialized_property deserialized_property = object['host'] output_object.host = deserialized_property deserialized_property = object['path'] output_object.path = deserialized_property deserialized_property = object['interval'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.interval = deserialized_property deserialized_property = object['timeout'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.timeout = deserialized_property deserialized_property = object['unhealthyThreshold'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.unhealthy_threshold = deserialized_property deserialized_property = object['provisioningState'] output_object.provisioning_state = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 49 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.protocol output_object['protocol'] = serialized_property unless serialized_property.nil? serialized_property = object.host output_object['host'] = serialized_property unless serialized_property.nil? serialized_property = object.path output_object['path'] = serialized_property unless serialized_property.nil? serialized_property = object.interval output_object['interval'] = serialized_property unless serialized_property.nil? serialized_property = object.timeout output_object['timeout'] = serialized_property unless serialized_property.nil? serialized_property = object.unhealthy_threshold output_object['unhealthyThreshold'] = serialized_property unless serialized_property.nil? serialized_property = object.provisioning_state output_object['provisioningState'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
41 42 |
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 41 def validate end |