class Azure::CDN::Mgmt::V2016_04_02::Models::ValidateCustomDomainOutput
Output of custom domain validation.
Attributes
custom_domain_validated[RW]
@return [Boolean] Indicates whether the custom domain is validated or not.
message[RW]
@return [String] The message describing why the custom domain is not valid.
reason[RW]
@return [String] The reason why the custom domain is not valid.
Public Class Methods
mapper()
click to toggle source
Mapper for ValidateCustomDomainOutput
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2016-04-02/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ValidateCustomDomainOutput', type: { name: 'Composite', class_name: 'ValidateCustomDomainOutput', model_properties: { custom_domain_validated: { client_side_validation: true, required: false, serialized_name: 'customDomainValidated', type: { name: 'Boolean' } }, reason: { client_side_validation: true, required: false, serialized_name: 'reason', type: { name: 'String' } }, message: { client_side_validation: true, required: false, serialized_name: 'message', type: { name: 'String' } } } } } end