
com.azure.resourcemanager.datafactory.models.SalesforceV2Source 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 Salesforce V2 source.
*/
@Fluent
public final class SalesforceV2Source extends TabularSource {
/*
* Copy source type.
*/
private String type = "SalesforceV2Source";
/*
* Deprecating, please use 'query' property instead. Type: string (or Expression with resultType string).
*/
private Object soqlQuery;
/*
* You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL limitations, see this
* article:
* https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations.
* If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset
* will be retrieved. Type: string (or Expression with resultType string).
*/
private Object query;
/*
* This property control whether query result contains Deleted objects. Default is false. Type: boolean (or
* Expression with resultType boolean).
*/
private Object includeDeletedObjects;
/*
* Page size for each http request, too large pageSize will caused timeout, default 300,000. Type: integer (or
* Expression with resultType integer).
*/
private Object pageSize;
/**
* Creates an instance of SalesforceV2Source class.
*/
public SalesforceV2Source() {
}
/**
* Get the type property: Copy source type.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the soqlQuery property: Deprecating, please use 'query' property instead. Type: string (or Expression with
* resultType string).
*
* @return the soqlQuery value.
*/
public Object soqlQuery() {
return this.soqlQuery;
}
/**
* Set the soqlQuery property: Deprecating, please use 'query' property instead. Type: string (or Expression with
* resultType string).
*
* @param soqlQuery the soqlQuery value to set.
* @return the SalesforceV2Source object itself.
*/
public SalesforceV2Source withSoqlQuery(Object soqlQuery) {
this.soqlQuery = soqlQuery;
return this;
}
/**
* Get the query property: You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL
* limitations, see this article:
* https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations.
* If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset
* will be retrieved. Type: string (or Expression with resultType string).
*
* @return the query value.
*/
public Object query() {
return this.query;
}
/**
* Set the query property: You can only use Salesforce Object Query Language (SOQL) query with limitations. For SOQL
* limitations, see this article:
* https://developer.salesforce.com/docs/atlas.en-us.api_asynch.meta/api_asynch/queries.htm#SOQL%20Considerations.
* If query is not specified, all the data of the Salesforce object specified in ObjectApiName/reportId in dataset
* will be retrieved. Type: string (or Expression with resultType string).
*
* @param query the query value to set.
* @return the SalesforceV2Source object itself.
*/
public SalesforceV2Source withQuery(Object query) {
this.query = query;
return this;
}
/**
* Get the includeDeletedObjects property: This property control whether query result contains Deleted objects.
* Default is false. Type: boolean (or Expression with resultType boolean).
*
* @return the includeDeletedObjects value.
*/
public Object includeDeletedObjects() {
return this.includeDeletedObjects;
}
/**
* Set the includeDeletedObjects property: This property control whether query result contains Deleted objects.
* Default is false. Type: boolean (or Expression with resultType boolean).
*
* @param includeDeletedObjects the includeDeletedObjects value to set.
* @return the SalesforceV2Source object itself.
*/
public SalesforceV2Source withIncludeDeletedObjects(Object includeDeletedObjects) {
this.includeDeletedObjects = includeDeletedObjects;
return this;
}
/**
* Get the pageSize property: Page size for each http request, too large pageSize will caused timeout, default
* 300,000. Type: integer (or Expression with resultType integer).
*
* @return the pageSize value.
*/
public Object pageSize() {
return this.pageSize;
}
/**
* Set the pageSize property: Page size for each http request, too large pageSize will caused timeout, default
* 300,000. Type: integer (or Expression with resultType integer).
*
* @param pageSize the pageSize value to set.
* @return the SalesforceV2Source object itself.
*/
public SalesforceV2Source withPageSize(Object pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source withQueryTimeout(Object queryTimeout) {
super.withQueryTimeout(queryTimeout);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source withAdditionalColumns(Object additionalColumns) {
super.withAdditionalColumns(additionalColumns);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source withSourceRetryCount(Object sourceRetryCount) {
super.withSourceRetryCount(sourceRetryCount);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source withSourceRetryWait(Object sourceRetryWait) {
super.withSourceRetryWait(sourceRetryWait);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source withMaxConcurrentConnections(Object maxConcurrentConnections) {
super.withMaxConcurrentConnections(maxConcurrentConnections);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public SalesforceV2Source 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("SOQLQuery", this.soqlQuery);
jsonWriter.writeUntypedField("query", this.query);
jsonWriter.writeUntypedField("includeDeletedObjects", this.includeDeletedObjects);
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 SalesforceV2Source from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of SalesforceV2Source 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 SalesforceV2Source.
*/
public static SalesforceV2Source fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
SalesforceV2Source deserializedSalesforceV2Source = new SalesforceV2Source();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("sourceRetryCount".equals(fieldName)) {
deserializedSalesforceV2Source.withSourceRetryCount(reader.readUntyped());
} else if ("sourceRetryWait".equals(fieldName)) {
deserializedSalesforceV2Source.withSourceRetryWait(reader.readUntyped());
} else if ("maxConcurrentConnections".equals(fieldName)) {
deserializedSalesforceV2Source.withMaxConcurrentConnections(reader.readUntyped());
} else if ("disableMetricsCollection".equals(fieldName)) {
deserializedSalesforceV2Source.withDisableMetricsCollection(reader.readUntyped());
} else if ("queryTimeout".equals(fieldName)) {
deserializedSalesforceV2Source.withQueryTimeout(reader.readUntyped());
} else if ("additionalColumns".equals(fieldName)) {
deserializedSalesforceV2Source.withAdditionalColumns(reader.readUntyped());
} else if ("type".equals(fieldName)) {
deserializedSalesforceV2Source.type = reader.getString();
} else if ("SOQLQuery".equals(fieldName)) {
deserializedSalesforceV2Source.soqlQuery = reader.readUntyped();
} else if ("query".equals(fieldName)) {
deserializedSalesforceV2Source.query = reader.readUntyped();
} else if ("includeDeletedObjects".equals(fieldName)) {
deserializedSalesforceV2Source.includeDeletedObjects = reader.readUntyped();
} else if ("pageSize".equals(fieldName)) {
deserializedSalesforceV2Source.pageSize = reader.readUntyped();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedSalesforceV2Source.withAdditionalProperties(additionalProperties);
return deserializedSalesforceV2Source;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy