Class: Azure::ARM::Network::Models::ApplicationGatewayProbePropertiesFormat

Inherits:
Object
  • Object
show all
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

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#hostString

Returns Gets or sets the host to send probe to.

Returns:

  • (String)

    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

#intervalInteger

Returns Gets or sets probing interval in seconds.

Returns:

  • (Integer)

    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

#pathString

Returns Gets or sets the relative path of probe.

Returns:

  • (String)

    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

#protocolApplicationGatewayProtocol

Possible values include: ‘Http’, ‘Https’

Returns:



17
18
19
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 17

def protocol
  @protocol
end

#provisioning_stateString

settings resource Updating/Deleting/Failed

Returns:

  • (String)

    Gets or sets Provisioning state of the backend http



36
37
38
# File 'lib/azure_mgmt_network/models/application_gateway_probe_properties_format.rb', line 36

def provisioning_state
  @provisioning_state
end

#timeoutInteger

Returns Gets or sets probing timeout in seconds.

Returns:

  • (Integer)

    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_thresholdInteger

Returns Gets or sets probing unhealthy threshold.

Returns:

  • (Integer)

    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.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



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.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of 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

#validateObject

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