Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT License. See License.txt in the project root for license information. Code generated by Microsoft (R) AutoRest Code Generator.
/** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for * license information. * * Code generated by Microsoft (R) AutoRest Code Generator. */
package com.microsoft.azure.management.cdn; import com.fasterxml.jackson.annotation.JsonProperty;
Input of the validate probe API.
/** * Input of the validate probe API. */
public class ValidateProbeInput {
The probe URL to validate.
/** * The probe URL to validate. */
@JsonProperty(value = "probeURL", required = true) private String probeURL;
Get the probe URL to validate.
Returns:the probeURL value
/** * Get the probe URL to validate. * * @return the probeURL value */
public String probeURL() { return this.probeURL; }
Set the probe URL to validate.
Params:
  • probeURL – the probeURL value to set
Returns:the ValidateProbeInput object itself.
/** * Set the probe URL to validate. * * @param probeURL the probeURL value to set * @return the ValidateProbeInput object itself. */
public ValidateProbeInput withProbeURL(String probeURL) { this.probeURL = probeURL; return this; } }