Class: Azure::ARM::Web::Models::RestoreResponseProperties
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::RestoreResponseProperties
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/restore_response_properties.rb
Overview
Model object.
Instance Attribute Summary collapse
-
#operation_id ⇒ String
return an OperationId identifying that particular restore operation.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ RestoreResponseProperties
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
#operation_id ⇒ String
return an OperationId identifying that particular restore operation
17 18 19 |
# File 'lib/azure_mgmt_web/models/restore_response_properties.rb', line 17 def operation_id @operation_id end |
Class Method Details
.deserialize_object(object) ⇒ RestoreResponseProperties
Deserializes given Ruby Hash into Model object.
46 47 48 49 50 51 52 53 54 |
# File 'lib/azure_mgmt_web/models/restore_response_properties.rb', line 46 def self.deserialize_object(object) return if object.nil? output_object = RestoreResponseProperties.new deserialized_property = object['operationId'] output_object.operation_id = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
31 32 33 34 35 36 37 38 39 |
# File 'lib/azure_mgmt_web/models/restore_response_properties.rb', line 31 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.operation_id output_object['operationId'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
22 23 24 |
# File 'lib/azure_mgmt_web/models/restore_response_properties.rb', line 22 def validate # Nothing to validate end |