Class: Azure::ARM::Web::Models::ConnStringInfo
- Inherits:
-
Object
- Object
- Azure::ARM::Web::Models::ConnStringInfo
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_web/models/conn_string_info.rb
Overview
Represents database connection string information
Instance Attribute Summary collapse
-
#connection_string ⇒ String
Connection string value.
-
#name ⇒ String
Name of connection string.
-
#type ⇒ DatabaseServerType
include: ‘MySql’, ‘SQLServer’, ‘SQLAzure’, ‘Custom’.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ ConnStringInfo
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
#connection_string ⇒ String
Returns Connection string value.
19 20 21 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 19 def connection_string @connection_string end |
#name ⇒ String
Returns Name of connection string.
16 17 18 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 16 def name @name end |
#type ⇒ DatabaseServerType
include: ‘MySql’, ‘SQLServer’, ‘SQLAzure’, ‘Custom’
23 24 25 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 23 def type @type end |
Class Method Details
.deserialize_object(object) ⇒ ConnStringInfo
Deserializes given Ruby Hash into Model object.
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 58 def self.deserialize_object(object) return if object.nil? output_object = ConnStringInfo.new deserialized_property = object['type'] if (!deserialized_property.nil? && !deserialized_property.empty?) enum_is_valid = DatabaseServerType.constants.any? { |e| DatabaseServerType.const_get(e).to_s.downcase == deserialized_property.downcase } warn 'Enum DatabaseServerType does not contain ' + deserialized_property.downcase + ', but was received from the server.' unless enum_is_valid end output_object.type = deserialized_property deserialized_property = object['name'] output_object.name = deserialized_property deserialized_property = object['connectionString'] output_object.connection_string = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 37 def self.serialize_object(object) object.validate output_object = {} serialized_property = object.type output_object['type'] = serialized_property unless serialized_property.nil? serialized_property = object.name output_object['name'] = serialized_property unless serialized_property.nil? serialized_property = object.connection_string output_object['connectionString'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
28 29 30 |
# File 'lib/azure_mgmt_web/models/conn_string_info.rb', line 28 def validate fail MsRest::ValidationError, 'property type is nil' if @type.nil? end |