
com.azure.resourcemanager.datafactory.models.AzureDataExplorerSource 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.core.util.logging.ClientLogger;
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 Azure Data Explorer (Kusto) source.
*/
@Fluent
public final class AzureDataExplorerSource extends CopySource {
/*
* Copy source type.
*/
private String type = "AzureDataExplorerSource";
/*
* Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType
* string).
*/
private Object query;
/*
* The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a
* certain row-count limit.
*/
private Object noTruncation;
/*
* Query timeout. Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
*/
private Object queryTimeout;
/*
* 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 AzureDataExplorerSource class.
*/
public AzureDataExplorerSource() {
}
/**
* Get the type property: Copy source type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the query property: Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression
* with resultType string).
*
* @return the query value.
*/
public Object query() {
return this.query;
}
/**
* Set the query property: Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression
* with resultType string).
*
* @param query the query value to set.
* @return the AzureDataExplorerSource object itself.
*/
public AzureDataExplorerSource withQuery(Object query) {
this.query = query;
return this;
}
/**
* Get the noTruncation property: The name of the Boolean option that controls whether truncation is applied to
* result-sets that go beyond a certain row-count limit.
*
* @return the noTruncation value.
*/
public Object noTruncation() {
return this.noTruncation;
}
/**
* Set the noTruncation property: The name of the Boolean option that controls whether truncation is applied to
* result-sets that go beyond a certain row-count limit.
*
* @param noTruncation the noTruncation value to set.
* @return the AzureDataExplorerSource object itself.
*/
public AzureDataExplorerSource withNoTruncation(Object noTruncation) {
this.noTruncation = noTruncation;
return this;
}
/**
* Get the queryTimeout property: Query timeout. Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
*
* @return the queryTimeout value.
*/
public Object queryTimeout() {
return this.queryTimeout;
}
/**
* Set the queryTimeout property: Query timeout. Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
*
* @param queryTimeout the queryTimeout value to set.
* @return the AzureDataExplorerSource object itself.
*/
public AzureDataExplorerSource withQueryTimeout(Object queryTimeout) {
this.queryTimeout = queryTimeout;
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 AzureDataExplorerSource object itself.
*/
public AzureDataExplorerSource withAdditionalColumns(Object additionalColumns) {
this.additionalColumns = additionalColumns;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureDataExplorerSource withSourceRetryCount(Object sourceRetryCount) {
super.withSourceRetryCount(sourceRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureDataExplorerSource withSourceRetryWait(Object sourceRetryWait) {
super.withSourceRetryWait(sourceRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureDataExplorerSource withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public AzureDataExplorerSource 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 (query() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property query in model AzureDataExplorerSource"));
}
}
private static final ClientLogger LOGGER = new ClientLogger(AzureDataExplorerSource.class);
/**
* {@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.writeUntypedField("query", this.query);
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeUntypedField("noTruncation", this.noTruncation);
jsonWriter.writeUntypedField("queryTimeout", this.queryTimeout);
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 AzureDataExplorerSource from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of AzureDataExplorerSource 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 any required properties.
* @throws IOException If an error occurs while reading the AzureDataExplorerSource.
*/
public static AzureDataExplorerSource fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
AzureDataExplorerSource deserializedAzureDataExplorerSource = new AzureDataExplorerSource();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("sourceRetryCount".equals(fieldName)) {
deserializedAzureDataExplorerSource.withSourceRetryCount(reader.readUntyped());
} else if ("sourceRetryWait".equals(fieldName)) {
deserializedAzureDataExplorerSource.withSourceRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedAzureDataExplorerSource.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedAzureDataExplorerSource.withDisableMetricsCollection(reader.readUntyped());
} else if ("query".equals(fieldName)) {
deserializedAzureDataExplorerSource.query = reader.readUntyped();
} else if ("type".equals(fieldName)) {
deserializedAzureDataExplorerSource.type = reader.getString();
} else if ("noTruncation".equals(fieldName)) {
deserializedAzureDataExplorerSource.noTruncation = reader.readUntyped();
} else if ("queryTimeout".equals(fieldName)) {
deserializedAzureDataExplorerSource.queryTimeout = reader.readUntyped();
} else if ("additionalColumns".equals(fieldName)) {
deserializedAzureDataExplorerSource.additionalColumns = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedAzureDataExplorerSource.withAdditionalProperties(additionalProperties);
return deserializedAzureDataExplorerSource;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy