
com.azure.resourcemanager.datafactory.models.JsonWriteSettings 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.datafactory.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.util.LinkedHashMap;
import java.util.Map;
/**
* Json write settings.
*/
@Fluent
public final class JsonWriteSettings extends FormatWriteSettings {
/*
* The write setting type.
*/
private String type = "JsonWriteSettings";
/*
* File pattern of JSON. This setting controls the way a collection of JSON objects will be treated. The default
* value is 'setOfObjects'. It is case-sensitive.
*/
private Object filePattern;
/**
* Creates an instance of JsonWriteSettings class.
*/
public JsonWriteSettings() {
}
/**
* Get the type property: The write setting type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the filePattern property: File pattern of JSON. This setting controls the way a collection of JSON objects
* will be treated. The default value is 'setOfObjects'. It is case-sensitive.
*
* @return the filePattern value.
*/
public Object filePattern() {
return this.filePattern;
}
/**
* Set the filePattern property: File pattern of JSON. This setting controls the way a collection of JSON objects
* will be treated. The default value is 'setOfObjects'. It is case-sensitive.
*
* @param filePattern the filePattern value to set.
* @return the JsonWriteSettings object itself.
*/
public JsonWriteSettings withFilePattern(Object filePattern) {
this.filePattern = filePattern;
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeUntypedField("filePattern", this.filePattern);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of JsonWriteSettings from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of JsonWriteSettings 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 JsonWriteSettings.
*/
public static JsonWriteSettings fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
JsonWriteSettings deserializedJsonWriteSettings = new JsonWriteSettings();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("type".equals(fieldName)) {
deserializedJsonWriteSettings.type = reader.getString();
} else if ("filePattern".equals(fieldName)) {
deserializedJsonWriteSettings.filePattern = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedJsonWriteSettings.withAdditionalProperties(additionalProperties);
return deserializedJsonWriteSettings;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy