com.pulumi.azurenative.security.outputs.RemediationEtaResponse 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.security.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
@CustomType
public final class RemediationEtaResponse {
/**
* @return ETA for remediation.
*
*/
private String eta;
/**
* @return Justification for change of Eta.
*
*/
private String justification;
private RemediationEtaResponse() {}
/**
* @return ETA for remediation.
*
*/
public String eta() {
return this.eta;
}
/**
* @return Justification for change of Eta.
*
*/
public String justification() {
return this.justification;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RemediationEtaResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private String eta;
private String justification;
public Builder() {}
public Builder(RemediationEtaResponse defaults) {
Objects.requireNonNull(defaults);
this.eta = defaults.eta;
this.justification = defaults.justification;
}
@CustomType.Setter
public Builder eta(String eta) {
if (eta == null) {
throw new MissingRequiredPropertyException("RemediationEtaResponse", "eta");
}
this.eta = eta;
return this;
}
@CustomType.Setter
public Builder justification(String justification) {
if (justification == null) {
throw new MissingRequiredPropertyException("RemediationEtaResponse", "justification");
}
this.justification = justification;
return this;
}
public RemediationEtaResponse build() {
final var _resultValue = new RemediationEtaResponse();
_resultValue.eta = eta;
_resultValue.justification = justification;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy