
com.pulumi.azurenative.datafactory.outputs.IntegrationRuntimeDataProxyPropertiesResponse Maven / Gradle / Ivy
// *** 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.EntityReferenceResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IntegrationRuntimeDataProxyPropertiesResponse {
/**
* @return The self-hosted integration runtime reference.
*
*/
private @Nullable EntityReferenceResponse connectVia;
/**
* @return The path to contain the staged data in the Blob storage.
*
*/
private @Nullable String path;
/**
* @return The staging linked service reference.
*
*/
private @Nullable EntityReferenceResponse stagingLinkedService;
private IntegrationRuntimeDataProxyPropertiesResponse() {}
/**
* @return The self-hosted integration runtime reference.
*
*/
public Optional connectVia() {
return Optional.ofNullable(this.connectVia);
}
/**
* @return The path to contain the staged data in the Blob storage.
*
*/
public Optional path() {
return Optional.ofNullable(this.path);
}
/**
* @return The staging linked service reference.
*
*/
public Optional stagingLinkedService() {
return Optional.ofNullable(this.stagingLinkedService);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationRuntimeDataProxyPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable EntityReferenceResponse connectVia;
private @Nullable String path;
private @Nullable EntityReferenceResponse stagingLinkedService;
public Builder() {}
public Builder(IntegrationRuntimeDataProxyPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.connectVia = defaults.connectVia;
this.path = defaults.path;
this.stagingLinkedService = defaults.stagingLinkedService;
}
@CustomType.Setter
public Builder connectVia(@Nullable EntityReferenceResponse connectVia) {
this.connectVia = connectVia;
return this;
}
@CustomType.Setter
public Builder path(@Nullable String path) {
this.path = path;
return this;
}
@CustomType.Setter
public Builder stagingLinkedService(@Nullable EntityReferenceResponse stagingLinkedService) {
this.stagingLinkedService = stagingLinkedService;
return this;
}
public IntegrationRuntimeDataProxyPropertiesResponse build() {
final var _resultValue = new IntegrationRuntimeDataProxyPropertiesResponse();
_resultValue.connectVia = connectVia;
_resultValue.path = path;
_resultValue.stagingLinkedService = stagingLinkedService;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy