Class: Azure::ARM::Web::Models::HostingEnvironmentDiagnostics
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::HostingEnvironmentDiagnostics
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb
Overview
Diagnostics for a hosting environment (App Service Environment)
Instance Attribute Summary collapse
-
#diagnosics_output ⇒ String
Diagnostics output.
-
#name ⇒ String
Name/identifier of the diagnostics.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ HostingEnvironmentDiagnostics
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
#diagnosics_output ⇒ String
Returns Diagnostics output.
19 20 21 |
# File 'lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 19 def diagnosics_output @diagnosics_output end |
#name ⇒ String
Returns Name/identifier of the diagnostics.
16 17 18 |
# File 'lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 16 def name @name end |
Class Method Details
.deserialize_object(object) ⇒ HostingEnvironmentDiagnostics
Deserializes given Ruby Hash into Model object.
51 52 53 54 55 56 57 58 59 60 61 62 |
# File 'lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 51 def self.deserialize_object(object) return if object.nil? output_object = HostingEnvironmentDiagnostics.new deserialized_property = object['name'] output_object.name = deserialized_property deserialized_property = object['diagnosicsOutput'] output_object.diagnosics_output = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 33 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.name output_object['name'] = serialized_property unless serialized_property.nil? serialized_property = object.diagnosics_output output_object['diagnosicsOutput'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
24 25 26 |
# File 'lib/azure_mgmt_web/models/hosting_environment_diagnostics.rb', line 24 def validate # Nothing to validate end |