com.pulumi.kubernetes.storagemigration.v1alpha1.outputs.MigrationCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kubernetes Show documentation
Show all versions of kubernetes Show documentation
A Pulumi package for creating and managing Kubernetes 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.kubernetes.storagemigration.v1alpha1.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
@CustomType
public final class MigrationCondition {
/**
* @return The last time this condition was updated.
*
*/
private @Nullable String lastUpdateTime;
/**
* @return A human readable message indicating details about the transition.
*
*/
private @Nullable String message;
/**
* @return The reason for the condition's last transition.
*
*/
private @Nullable String reason;
/**
* @return Status of the condition, one of True, False, Unknown.
*
*/
private String status;
/**
* @return Type of the condition.
*
*/
private String type;
private MigrationCondition() {}
/**
* @return The last time this condition was updated.
*
*/
public Optional lastUpdateTime() {
return Optional.ofNullable(this.lastUpdateTime);
}
/**
* @return A human readable message indicating details about the transition.
*
*/
public Optional message() {
return Optional.ofNullable(this.message);
}
/**
* @return The reason for the condition's last transition.
*
*/
public Optional reason() {
return Optional.ofNullable(this.reason);
}
/**
* @return Status of the condition, one of True, False, Unknown.
*
*/
public String status() {
return this.status;
}
/**
* @return Type of the condition.
*
*/
public String type() {
return this.type;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(MigrationCondition defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String lastUpdateTime;
private @Nullable String message;
private @Nullable String reason;
private String status;
private String type;
public Builder() {}
public Builder(MigrationCondition defaults) {
Objects.requireNonNull(defaults);
this.lastUpdateTime = defaults.lastUpdateTime;
this.message = defaults.message;
this.reason = defaults.reason;
this.status = defaults.status;
this.type = defaults.type;
}
@CustomType.Setter
public Builder lastUpdateTime(@Nullable String lastUpdateTime) {
this.lastUpdateTime = lastUpdateTime;
return this;
}
@CustomType.Setter
public Builder message(@Nullable String message) {
this.message = message;
return this;
}
@CustomType.Setter
public Builder reason(@Nullable String reason) {
this.reason = reason;
return this;
}
@CustomType.Setter
public Builder status(String status) {
if (status == null) {
throw new MissingRequiredPropertyException("MigrationCondition", "status");
}
this.status = status;
return this;
}
@CustomType.Setter
public Builder type(String type) {
if (type == null) {
throw new MissingRequiredPropertyException("MigrationCondition", "type");
}
this.type = type;
return this;
}
public MigrationCondition build() {
final var _resultValue = new MigrationCondition();
_resultValue.lastUpdateTime = lastUpdateTime;
_resultValue.message = message;
_resultValue.reason = reason;
_resultValue.status = status;
_resultValue.type = type;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy