com.azure.ai.metricsadvisor.implementation.models.MySqlDataFeedPatch 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.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.time.OffsetDateTime;
import java.time.format.DateTimeFormatter;
import java.util.List;
/**
* The MySqlDataFeedPatch model.
*/
@Fluent
public final class MySqlDataFeedPatch extends DataFeedDetailPatch {
/*
* The dataSourceParameter property.
*/
private SQLSourceParameterPatch dataSourceParameter;
/**
* Creates an instance of MySqlDataFeedPatch class.
*/
public MySqlDataFeedPatch() {
}
/**
* Get the dataSourceParameter property: The dataSourceParameter property.
*
* @return the dataSourceParameter value.
*/
public SQLSourceParameterPatch getDataSourceParameter() {
return this.dataSourceParameter;
}
/**
* Set the dataSourceParameter property: The dataSourceParameter property.
*
* @param dataSourceParameter the dataSourceParameter value to set.
* @return the MySqlDataFeedPatch object itself.
*/
public MySqlDataFeedPatch setDataSourceParameter(SQLSourceParameterPatch dataSourceParameter) {
this.dataSourceParameter = dataSourceParameter;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setDataFeedName(String dataFeedName) {
super.setDataFeedName(dataFeedName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setDataFeedDescription(String dataFeedDescription) {
super.setDataFeedDescription(dataFeedDescription);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setTimestampColumn(String timestampColumn) {
super.setTimestampColumn(timestampColumn);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setDataStartFrom(OffsetDateTime dataStartFrom) {
super.setDataStartFrom(dataStartFrom);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setStartOffsetInSeconds(Long startOffsetInSeconds) {
super.setStartOffsetInSeconds(startOffsetInSeconds);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setMaxConcurrency(Integer maxConcurrency) {
super.setMaxConcurrency(maxConcurrency);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setMinRetryIntervalInSeconds(Long minRetryIntervalInSeconds) {
super.setMinRetryIntervalInSeconds(minRetryIntervalInSeconds);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setStopRetryAfterInSeconds(Long stopRetryAfterInSeconds) {
super.setStopRetryAfterInSeconds(stopRetryAfterInSeconds);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setNeedRollup(NeedRollupEnum needRollup) {
super.setNeedRollup(needRollup);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setRollUpMethod(RollUpMethod rollUpMethod) {
super.setRollUpMethod(rollUpMethod);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setRollUpColumns(List rollUpColumns) {
super.setRollUpColumns(rollUpColumns);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setAllUpIdentification(String allUpIdentification) {
super.setAllUpIdentification(allUpIdentification);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setFillMissingPointType(FillMissingPointType fillMissingPointType) {
super.setFillMissingPointType(fillMissingPointType);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setFillMissingPointValue(Double fillMissingPointValue) {
super.setFillMissingPointValue(fillMissingPointValue);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setViewMode(ViewMode viewMode) {
super.setViewMode(viewMode);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setAdmins(List admins) {
super.setAdmins(admins);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setViewers(List viewers) {
super.setViewers(viewers);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setStatus(EntityStatus status) {
super.setStatus(status);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setActionLinkTemplate(String actionLinkTemplate) {
super.setActionLinkTemplate(actionLinkTemplate);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setAuthenticationType(AuthenticationTypeEnum authenticationType) {
super.setAuthenticationType(authenticationType);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public MySqlDataFeedPatch setCredentialId(String credentialId) {
super.setCredentialId(credentialId);
return this;
}
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("dataSourceType",
DataSourceType.MY_SQL == null ? null : DataSourceType.MY_SQL.toString());
jsonWriter.writeStringField("dataFeedName", getDataFeedName());
jsonWriter.writeStringField("dataFeedDescription", getDataFeedDescription());
jsonWriter.writeStringField("timestampColumn", getTimestampColumn());
jsonWriter.writeStringField("dataStartFrom",
getDataStartFrom() == null ? null : DateTimeFormatter.ISO_OFFSET_DATE_TIME.format(getDataStartFrom()));
jsonWriter.writeNumberField("startOffsetInSeconds", getStartOffsetInSeconds());
jsonWriter.writeNumberField("maxConcurrency", getMaxConcurrency());
jsonWriter.writeNumberField("minRetryIntervalInSeconds", getMinRetryIntervalInSeconds());
jsonWriter.writeNumberField("stopRetryAfterInSeconds", getStopRetryAfterInSeconds());
jsonWriter.writeStringField("needRollup", getNeedRollup() == null ? null : getNeedRollup().toString());
jsonWriter.writeStringField("rollUpMethod", getRollUpMethod() == null ? null : getRollUpMethod().toString());
jsonWriter.writeArrayField("rollUpColumns", getRollUpColumns(),
(writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("allUpIdentification", getAllUpIdentification());
jsonWriter.writeStringField("fillMissingPointType",
getFillMissingPointType() == null ? null : getFillMissingPointType().toString());
jsonWriter.writeNumberField("fillMissingPointValue", getFillMissingPointValue());
jsonWriter.writeStringField("viewMode", getViewMode() == null ? null : getViewMode().toString());
jsonWriter.writeArrayField("admins", getAdmins(), (writer, element) -> writer.writeString(element));
jsonWriter.writeArrayField("viewers", getViewers(), (writer, element) -> writer.writeString(element));
jsonWriter.writeStringField("status", getStatus() == null ? null : getStatus().toString());
jsonWriter.writeStringField("actionLinkTemplate", getActionLinkTemplate());
jsonWriter.writeStringField("authenticationType",
getAuthenticationType() == null ? null : getAuthenticationType().toString());
jsonWriter.writeStringField("credentialId", getCredentialId());
jsonWriter.writeJsonField("dataSourceParameter", this.dataSourceParameter);
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of MySqlDataFeedPatch from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of MySqlDataFeedPatch if the JsonReader was pointing to an instance of it, or null if it was
* pointing to JSON null.
* @throws IllegalStateException If the deserialized JSON object was missing the polymorphic discriminator.
* @throws IOException If an error occurs while reading the MySqlDataFeedPatch.
*/
public static MySqlDataFeedPatch fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
MySqlDataFeedPatch deserializedMySqlDataFeedPatch = new MySqlDataFeedPatch();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("dataSourceType".equals(fieldName)) {
String dataSourceType = reader.getString();
if (!"MySql".equals(dataSourceType)) {
throw new IllegalStateException(
"'dataSourceType' was expected to be non-null and equal to 'MySql'. The found 'dataSourceType' was '"
+ dataSourceType + "'.");
}
} else if ("dataFeedName".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setDataFeedName(reader.getString());
} else if ("dataFeedDescription".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setDataFeedDescription(reader.getString());
} else if ("timestampColumn".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setTimestampColumn(reader.getString());
} else if ("dataStartFrom".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setDataStartFrom(
reader.getNullable(nonNullReader -> OffsetDateTime.parse(nonNullReader.getString())));
} else if ("startOffsetInSeconds".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setStartOffsetInSeconds(reader.getNullable(JsonReader::getLong));
} else if ("maxConcurrency".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setMaxConcurrency(reader.getNullable(JsonReader::getInt));
} else if ("minRetryIntervalInSeconds".equals(fieldName)) {
deserializedMySqlDataFeedPatch
.setMinRetryIntervalInSeconds(reader.getNullable(JsonReader::getLong));
} else if ("stopRetryAfterInSeconds".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setStopRetryAfterInSeconds(reader.getNullable(JsonReader::getLong));
} else if ("needRollup".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setNeedRollup(NeedRollupEnum.fromString(reader.getString()));
} else if ("rollUpMethod".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setRollUpMethod(RollUpMethod.fromString(reader.getString()));
} else if ("rollUpColumns".equals(fieldName)) {
List rollUpColumns = reader.readArray(reader1 -> reader1.getString());
deserializedMySqlDataFeedPatch.setRollUpColumns(rollUpColumns);
} else if ("allUpIdentification".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setAllUpIdentification(reader.getString());
} else if ("fillMissingPointType".equals(fieldName)) {
deserializedMySqlDataFeedPatch
.setFillMissingPointType(FillMissingPointType.fromString(reader.getString()));
} else if ("fillMissingPointValue".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setFillMissingPointValue(reader.getNullable(JsonReader::getDouble));
} else if ("viewMode".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setViewMode(ViewMode.fromString(reader.getString()));
} else if ("admins".equals(fieldName)) {
List admins = reader.readArray(reader1 -> reader1.getString());
deserializedMySqlDataFeedPatch.setAdmins(admins);
} else if ("viewers".equals(fieldName)) {
List viewers = reader.readArray(reader1 -> reader1.getString());
deserializedMySqlDataFeedPatch.setViewers(viewers);
} else if ("status".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setStatus(EntityStatus.fromString(reader.getString()));
} else if ("actionLinkTemplate".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setActionLinkTemplate(reader.getString());
} else if ("authenticationType".equals(fieldName)) {
deserializedMySqlDataFeedPatch
.setAuthenticationType(AuthenticationTypeEnum.fromString(reader.getString()));
} else if ("credentialId".equals(fieldName)) {
deserializedMySqlDataFeedPatch.setCredentialId(reader.getString());
} else if ("dataSourceParameter".equals(fieldName)) {
deserializedMySqlDataFeedPatch.dataSourceParameter = SQLSourceParameterPatch.fromJson(reader);
} else {
reader.skipChildren();
}
}
return deserializedMySqlDataFeedPatch;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy