com.azure.ai.metricsadvisor.implementation.models.WholeMetricConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-ai-metricsadvisor Show documentation
Show all versions of azure-ai-metricsadvisor Show documentation
This package contains the Microsoft Azure Cognitive Services Metrics Advisor SDK.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.ai.metricsadvisor.implementation.models;
import com.azure.core.annotation.Fluent;
import com.azure.json.JsonReader;
import com.azure.json.JsonSerializable;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
/**
* The WholeMetricConfiguration model.
*/
@Fluent
public final class WholeMetricConfiguration implements JsonSerializable {
/*
* condition operator
*
* should be specified when combining multiple detection conditions
*/
private AnomalyDetectionConfigurationLogicType conditionOperator;
/*
* The smartDetectionCondition property.
*/
private SmartDetectionCondition smartDetectionCondition;
/*
* The hardThresholdCondition property.
*/
private HardThresholdCondition hardThresholdCondition;
/*
* The changeThresholdCondition property.
*/
private ChangeThresholdCondition changeThresholdCondition;
/**
* Creates an instance of WholeMetricConfiguration class.
*/
public WholeMetricConfiguration() {
}
/**
* Get the conditionOperator property: condition operator
*
* should be specified when combining multiple detection conditions.
*
* @return the conditionOperator value.
*/
public AnomalyDetectionConfigurationLogicType getConditionOperator() {
return this.conditionOperator;
}
/**
* Set the conditionOperator property: condition operator
*
* should be specified when combining multiple detection conditions.
*
* @param conditionOperator the conditionOperator value to set.
* @return the WholeMetricConfiguration object itself.
*/
public WholeMetricConfiguration setConditionOperator(AnomalyDetectionConfigurationLogicType conditionOperator) {
this.conditionOperator = conditionOperator;
return this;
}
/**
* Get the smartDetectionCondition property: The smartDetectionCondition property.
*
* @return the smartDetectionCondition value.
*/
public SmartDetectionCondition getSmartDetectionCondition() {
return this.smartDetectionCondition;
}
/**
* Set the smartDetectionCondition property: The smartDetectionCondition property.
*
* @param smartDetectionCondition the smartDetectionCondition value to set.
* @return the WholeMetricConfiguration object itself.
*/
public WholeMetricConfiguration setSmartDetectionCondition(SmartDetectionCondition smartDetectionCondition) {
this.smartDetectionCondition = smartDetectionCondition;
return this;
}
/**
* Get the hardThresholdCondition property: The hardThresholdCondition property.
*
* @return the hardThresholdCondition value.
*/
public HardThresholdCondition getHardThresholdCondition() {
return this.hardThresholdCondition;
}
/**
* Set the hardThresholdCondition property: The hardThresholdCondition property.
*
* @param hardThresholdCondition the hardThresholdCondition value to set.
* @return the WholeMetricConfiguration object itself.
*/
public WholeMetricConfiguration setHardThresholdCondition(HardThresholdCondition hardThresholdCondition) {
this.hardThresholdCondition = hardThresholdCondition;
return this;
}
/**
* Get the changeThresholdCondition property: The changeThresholdCondition property.
*
* @return the changeThresholdCondition value.
*/
public ChangeThresholdCondition getChangeThresholdCondition() {
return this.changeThresholdCondition;
}
/**
* Set the changeThresholdCondition property: The changeThresholdCondition property.
*
* @param changeThresholdCondition the changeThresholdCondition value to set.
* @return the WholeMetricConfiguration object itself.
*/
public WholeMetricConfiguration setChangeThresholdCondition(ChangeThresholdCondition changeThresholdCondition) {
this.changeThresholdCondition = changeThresholdCondition;
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("conditionOperator",
this.conditionOperator == null ? null : this.conditionOperator.toString());
jsonWriter.writeJsonField("smartDetectionCondition", this.smartDetectionCondition);
jsonWriter.writeJsonField("hardThresholdCondition", this.hardThresholdCondition);
jsonWriter.writeJsonField("changeThresholdCondition", this.changeThresholdCondition);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of WholeMetricConfiguration from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of WholeMetricConfiguration if the JsonReader was pointing to an instance of it, or null if
* it was pointing to JSON null.
* @throws IOException If an error occurs while reading the WholeMetricConfiguration.
*/
public static WholeMetricConfiguration fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
WholeMetricConfiguration deserializedWholeMetricConfiguration = new WholeMetricConfiguration();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("conditionOperator".equals(fieldName)) {
deserializedWholeMetricConfiguration.conditionOperator
= AnomalyDetectionConfigurationLogicType.fromString(reader.getString());
} else if ("smartDetectionCondition".equals(fieldName)) {
deserializedWholeMetricConfiguration.smartDetectionCondition
= SmartDetectionCondition.fromJson(reader);
} else if ("hardThresholdCondition".equals(fieldName)) {
deserializedWholeMetricConfiguration.hardThresholdCondition
= HardThresholdCondition.fromJson(reader);
} else if ("changeThresholdCondition".equals(fieldName)) {
deserializedWholeMetricConfiguration.changeThresholdCondition
= ChangeThresholdCondition.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedWholeMetricConfiguration;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy