Class: Azure::ARM::CDN::Models::ValidateCustomDomainOutput

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

Overview

Output of custom domain validation.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#custom_domain_validatedBoolean

not.

Returns:

  • (Boolean)

    Indicates whether the custom domain is validated or



17
18
19
# File 'lib/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb', line 17

def custom_domain_validated
  @custom_domain_validated
end

#messageString

valid.

Returns:

  • (String)

    The message describing why the custom domain is not



24
25
26
# File 'lib/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb', line 24

def message
  @message
end

#reasonString

Returns The reason why the custom domain is not valid.

Returns:

  • (String)

    The reason why the custom domain is not valid.



20
21
22
# File 'lib/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb', line 20

def reason
  @reason
end

Class Method Details

.mapperObject

Mapper for ValidateCustomDomainOutput class as Ruby Hash. This will be used for serialization/deserialization.



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# File 'lib/generated/azure_mgmt_cdn/models/validate_custom_domain_output.rb', line 31

def self.mapper()
  {
    required: false,
    serialized_name: 'ValidateCustomDomainOutput',
    type: {
      name: 'Composite',
      class_name: 'ValidateCustomDomainOutput',
      model_properties: {
        custom_domain_validated: {
          required: false,
          serialized_name: 'customDomainValidated',
          type: {
            name: 'Boolean'
          }
        },
        reason: {
          required: false,
          serialized_name: 'reason',
          type: {
            name: 'String'
          }
        },
        message: {
          required: false,
          serialized_name: 'message',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end