
com.azure.resourcemanager.applicationinsights.models.ErrorDefinition Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.applicationinsights.models;
import com.azure.core.annotation.Immutable;
import com.azure.core.management.exception.AdditionalInfo;
import com.azure.core.management.exception.ManagementError;
import com.azure.json.JsonReader;
import com.azure.json.JsonToken;
import com.azure.json.JsonWriter;
import java.io.IOException;
import java.util.List;
/**
* Error response.
*/
@Immutable
public final class ErrorDefinition extends ManagementError {
/*
* Internal error details.
*/
private Object innererror;
/*
* Additional info for the error.
*/
private List additionalInfo;
/*
* Details for the error.
*/
private List details;
/*
* The target of the error.
*/
private String target;
/*
* The error message parsed from the body of the http error response.
*/
private String message;
/*
* The error code parsed from the body of the http error response.
*/
private String code;
/**
* Creates an instance of ErrorDefinition class.
*/
public ErrorDefinition() {
}
/**
* Get the innererror property: Internal error details.
*
* @return the innererror value.
*/
public Object getInnererror() {
return this.innererror;
}
/**
* Get the additionalInfo property: Additional info for the error.
*
* @return the additionalInfo value.
*/
@Override
public List getAdditionalInfo() {
return this.additionalInfo;
}
/**
* Get the details property: Details for the error.
*
* @return the details value.
*/
@Override
public List getDetails() {
return this.details;
}
/**
* Get the target property: The target of the error.
*
* @return the target value.
*/
@Override
public String getTarget() {
return this.target;
}
/**
* Get the message property: The error message parsed from the body of the http error response.
*
* @return the message value.
*/
@Override
public String getMessage() {
return this.message;
}
/**
* Get the code property: The error code parsed from the body of the http error response.
*
* @return the code value.
*/
@Override
public String getCode() {
return this.code;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ErrorDefinition from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ErrorDefinition 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 ErrorDefinition.
*/
public static ErrorDefinition fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
JsonReader bufferedReader = reader.bufferObject();
bufferedReader.nextToken();
while (bufferedReader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = bufferedReader.getFieldName();
bufferedReader.nextToken();
if ("error".equals(fieldName)) {
return readManagementError(bufferedReader);
} else {
bufferedReader.skipChildren();
}
}
return readManagementError(bufferedReader.reset());
});
}
private static ErrorDefinition readManagementError(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ErrorDefinition deserializedErrorDefinition = new ErrorDefinition();
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("code".equals(fieldName)) {
deserializedErrorDefinition.code = reader.getString();
} else if ("message".equals(fieldName)) {
deserializedErrorDefinition.message = reader.getString();
} else if ("target".equals(fieldName)) {
deserializedErrorDefinition.target = reader.getString();
} else if ("details".equals(fieldName)) {
List details = reader.readArray(reader1 -> ManagementError.fromJson(reader1));
deserializedErrorDefinition.details = details;
} else if ("additionalInfo".equals(fieldName)) {
List additionalInfo = reader.readArray(reader1 -> AdditionalInfo.fromJson(reader1));
deserializedErrorDefinition.additionalInfo = additionalInfo;
} else if ("innererror".equals(fieldName)) {
deserializedErrorDefinition.innererror = reader.readUntyped();
} else {
reader.skipChildren();
}
}
return deserializedErrorDefinition;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy