class Azure::CDN::Mgmt::V2017_04_02::Models::ValidateProbeOutput
Output of the validate probe API.
Attributes
error_code[RW]
@return [String] Specifies the error code when the probe url is not accepted.
is_valid[RW]
@return [Boolean] Indicates whether the probe URL is accepted or not.
message[RW]
@return [String] The detailed error message describing why the probe URL is not accepted.
Public Class Methods
mapper()
click to toggle source
Mapper for ValidateProbeOutput
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2017-04-02/generated/azure_mgmt_cdn/models/validate_probe_output.rb, line 31 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ValidateProbeOutput', type: { name: 'Composite', class_name: 'ValidateProbeOutput', model_properties: { is_valid: { client_side_validation: true, required: false, read_only: true, serialized_name: 'isValid', type: { name: 'Boolean' } }, error_code: { client_side_validation: true, required: false, read_only: true, serialized_name: 'errorCode', type: { name: 'String' } }, message: { client_side_validation: true, required: false, read_only: true, serialized_name: 'message', type: { name: 'String' } } } } } end