
com.azure.resourcemanager.datafactory.models.SapCloudForCustomerSource 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 SAP Cloud for Customer source.
*/
@Fluent
public final class SapCloudForCustomerSource extends TabularSource {
/*
* Copy source type.
*/
private String type = "SapCloudForCustomerSource";
/*
* SAP Cloud for Customer OData query. For example, "$top=1". Type: string (or Expression with resultType string).
*/
private Object query;
/*
* The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read
* response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern:
* ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*/
private Object httpRequestTimeout;
/**
* Creates an instance of SapCloudForCustomerSource class.
*/
public SapCloudForCustomerSource() {
}
/**
* Get the type property: Copy source type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the query property: SAP Cloud for Customer OData query. For example, "$top=1". Type: string (or Expression
* with resultType string).
*
* @return the query value.
*/
public Object query() {
return this.query;
}
/**
* Set the query property: SAP Cloud for Customer OData query. For example, "$top=1". Type: string (or Expression
* with resultType string).
*
* @param query the query value to set.
* @return the SapCloudForCustomerSource object itself.
*/
public SapCloudForCustomerSource withQuery(Object query) {
this.query = query;
return this;
}
/**
* Get the httpRequestTimeout property: The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a
* response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with
* resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @return the httpRequestTimeout value.
*/
public Object httpRequestTimeout() {
return this.httpRequestTimeout;
}
/**
* Set the httpRequestTimeout property: The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a
* response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with
* resultType string), pattern: ((\d+)\.)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
*
* @param httpRequestTimeout the httpRequestTimeout value to set.
* @return the SapCloudForCustomerSource object itself.
*/
public SapCloudForCustomerSource withHttpRequestTimeout(Object httpRequestTimeout) {
this.httpRequestTimeout = httpRequestTimeout;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource withQueryTimeout(Object queryTimeout) {
super.withQueryTimeout(queryTimeout);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource withAdditionalColumns(Object additionalColumns) {
super.withAdditionalColumns(additionalColumns);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource withSourceRetryCount(Object sourceRetryCount) {
super.withSourceRetryCount(sourceRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource withSourceRetryWait(Object sourceRetryWait) {
super.withSourceRetryWait(sourceRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SapCloudForCustomerSource 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.writeUntypedField("queryTimeout", queryTimeout());
jsonWriter.writeUntypedField("additionalColumns", additionalColumns());
jsonWriter.writeStringField("type", this.type);
jsonWriter.writeUntypedField("query", this.query);
jsonWriter.writeUntypedField("httpRequestTimeout", this.httpRequestTimeout);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of SapCloudForCustomerSource from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SapCloudForCustomerSource 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 SapCloudForCustomerSource.
*/
public static SapCloudForCustomerSource fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SapCloudForCustomerSource deserializedSapCloudForCustomerSource = new SapCloudForCustomerSource();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("sourceRetryCount".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withSourceRetryCount(reader.readUntyped());
} else if ("sourceRetryWait".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withSourceRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withDisableMetricsCollection(reader.readUntyped());
} else if ("queryTimeout".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withQueryTimeout(reader.readUntyped());
} else if ("additionalColumns".equals(fieldName)) {
deserializedSapCloudForCustomerSource.withAdditionalColumns(reader.readUntyped());
} else if ("type".equals(fieldName)) {
deserializedSapCloudForCustomerSource.type = reader.getString();
} else if ("query".equals(fieldName)) {
deserializedSapCloudForCustomerSource.query = reader.readUntyped();
} else if ("httpRequestTimeout".equals(fieldName)) {
deserializedSapCloudForCustomerSource.httpRequestTimeout = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedSapCloudForCustomerSource.withAdditionalProperties(additionalProperties);
return deserializedSapCloudForCustomerSource;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy