
com.azure.resourcemanager.datafactory.models.SnowflakeV2Sink 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;
/**
* A copy activity snowflake sink.
*/
@Fluent
public final class SnowflakeV2Sink extends CopySink {
/*
* Copy sink type.
*/
private String type = "SnowflakeV2Sink";
/*
* SQL pre-copy script. Type: string (or Expression with resultType string).
*/
private Object preCopyScript;
/*
* Snowflake import settings.
*/
private SnowflakeImportCopyCommand importSettings;
/**
* Creates an instance of SnowflakeV2Sink class.
*/
public SnowflakeV2Sink() {
}
/**
* Get the type property: Copy sink type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the preCopyScript property: SQL pre-copy script. Type: string (or Expression with resultType string).
*
* @return the preCopyScript value.
*/
public Object preCopyScript() {
return this.preCopyScript;
}
/**
* Set the preCopyScript property: SQL pre-copy script. Type: string (or Expression with resultType string).
*
* @param preCopyScript the preCopyScript value to set.
* @return the SnowflakeV2Sink object itself.
*/
public SnowflakeV2Sink withPreCopyScript(Object preCopyScript) {
this.preCopyScript = preCopyScript;
return this;
}
/**
* Get the importSettings property: Snowflake import settings.
*
* @return the importSettings value.
*/
public SnowflakeImportCopyCommand importSettings() {
return this.importSettings;
}
/**
* Set the importSettings property: Snowflake import settings.
*
* @param importSettings the importSettings value to set.
* @return the SnowflakeV2Sink object itself.
*/
public SnowflakeV2Sink withImportSettings(SnowflakeImportCopyCommand importSettings) {
this.importSettings = importSettings;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withWriteBatchSize(Object writeBatchSize) {
super.withWriteBatchSize(writeBatchSize);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withWriteBatchTimeout(Object writeBatchTimeout) {
super.withWriteBatchTimeout(writeBatchTimeout);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withSinkRetryCount(Object sinkRetryCount) {
super.withSinkRetryCount(sinkRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withSinkRetryWait(Object sinkRetryWait) {
super.withSinkRetryWait(sinkRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SnowflakeV2Sink withDisableMetricsCollection(Object disableMetricsCollection) {
super.withDisableMetricsCollection(disableMetricsCollection);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (importSettings() != null) {
importSettings().validate();
}
}
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeUntypedField("writeBatchSize", writeBatchSize());
jsonWriter.writeUntypedField("writeBatchTimeout", writeBatchTimeout());
jsonWriter.writeUntypedField("sinkRetryCount", sinkRetryCount());
jsonWriter.writeUntypedField("sinkRetryWait", sinkRetryWait());
jsonWriter.writeUntypedField("maxConcurrentConnections", maxConcurrentConnections());
jsonWriter.writeUntypedField("disableMetricsCollection", disableMetricsCollection());
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeUntypedField("preCopyScript", this.preCopyScript);
jsonWriter.writeJsonField("importSettings", this.importSettings);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SnowflakeV2Sink from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SnowflakeV2Sink 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 SnowflakeV2Sink.
*/
public static SnowflakeV2Sink fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SnowflakeV2Sink deserializedSnowflakeV2Sink = new SnowflakeV2Sink();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("writeBatchSize".equals(fieldName)) {
deserializedSnowflakeV2Sink.withWriteBatchSize(reader.readUntyped());
} else if ("writeBatchTimeout".equals(fieldName)) {
deserializedSnowflakeV2Sink.withWriteBatchTimeout(reader.readUntyped());
} else if ("sinkRetryCount".equals(fieldName)) {
deserializedSnowflakeV2Sink.withSinkRetryCount(reader.readUntyped());
} else if ("sinkRetryWait".equals(fieldName)) {
deserializedSnowflakeV2Sink.withSinkRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedSnowflakeV2Sink.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedSnowflakeV2Sink.withDisableMetricsCollection(reader.readUntyped());
} else if ("type".equals(fieldName)) {
deserializedSnowflakeV2Sink.type = reader.getString();
} else if ("preCopyScript".equals(fieldName)) {
deserializedSnowflakeV2Sink.preCopyScript = reader.readUntyped();
} else if ("importSettings".equals(fieldName)) {
deserializedSnowflakeV2Sink.importSettings = SnowflakeImportCopyCommand.fromJson(reader);
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedSnowflakeV2Sink.withAdditionalProperties(additionalProperties);
return deserializedSnowflakeV2Sink;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy