com.pulumi.azurenative.logic.outputs.RosettaNetPipAcknowledgmentOfReceiptSettingsResponse 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.logic.outputs;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Integer;
import java.util.Objects;
@CustomType
public final class RosettaNetPipAcknowledgmentOfReceiptSettingsResponse {
/**
* @return The non-repudiation is required or not.
*
*/
private Boolean isNonRepudiationRequired;
/**
* @return The time to acknowledge in seconds.
*
*/
private Integer timeToAcknowledgeInSeconds;
private RosettaNetPipAcknowledgmentOfReceiptSettingsResponse() {}
/**
* @return The non-repudiation is required or not.
*
*/
public Boolean isNonRepudiationRequired() {
return this.isNonRepudiationRequired;
}
/**
* @return The time to acknowledge in seconds.
*
*/
public Integer timeToAcknowledgeInSeconds() {
return this.timeToAcknowledgeInSeconds;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RosettaNetPipAcknowledgmentOfReceiptSettingsResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private Boolean isNonRepudiationRequired;
private Integer timeToAcknowledgeInSeconds;
public Builder() {}
public Builder(RosettaNetPipAcknowledgmentOfReceiptSettingsResponse defaults) {
Objects.requireNonNull(defaults);
this.isNonRepudiationRequired = defaults.isNonRepudiationRequired;
this.timeToAcknowledgeInSeconds = defaults.timeToAcknowledgeInSeconds;
}
@CustomType.Setter
public Builder isNonRepudiationRequired(Boolean isNonRepudiationRequired) {
if (isNonRepudiationRequired == null) {
throw new MissingRequiredPropertyException("RosettaNetPipAcknowledgmentOfReceiptSettingsResponse", "isNonRepudiationRequired");
}
this.isNonRepudiationRequired = isNonRepudiationRequired;
return this;
}
@CustomType.Setter
public Builder timeToAcknowledgeInSeconds(Integer timeToAcknowledgeInSeconds) {
if (timeToAcknowledgeInSeconds == null) {
throw new MissingRequiredPropertyException("RosettaNetPipAcknowledgmentOfReceiptSettingsResponse", "timeToAcknowledgeInSeconds");
}
this.timeToAcknowledgeInSeconds = timeToAcknowledgeInSeconds;
return this;
}
public RosettaNetPipAcknowledgmentOfReceiptSettingsResponse build() {
final var _resultValue = new RosettaNetPipAcknowledgmentOfReceiptSettingsResponse();
_resultValue.isNonRepudiationRequired = isNonRepudiationRequired;
_resultValue.timeToAcknowledgeInSeconds = timeToAcknowledgeInSeconds;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy