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.implementation;
import com.fasterxml.jackson.annotation.JsonProperty;
Output of the validate probe API.
/**
* Output of the validate probe API.
*/
public class ValidateProbeOutputInner {
Indicates whether the probe URL is accepted or not.
/**
* Indicates whether the probe URL is accepted or not.
*/
@JsonProperty(value = "isValid", access = JsonProperty.Access.WRITE_ONLY)
private Boolean isValid;
Specifies the error code when the probe url is not accepted.
/**
* Specifies the error code when the probe url is not accepted.
*/
@JsonProperty(value = "errorCode", access = JsonProperty.Access.WRITE_ONLY)
private String errorCode;
The detailed error message describing why the probe URL is not accepted.
/**
* The detailed error message describing why the probe URL is not accepted.
*/
@JsonProperty(value = "message", access = JsonProperty.Access.WRITE_ONLY)
private String message;
Get indicates whether the probe URL is accepted or not.
Returns: the isValid value
/**
* Get indicates whether the probe URL is accepted or not.
*
* @return the isValid value
*/
public Boolean isValid() {
return this.isValid;
}
Get specifies the error code when the probe url is not accepted.
Returns: the errorCode value
/**
* Get specifies the error code when the probe url is not accepted.
*
* @return the errorCode value
*/
public String errorCode() {
return this.errorCode;
}
Get the detailed error message describing why the probe URL is not accepted.
Returns: the message value
/**
* Get the detailed error message describing why the probe URL is not accepted.
*
* @return the message value
*/
public String message() {
return this.message;
}
}