
com.azure.resourcemanager.datafactory.models.ServiceNowV2Source 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 ServiceNowV2 server source.
*/
@Fluent
public final class ServiceNowV2Source extends TabularSource {
/*
* Copy source type.
*/
private String type = "ServiceNowV2Source";
/*
* Expression to filter data from source.
*/
private ExpressionV2 expression;
/*
* Page size of the result. Type: integer (or Expression with resultType integer).
*/
private Object pageSize;
/**
* Creates an instance of ServiceNowV2Source class.
*/
public ServiceNowV2Source() {
}
/**
* Get the type property: Copy source type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the expression property: Expression to filter data from source.
*
* @return the expression value.
*/
public ExpressionV2 expression() {
return this.expression;
}
/**
* Set the expression property: Expression to filter data from source.
*
* @param expression the expression value to set.
* @return the ServiceNowV2Source object itself.
*/
public ServiceNowV2Source withExpression(ExpressionV2 expression) {
this.expression = expression;
return this;
}
/**
* Get the pageSize property: Page size of the result. Type: integer (or Expression with resultType integer).
*
* @return the pageSize value.
*/
public Object pageSize() {
return this.pageSize;
}
/**
* Set the pageSize property: Page size of the result. Type: integer (or Expression with resultType integer).
*
* @param pageSize the pageSize value to set.
* @return the ServiceNowV2Source object itself.
*/
public ServiceNowV2Source withPageSize(Object pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source withQueryTimeout(Object queryTimeout) {
super.withQueryTimeout(queryTimeout);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source withAdditionalColumns(Object additionalColumns) {
super.withAdditionalColumns(additionalColumns);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source withSourceRetryCount(Object sourceRetryCount) {
super.withSourceRetryCount(sourceRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source withSourceRetryWait(Object sourceRetryWait) {
super.withSourceRetryWait(sourceRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ServiceNowV2Source 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 (expression() != null) {
expression().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.writeUntypedField("queryTimeout", queryTimeout());
jsonWriter.writeUntypedField("additionalColumns", additionalColumns());
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeJsonField("expression", this.expression);
jsonWriter.writeUntypedField("pageSize", this.pageSize);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ServiceNowV2Source from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ServiceNowV2Source 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 ServiceNowV2Source.
*/
public static ServiceNowV2Source fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ServiceNowV2Source deserializedServiceNowV2Source = new ServiceNowV2Source();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("sourceRetryCount".equals(fieldName)) {
deserializedServiceNowV2Source.withSourceRetryCount(reader.readUntyped());
} else if ("sourceRetryWait".equals(fieldName)) {
deserializedServiceNowV2Source.withSourceRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedServiceNowV2Source.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedServiceNowV2Source.withDisableMetricsCollection(reader.readUntyped());
} else if ("queryTimeout".equals(fieldName)) {
deserializedServiceNowV2Source.withQueryTimeout(reader.readUntyped());
} else if ("additionalColumns".equals(fieldName)) {
deserializedServiceNowV2Source.withAdditionalColumns(reader.readUntyped());
} else if ("type".equals(fieldName)) {
deserializedServiceNowV2Source.type = reader.getString();
} else if ("expression".equals(fieldName)) {
deserializedServiceNowV2Source.expression = ExpressionV2.fromJson(reader);
} else if ("pageSize".equals(fieldName)) {
deserializedServiceNowV2Source.pageSize = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedServiceNowV2Source.withAdditionalProperties(additionalProperties);
return deserializedServiceNowV2Source;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy