
com.pulumi.azurenative.servicelinker.outputs.VNetSolutionResponse 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.servicelinker.outputs;
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 VNetSolutionResponse {
/**
* @return Indicates whether to clean up previous operation when Linker is updating or deleting
*
*/
private @Nullable String deleteOrUpdateBehavior;
/**
* @return Type of VNet solution.
*
*/
private @Nullable String type;
private VNetSolutionResponse() {}
/**
* @return Indicates whether to clean up previous operation when Linker is updating or deleting
*
*/
public Optional deleteOrUpdateBehavior() {
return Optional.ofNullable(this.deleteOrUpdateBehavior);
}
/**
* @return Type of VNet solution.
*
*/
public Optional type() {
return Optional.ofNullable(this.type);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(VNetSolutionResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String deleteOrUpdateBehavior;
private @Nullable String type;
public Builder() {}
public Builder(VNetSolutionResponse defaults) {
Objects.requireNonNull(defaults);
this.deleteOrUpdateBehavior = defaults.deleteOrUpdateBehavior;
this.type = defaults.type;
}
@CustomType.Setter
public Builder deleteOrUpdateBehavior(@Nullable String deleteOrUpdateBehavior) {
this.deleteOrUpdateBehavior = deleteOrUpdateBehavior;
return this;
}
@CustomType.Setter
public Builder type(@Nullable String type) {
this.type = type;
return this;
}
public VNetSolutionResponse build() {
final var _resultValue = new VNetSolutionResponse();
_resultValue.deleteOrUpdateBehavior = deleteOrUpdateBehavior;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy