Class: Azure::ARM::Storage::Models::CustomDomain
- Inherits:
-
Object
- Object
- Azure::ARM::Storage::Models::CustomDomain
- Includes:
- MsRestAzure
- Defined in:
- lib/azure_mgmt_storage/models/custom_domain.rb
Overview
The custom domain assigned to this storage account. This can be set via Update.
Instance Attribute Summary collapse
-
#name ⇒ String
CNAME source.
-
#use_sub_domain ⇒ Boolean
enabled.
Class Method Summary collapse
-
.deserialize_object(object) ⇒ CustomDomain
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
#name ⇒ String
CNAME source.
18 19 20 |
# File 'lib/azure_mgmt_storage/models/custom_domain.rb', line 18 def name @name end |
#use_sub_domain ⇒ Boolean
enabled. Default value is false. This should only be set on updates
22 23 24 |
# File 'lib/azure_mgmt_storage/models/custom_domain.rb', line 22 def use_sub_domain @use_sub_domain end |
Class Method Details
.deserialize_object(object) ⇒ CustomDomain
Deserializes given Ruby Hash into Model object.
54 55 56 57 58 59 60 61 62 63 64 65 |
# File 'lib/azure_mgmt_storage/models/custom_domain.rb', line 54 def self.deserialize_object(object) return if object.nil? output_object = CustomDomain.new deserialized_property = object['name'] output_object.name = deserialized_property deserialized_property = object['useSubDomain'] output_object.use_sub_domain = deserialized_property output_object end |
.serialize_object(object) ⇒ Hash
Serializes given Model object into Ruby Hash.
36 37 38 39 40 41 42 43 44 45 46 47 |
# File 'lib/azure_mgmt_storage/models/custom_domain.rb', line 36 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.use_sub_domain output_object['useSubDomain'] = serialized_property unless serialized_property.nil? output_object end |
Instance Method Details
#validate ⇒ Object
Validate the object. Throws ValidationError if validation fails.
27 28 29 |
# File 'lib/azure_mgmt_storage/models/custom_domain.rb', line 27 def validate fail MsRest::ValidationError, 'property name is nil' if @name.nil? end |