
com.pulumi.azurenative.datafactory.outputs.IntegrationRuntimeVNetPropertiesResponse 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.core.annotations.CustomType;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class IntegrationRuntimeVNetPropertiesResponse {
/**
* @return Resource IDs of the public IP addresses that this integration runtime will use.
*
*/
private @Nullable List publicIPs;
/**
* @return The name of the subnet this integration runtime will join.
*
*/
private @Nullable String subnet;
/**
* @return The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
*
*/
private @Nullable String subnetId;
/**
* @return The ID of the VNet that this integration runtime will join.
*
*/
private @Nullable String vNetId;
private IntegrationRuntimeVNetPropertiesResponse() {}
/**
* @return Resource IDs of the public IP addresses that this integration runtime will use.
*
*/
public List publicIPs() {
return this.publicIPs == null ? List.of() : this.publicIPs;
}
/**
* @return The name of the subnet this integration runtime will join.
*
*/
public Optional subnet() {
return Optional.ofNullable(this.subnet);
}
/**
* @return The ID of subnet, to which this Azure-SSIS integration runtime will be joined.
*
*/
public Optional subnetId() {
return Optional.ofNullable(this.subnetId);
}
/**
* @return The ID of the VNet that this integration runtime will join.
*
*/
public Optional vNetId() {
return Optional.ofNullable(this.vNetId);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(IntegrationRuntimeVNetPropertiesResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable List publicIPs;
private @Nullable String subnet;
private @Nullable String subnetId;
private @Nullable String vNetId;
public Builder() {}
public Builder(IntegrationRuntimeVNetPropertiesResponse defaults) {
Objects.requireNonNull(defaults);
this.publicIPs = defaults.publicIPs;
this.subnet = defaults.subnet;
this.subnetId = defaults.subnetId;
this.vNetId = defaults.vNetId;
}
@CustomType.Setter
public Builder publicIPs(@Nullable List publicIPs) {
this.publicIPs = publicIPs;
return this;
}
public Builder publicIPs(String... publicIPs) {
return publicIPs(List.of(publicIPs));
}
@CustomType.Setter
public Builder subnet(@Nullable String subnet) {
this.subnet = subnet;
return this;
}
@CustomType.Setter
public Builder subnetId(@Nullable String subnetId) {
this.subnetId = subnetId;
return this;
}
@CustomType.Setter
public Builder vNetId(@Nullable String vNetId) {
this.vNetId = vNetId;
return this;
}
public IntegrationRuntimeVNetPropertiesResponse build() {
final var _resultValue = new IntegrationRuntimeVNetPropertiesResponse();
_resultValue.publicIPs = publicIPs;
_resultValue.subnet = subnet;
_resultValue.subnetId = subnetId;
_resultValue.vNetId = vNetId;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy