class Azure::CDN::Mgmt::V2017_04_02::Models::ValidateProbeInput

Input of the validate probe API.

Attributes

probe_url[RW]

@return [String] The probe URL to validate.

Public Class Methods

mapper() click to toggle source

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

# File lib/2017-04-02/generated/azure_mgmt_cdn/models/validate_probe_input.rb, line 23
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ValidateProbeInput',
    type: {
      name: 'Composite',
      class_name: 'ValidateProbeInput',
      model_properties: {
        probe_url: {
          client_side_validation: true,
          required: true,
          serialized_name: 'probeURL',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end