
com.azure.resourcemanager.datafactory.models.LakeHouseTableSource 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 source for Microsoft Fabric LakeHouse Table.
*/
@Fluent
public final class LakeHouseTableSource extends CopySource {
/*
* Copy source type.
*/
private String type = "LakeHouseTableSource";
/*
* Query an older snapshot by timestamp. Type: string (or Expression with resultType string).
*/
private Object timestampAsOf;
/*
* Query an older snapshot by version. Type: integer (or Expression with resultType integer).
*/
private Object versionAsOf;
/*
* Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or
* Expression with resultType array of objects).
*/
private Object additionalColumns;
/**
* Creates an instance of LakeHouseTableSource class.
*/
public LakeHouseTableSource() {
}
/**
* Get the type property: Copy source type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the timestampAsOf property: Query an older snapshot by timestamp. Type: string (or Expression with resultType
* string).
*
* @return the timestampAsOf value.
*/
public Object timestampAsOf() {
return this.timestampAsOf;
}
/**
* Set the timestampAsOf property: Query an older snapshot by timestamp. Type: string (or Expression with resultType
* string).
*
* @param timestampAsOf the timestampAsOf value to set.
* @return the LakeHouseTableSource object itself.
*/
public LakeHouseTableSource withTimestampAsOf(Object timestampAsOf) {
this.timestampAsOf = timestampAsOf;
return this;
}
/**
* Get the versionAsOf property: Query an older snapshot by version. Type: integer (or Expression with resultType
* integer).
*
* @return the versionAsOf value.
*/
public Object versionAsOf() {
return this.versionAsOf;
}
/**
* Set the versionAsOf property: Query an older snapshot by version. Type: integer (or Expression with resultType
* integer).
*
* @param versionAsOf the versionAsOf value to set.
* @return the LakeHouseTableSource object itself.
*/
public LakeHouseTableSource withVersionAsOf(Object versionAsOf) {
this.versionAsOf = versionAsOf;
return this;
}
/**
* Get the additionalColumns property: Specifies the additional columns to be added to source data. Type: array of
* objects(AdditionalColumns) (or Expression with resultType array of objects).
*
* @return the additionalColumns value.
*/
public Object additionalColumns() {
return this.additionalColumns;
}
/**
* Set the additionalColumns property: Specifies the additional columns to be added to source data. Type: array of
* objects(AdditionalColumns) (or Expression with resultType array of objects).
*
* @param additionalColumns the additionalColumns value to set.
* @return the LakeHouseTableSource object itself.
*/
public LakeHouseTableSource withAdditionalColumns(Object additionalColumns) {
this.additionalColumns = additionalColumns;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public LakeHouseTableSource withSourceRetryCount(Object sourceRetryCount) {
super.withSourceRetryCount(sourceRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public LakeHouseTableSource withSourceRetryWait(Object sourceRetryWait) {
super.withSourceRetryWait(sourceRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public LakeHouseTableSource withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public LakeHouseTableSource withDisableMetricsCollection(Object disableMetricsCollection) {
super.withDisableMetricsCollection(disableMetricsCollection);
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.writeUntypedField("sourceRetryCount", sourceRetryCount());
jsonWriter.writeUntypedField("sourceRetryWait", sourceRetryWait());
jsonWriter.writeUntypedField("maxConcurrentConnections", maxConcurrentConnections());
jsonWriter.writeUntypedField("disableMetricsCollection", disableMetricsCollection());
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeUntypedField("timestampAsOf", this.timestampAsOf);
jsonWriter.writeUntypedField("versionAsOf", this.versionAsOf);
jsonWriter.writeUntypedField("additionalColumns", this.additionalColumns);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of LakeHouseTableSource from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of LakeHouseTableSource 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 LakeHouseTableSource.
*/
public static LakeHouseTableSource fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
LakeHouseTableSource deserializedLakeHouseTableSource = new LakeHouseTableSource();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("sourceRetryCount".equals(fieldName)) {
deserializedLakeHouseTableSource.withSourceRetryCount(reader.readUntyped());
} else if ("sourceRetryWait".equals(fieldName)) {
deserializedLakeHouseTableSource.withSourceRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedLakeHouseTableSource.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedLakeHouseTableSource.withDisableMetricsCollection(reader.readUntyped());
} else if ("type".equals(fieldName)) {
deserializedLakeHouseTableSource.type = reader.getString();
} else if ("timestampAsOf".equals(fieldName)) {
deserializedLakeHouseTableSource.timestampAsOf = reader.readUntyped();
} else if ("versionAsOf".equals(fieldName)) {
deserializedLakeHouseTableSource.versionAsOf = reader.readUntyped();
} else if ("additionalColumns".equals(fieldName)) {
deserializedLakeHouseTableSource.additionalColumns = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedLakeHouseTableSource.withAdditionalProperties(additionalProperties);
return deserializedLakeHouseTableSource;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy