class Azure::CDN::Mgmt::V2020_09_01::Models::ValidateCustomDomainOutput
Output of custom domain validation.
Attributes
custom_domain_validated[RW]
@return [Boolean] Indicates whether the custom domain is valid or not.
message[RW]
@return [String] Error message describing why the custom domain is not valid.
reason[RW]
@return [String] The reason why the custom domain is not valid.
Private Class Methods
mapper()
click to toggle source
Mapper for ValidateCustomDomainOutput
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2020-09-01/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb, line 30 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, read_only: true, serialized_name: 'customDomainValidated', type: { name: 'Boolean' } }, reason: { client_side_validation: true, required: false, read_only: true, serialized_name: 'reason', type: { name: 'String' } }, message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } } } } } end