Class: Azure::ARM::Network::Models::ApplicationGatewayFrontendPortPropertiesFormat
- Inherits:
-
Object
- Object
- Azure::ARM::Network::Models::ApplicationGatewayFrontendPortPropertiesFormat
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb
Overview
Properties of Frontend Port of application gateway
Instance Attribute Summary collapse
-
#port ⇒ Integer
Gets or sets the frontend port.
-
#provisioning_state ⇒ String
resource Updating/Deleting/Failed.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ ApplicationGatewayFrontendPortPropertiesFormat
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
#port ⇒ Integer
Returns Gets or sets the frontend port.
16 17 18 |
# File 'lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb', line 16 def port @port end |
#provisioning_state ⇒ String
resource Updating/Deleting/Failed
20 21 22 |
# File 'lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb', line 20 def provisioning_state @provisioning_state end |
Class Method Details
.deserialize_object(object) ⇒ ApplicationGatewayFrontendPortPropertiesFormat
Deserializes given Ruby Hash into Model object. object.
53 54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb', line 53 def self.deserialize_object(object) return if object.nil? output_object = ApplicationGatewayFrontendPortPropertiesFormat.new deserialized_property = object['port'] deserialized_property = Integer(deserialized_property) unless deserialized_property.to_s.empty? output_object.port = 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.
34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb', line 34 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.port output_object['port'] = 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.
25 26 27 |
# File 'lib/azure_mgmt_network/models/application_gateway_frontend_port_properties_format.rb', line 25 def validate # Nothing to validate end |