
com.azure.resourcemanager.datafactory.models.ExecuteDataFlowActivity 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 com.azure.resourcemanager.datafactory.fluent.models.ExecuteDataFlowActivityTypeProperties;
import java.io.IOException;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
/**
* Execute data flow activity.
*/
@Fluent
public final class ExecuteDataFlowActivity extends ExecutionActivity {
/*
* Type of activity.
*/
private String type = "ExecuteDataFlow";
/*
* Execute data flow activity properties.
*/
private ExecuteDataFlowActivityTypeProperties innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
/**
* Creates an instance of ExecuteDataFlowActivity class.
*/
public ExecuteDataFlowActivity() {
}
/**
* Get the type property: Type of activity.
*
* @return the type value.
*/
@Override
public String type() {
return this.type;
}
/**
* Get the innerTypeProperties property: Execute data flow activity properties.
*
* @return the innerTypeProperties value.
*/
private ExecuteDataFlowActivityTypeProperties innerTypeProperties() {
return this.innerTypeProperties;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withLinkedServiceName(LinkedServiceReference linkedServiceName) {
super.withLinkedServiceName(linkedServiceName);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withPolicy(ActivityPolicy policy) {
super.withPolicy(policy);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withName(String name) {
super.withName(name);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withDescription(String description) {
super.withDescription(description);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withState(ActivityState state) {
super.withState(state);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withOnInactiveMarkAs(ActivityOnInactiveMarkAs onInactiveMarkAs) {
super.withOnInactiveMarkAs(onInactiveMarkAs);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withDependsOn(List dependsOn) {
super.withDependsOn(dependsOn);
return this;
}
/**
* {@inheritDoc}
*/
@Override
public ExecuteDataFlowActivity withUserProperties(List userProperties) {
super.withUserProperties(userProperties);
return this;
}
/**
* Get the dataFlow property: Data flow reference.
*
* @return the dataFlow value.
*/
public DataFlowReference dataFlow() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().dataFlow();
}
/**
* Set the dataFlow property: Data flow reference.
*
* @param dataFlow the dataFlow value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withDataFlow(DataFlowReference dataFlow) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withDataFlow(dataFlow);
return this;
}
/**
* Get the staging property: Staging info for execute data flow activity.
*
* @return the staging value.
*/
public DataFlowStagingInfo staging() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().staging();
}
/**
* Set the staging property: Staging info for execute data flow activity.
*
* @param staging the staging value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withStaging(DataFlowStagingInfo staging) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withStaging(staging);
return this;
}
/**
* Get the integrationRuntime property: The integration runtime reference.
*
* @return the integrationRuntime value.
*/
public IntegrationRuntimeReference integrationRuntime() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().integrationRuntime();
}
/**
* Set the integrationRuntime property: The integration runtime reference.
*
* @param integrationRuntime the integrationRuntime value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withIntegrationRuntime(IntegrationRuntimeReference integrationRuntime) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withIntegrationRuntime(integrationRuntime);
return this;
}
/**
* Get the continuationSettings property: Continuation settings for execute data flow activity.
*
* @return the continuationSettings value.
*/
public ContinuationSettingsReference continuationSettings() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().continuationSettings();
}
/**
* Set the continuationSettings property: Continuation settings for execute data flow activity.
*
* @param continuationSettings the continuationSettings value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withContinuationSettings(ContinuationSettingsReference continuationSettings) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withContinuationSettings(continuationSettings);
return this;
}
/**
* Get the compute property: Compute properties for data flow activity.
*
* @return the compute value.
*/
public ExecuteDataFlowActivityTypePropertiesCompute compute() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().compute();
}
/**
* Set the compute property: Compute properties for data flow activity.
*
* @param compute the compute value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withCompute(ExecuteDataFlowActivityTypePropertiesCompute compute) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withCompute(compute);
return this;
}
/**
* Get the traceLevel property: Trace level setting used for data flow monitoring output. Supported values are:
* 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string).
*
* @return the traceLevel value.
*/
public Object traceLevel() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().traceLevel();
}
/**
* Set the traceLevel property: Trace level setting used for data flow monitoring output. Supported values are:
* 'coarse', 'fine', and 'none'. Type: string (or Expression with resultType string).
*
* @param traceLevel the traceLevel value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withTraceLevel(Object traceLevel) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withTraceLevel(traceLevel);
return this;
}
/**
* Get the continueOnError property: Continue on error setting used for data flow execution. Enables processing to
* continue if a sink fails. Type: boolean (or Expression with resultType boolean).
*
* @return the continueOnError value.
*/
public Object continueOnError() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().continueOnError();
}
/**
* Set the continueOnError property: Continue on error setting used for data flow execution. Enables processing to
* continue if a sink fails. Type: boolean (or Expression with resultType boolean).
*
* @param continueOnError the continueOnError value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withContinueOnError(Object continueOnError) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withContinueOnError(continueOnError);
return this;
}
/**
* Get the runConcurrently property: Concurrent run setting used for data flow execution. Allows sinks with the same
* save order to be processed concurrently. Type: boolean (or Expression with resultType boolean).
*
* @return the runConcurrently value.
*/
public Object runConcurrently() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().runConcurrently();
}
/**
* Set the runConcurrently property: Concurrent run setting used for data flow execution. Allows sinks with the same
* save order to be processed concurrently. Type: boolean (or Expression with resultType boolean).
*
* @param runConcurrently the runConcurrently value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withRunConcurrently(Object runConcurrently) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withRunConcurrently(runConcurrently);
return this;
}
/**
* Get the sourceStagingConcurrency property: Specify number of parallel staging for sources applicable to the sink.
* Type: integer (or Expression with resultType integer).
*
* @return the sourceStagingConcurrency value.
*/
public Object sourceStagingConcurrency() {
return this.innerTypeProperties() == null ? null : this.innerTypeProperties().sourceStagingConcurrency();
}
/**
* Set the sourceStagingConcurrency property: Specify number of parallel staging for sources applicable to the sink.
* Type: integer (or Expression with resultType integer).
*
* @param sourceStagingConcurrency the sourceStagingConcurrency value to set.
* @return the ExecuteDataFlowActivity object itself.
*/
public ExecuteDataFlowActivity withSourceStagingConcurrency(Object sourceStagingConcurrency) {
if (this.innerTypeProperties() == null) {
this.innerTypeProperties = new ExecuteDataFlowActivityTypeProperties();
}
this.innerTypeProperties().withSourceStagingConcurrency(sourceStagingConcurrency);
return this;
}
/**
* Validates the instance.
*
* @throws IllegalArgumentException thrown if the instance is not valid.
*/
@Override
public void validate() {
if (innerTypeProperties() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException(
"Missing required property innerTypeProperties in model ExecuteDataFlowActivity"));
} else {
innerTypeProperties().validate();
}
if (name() == null) {
throw LOGGER.atError()
.log(new IllegalArgumentException("Missing required property name in model ExecuteDataFlowActivity"));
}
if (dependsOn() != null) {
dependsOn().forEach(e -> e.validate());
}
if (userProperties() != null) {
userProperties().forEach(e -> e.validate());
}
if (linkedServiceName() != null) {
linkedServiceName().validate();
}
if (policy() != null) {
policy().validate();
}
}
private static final ClientLogger LOGGER = new ClientLogger(ExecuteDataFlowActivity.class);
/**
* {@inheritDoc}
*/
@Override
public JsonWriter toJson(JsonWriter jsonWriter) throws IOException {
jsonWriter.writeStartObject();
jsonWriter.writeStringField("name", name());
jsonWriter.writeStringField("description", description());
jsonWriter.writeStringField("state", state() == null ? null : state().toString());
jsonWriter.writeStringField("onInactiveMarkAs",
onInactiveMarkAs() == null ? null : onInactiveMarkAs().toString());
jsonWriter.writeArrayField("dependsOn", dependsOn(), (writer, element) -> writer.writeJson(element));
jsonWriter.writeArrayField("userProperties", userProperties(), (writer, element) -> writer.writeJson(element));
jsonWriter.writeJsonField("linkedServiceName", linkedServiceName());
jsonWriter.writeJsonField("policy", policy());
jsonWriter.writeJsonField("typeProperties", this.innerTypeProperties);
jsonWriter.writeStringField("type", this.type);
if (additionalProperties() != null) {
for (Map.Entry additionalProperty : additionalProperties().entrySet()) {
jsonWriter.writeUntypedField(additionalProperty.getKey(), additionalProperty.getValue());
}
}
return jsonWriter.writeEndObject();
}
/**
* Reads an instance of ExecuteDataFlowActivity from the JsonReader.
*
* @param jsonReader The JsonReader being read.
* @return An instance of ExecuteDataFlowActivity 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 ExecuteDataFlowActivity.
*/
public static ExecuteDataFlowActivity fromJson(JsonReader jsonReader) throws IOException {
return jsonReader.readObject(reader -> {
ExecuteDataFlowActivity deserializedExecuteDataFlowActivity = new ExecuteDataFlowActivity();
Map additionalProperties = null;
while (reader.nextToken() != JsonToken.END_OBJECT) {
String fieldName = reader.getFieldName();
reader.nextToken();
if ("name".equals(fieldName)) {
deserializedExecuteDataFlowActivity.withName(reader.getString());
} else if ("description".equals(fieldName)) {
deserializedExecuteDataFlowActivity.withDescription(reader.getString());
} else if ("state".equals(fieldName)) {
deserializedExecuteDataFlowActivity.withState(ActivityState.fromString(reader.getString()));
} else if ("onInactiveMarkAs".equals(fieldName)) {
deserializedExecuteDataFlowActivity
.withOnInactiveMarkAs(ActivityOnInactiveMarkAs.fromString(reader.getString()));
} else if ("dependsOn".equals(fieldName)) {
List dependsOn
= reader.readArray(reader1 -> ActivityDependency.fromJson(reader1));
deserializedExecuteDataFlowActivity.withDependsOn(dependsOn);
} else if ("userProperties".equals(fieldName)) {
List userProperties = reader.readArray(reader1 -> UserProperty.fromJson(reader1));
deserializedExecuteDataFlowActivity.withUserProperties(userProperties);
} else if ("linkedServiceName".equals(fieldName)) {
deserializedExecuteDataFlowActivity.withLinkedServiceName(LinkedServiceReference.fromJson(reader));
} else if ("policy".equals(fieldName)) {
deserializedExecuteDataFlowActivity.withPolicy(ActivityPolicy.fromJson(reader));
} else if ("typeProperties".equals(fieldName)) {
deserializedExecuteDataFlowActivity.innerTypeProperties
= ExecuteDataFlowActivityTypeProperties.fromJson(reader);
} else if ("type".equals(fieldName)) {
deserializedExecuteDataFlowActivity.type = reader.getString();
} else {
if (additionalProperties == null) {
additionalProperties = new LinkedHashMap<>();
}
additionalProperties.put(fieldName, reader.readUntyped());
}
}
deserializedExecuteDataFlowActivity.withAdditionalProperties(additionalProperties);
return deserializedExecuteDataFlowActivity;
});
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy