Class: Azure::ARM::CDN::Models::CustomDomainPropertiesParameters

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb

Overview

Model object.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#host_nameString

Returns The host name of the custom domain.

Returns:

  • (String)

    The host name of the custom domain



16
17
18
# File 'lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb', line 16

def host_name
  @host_name
end

Class Method Details

.deserialize_object(object) ⇒ CustomDomainPropertiesParameters

Deserializes given Ruby Hash into Model object.

Parameters:

  • object (Hash)

    Ruby Hash object to deserialize.

Returns:



45
46
47
48
49
50
51
52
53
# File 'lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb', line 45

def self.deserialize_object(object)
  return if object.nil?
  output_object = CustomDomainPropertiesParameters.new

  deserialized_property = object['hostName']
  output_object.host_name = deserialized_property

  output_object
end

.serialize_object(object) ⇒ Hash

Serializes given Model object into Ruby Hash.

Parameters:

  • object

    Model object to serialize.

Returns:

  • (Hash)

    Serialized object in form of Ruby Hash.



30
31
32
33
34
35
36
37
38
# File 'lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb', line 30

def self.serialize_object(object)
  object.validate
  output_object = {}

  serialized_property = object.host_name
  output_object['hostName'] = serialized_property unless serialized_property.nil?

  output_object
end

Instance Method Details

#validateObject

Validate the object. Throws ValidationError if validation fails.



21
22
23
# File 'lib/azure_mgmt_cdn/models/custom_domain_properties_parameters.rb', line 21

def validate
  fail MsRest::ValidationError, 'property host_name is nil' if @host_name.nil?
end