Class: Azure::CDN::Mgmt::V2017_04_02::Models::ValidateProbeInput

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2017-04-02/generated/azure_mgmt_cdn/models/validate_probe_input.rb

Overview

Input of the validate probe API.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#probe_urlString

Returns The probe URL to validate.

Returns:

  • (String)

    The probe URL to validate.



16
17
18
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/validate_probe_input.rb', line 16

def probe_url
  @probe_url
end

Class Method Details

.mapperObject

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



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# File 'lib/2017-04-02/generated/azure_mgmt_cdn/models/validate_probe_input.rb', line 23

def self.mapper()
  {
    required: false,
    serialized_name: 'ValidateProbeInput',
    type: {
      name: 'Composite',
      class_name: 'ValidateProbeInput',
      model_properties: {
        probe_url: {
          required: true,
          serialized_name: 'probeURL',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end