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.appservice;
import com.fasterxml.jackson.annotation.JsonProperty;
Definition of Detector.
/**
* Definition of Detector.
*/
public class DetectorInfo {
Short description of the detector and its purpose.
/**
* Short description of the detector and its purpose.
*/
@JsonProperty(value = "description", access = JsonProperty.Access.WRITE_ONLY)
private String description;
Support Category.
/**
* Support Category.
*/
@JsonProperty(value = "category", access = JsonProperty.Access.WRITE_ONLY)
private String category;
Support Sub Category.
/**
* Support Sub Category.
*/
@JsonProperty(value = "subCategory", access = JsonProperty.Access.WRITE_ONLY)
private String subCategory;
Support Topic Id.
/**
* Support Topic Id.
*/
@JsonProperty(value = "supportTopicId", access = JsonProperty.Access.WRITE_ONLY)
private String supportTopicId;
Get short description of the detector and its purpose.
Returns: the description value
/**
* Get short description of the detector and its purpose.
*
* @return the description value
*/
public String description() {
return this.description;
}
Get support Category.
Returns: the category value
/**
* Get support Category.
*
* @return the category value
*/
public String category() {
return this.category;
}
Get support Sub Category.
Returns: the subCategory value
/**
* Get support Sub Category.
*
* @return the subCategory value
*/
public String subCategory() {
return this.subCategory;
}
Get support Topic Id.
Returns: the supportTopicId value
/**
* Get support Topic Id.
*
* @return the supportTopicId value
*/
public String supportTopicId() {
return this.supportTopicId;
}
}