com.pulumi.azurenative.datafactory.outputs.DataLakeAnalyticsUSQLActivityResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.datafactory.outputs;
import com.pulumi.azurenative.datafactory.outputs.ActivityDependencyResponse;
import com.pulumi.azurenative.datafactory.outputs.ActivityPolicyResponse;
import com.pulumi.azurenative.datafactory.outputs.LinkedServiceReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.UserPropertyResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class DataLakeAnalyticsUSQLActivityResponse {
/**
* @return Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object compilationMode;
/**
* @return The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
*
*/
private @Nullable Object degreeOfParallelism;
/**
* @return Activity depends on condition.
*
*/
private @Nullable List dependsOn;
/**
* @return Activity description.
*
*/
private @Nullable String description;
/**
* @return Linked service reference.
*
*/
private @Nullable LinkedServiceReferenceResponse linkedServiceName;
/**
* @return Activity name.
*
*/
private String name;
/**
* @return Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
*
*/
private @Nullable String onInactiveMarkAs;
/**
* @return Parameters for U-SQL job request.
*
*/
private @Nullable Map parameters;
/**
* @return Activity policy.
*
*/
private @Nullable ActivityPolicyResponse policy;
/**
* @return Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
*
*/
private @Nullable Object priority;
/**
* @return Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
*
*/
private @Nullable Object runtimeVersion;
/**
* @return Script linked service reference.
*
*/
private LinkedServiceReferenceResponse scriptLinkedService;
/**
* @return Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
*
*/
private Object scriptPath;
/**
* @return Activity state. This is an optional property and if not provided, the state will be Active by default.
*
*/
private @Nullable String state;
/**
* @return Type of activity.
* Expected value is 'DataLakeAnalyticsU-SQL'.
*
*/
private String type;
/**
* @return Activity user properties.
*
*/
private @Nullable List userProperties;
private DataLakeAnalyticsUSQLActivityResponse() {}
/**
* @return Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy