
com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeComputePropertiesResponse 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.synapse.outputs;
import com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeDataFlowPropertiesResponse;
import com.pulumi.azurenative.synapse.outputs.IntegrationRuntimeVNetPropertiesResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IntegrationRuntimeComputePropertiesResponse {
/**
* @return Data flow properties for managed integration runtime.
*
*/
private @Nullable IntegrationRuntimeDataFlowPropertiesResponse dataFlowProperties;
/**
* @return The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
*
*/
private @Nullable String location;
/**
* @return Maximum parallel executions count per node for managed integration runtime.
*
*/
private @Nullable Integer maxParallelExecutionsPerNode;
/**
* @return The node size requirement to managed integration runtime.
*
*/
private @Nullable String nodeSize;
/**
* @return The required number of nodes for managed integration runtime.
*
*/
private @Nullable Integer numberOfNodes;
/**
* @return VNet properties for managed integration runtime.
*
*/
private @Nullable IntegrationRuntimeVNetPropertiesResponse vNetProperties;
private IntegrationRuntimeComputePropertiesResponse() {}
/**
* @return Data flow properties for managed integration runtime.
*
*/
public Optional dataFlowProperties() {
return Optional.ofNullable(this.dataFlowProperties);
}
/**
* @return The location for managed integration runtime. The supported regions could be found on https://docs.microsoft.com/en-us/azure/data-factory/data-factory-data-movement-activities
*
*/
public Optional location() {
return Optional.ofNullable(this.location);
}
/**
* @return Maximum parallel executions count per node for managed integration runtime.
*
*/
public Optional maxParallelExecutionsPerNode() {
return Optional.ofNullable(this.maxParallelExecutionsPerNode);
}
/**
* @return The node size requirement to managed integration runtime.
*
*/
public Optional nodeSize() {
return Optional.ofNullable(this.nodeSize);
}
/**
* @return The required number of nodes for managed integration runtime.
*
*/
public Optional numberOfNodes() {
return Optional.ofNullable(this.numberOfNodes);
}
/**
* @return VNet properties for managed integration runtime.
*
*/
public Optional vNetProperties() {
return Optional.ofNullable(this.vNetProperties);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationRuntimeComputePropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable IntegrationRuntimeDataFlowPropertiesResponse dataFlowProperties;
private @Nullable String location;
private @Nullable Integer maxParallelExecutionsPerNode;
private @Nullable String nodeSize;
private @Nullable Integer numberOfNodes;
private @Nullable IntegrationRuntimeVNetPropertiesResponse vNetProperties;
public Builder() {}
public Builder(IntegrationRuntimeComputePropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.dataFlowProperties = defaults.dataFlowProperties;
this.location = defaults.location;
this.maxParallelExecutionsPerNode = defaults.maxParallelExecutionsPerNode;
this.nodeSize = defaults.nodeSize;
this.numberOfNodes = defaults.numberOfNodes;
this.vNetProperties = defaults.vNetProperties;
}
@CustomType.Setter
public Builder dataFlowProperties(@Nullable IntegrationRuntimeDataFlowPropertiesResponse dataFlowProperties) {
this.dataFlowProperties = dataFlowProperties;
return this;
}
@CustomType.Setter
public Builder location(@Nullable String location) {
this.location = location;
return this;
}
@CustomType.Setter
public Builder maxParallelExecutionsPerNode(@Nullable Integer maxParallelExecutionsPerNode) {
this.maxParallelExecutionsPerNode = maxParallelExecutionsPerNode;
return this;
}
@CustomType.Setter
public Builder nodeSize(@Nullable String nodeSize) {
this.nodeSize = nodeSize;
return this;
}
@CustomType.Setter
public Builder numberOfNodes(@Nullable Integer numberOfNodes) {
this.numberOfNodes = numberOfNodes;
return this;
}
@CustomType.Setter
public Builder vNetProperties(@Nullable IntegrationRuntimeVNetPropertiesResponse vNetProperties) {
this.vNetProperties = vNetProperties;
return this;
}
public IntegrationRuntimeComputePropertiesResponse build() {
final var _resultValue = new IntegrationRuntimeComputePropertiesResponse();
_resultValue.dataFlowProperties = dataFlowProperties;
_resultValue.location = location;
_resultValue.maxParallelExecutionsPerNode = maxParallelExecutionsPerNode;
_resultValue.nodeSize = nodeSize;
_resultValue.numberOfNodes = numberOfNodes;
_resultValue.vNetProperties = vNetProperties;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy