com.pulumi.azurenative.logic.inputs.RosettaNetPipAcknowledgmentOfReceiptSettingsArgs 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.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Boolean;
import java.lang.Integer;
import java.util.Objects;
/**
* The integration account RosettaNet ProcessConfiguration Acknowledgement settings.
*
*/
public final class RosettaNetPipAcknowledgmentOfReceiptSettingsArgs extends com.pulumi.resources.ResourceArgs {
public static final RosettaNetPipAcknowledgmentOfReceiptSettingsArgs Empty = new RosettaNetPipAcknowledgmentOfReceiptSettingsArgs();
/**
* The non-repudiation is required or not.
*
*/
@Import(name="isNonRepudiationRequired", required=true)
private Output isNonRepudiationRequired;
/**
* @return The non-repudiation is required or not.
*
*/
public Output isNonRepudiationRequired() {
return this.isNonRepudiationRequired;
}
/**
* The time to acknowledge in seconds.
*
*/
@Import(name="timeToAcknowledgeInSeconds", required=true)
private Output timeToAcknowledgeInSeconds;
/**
* @return The time to acknowledge in seconds.
*
*/
public Output timeToAcknowledgeInSeconds() {
return this.timeToAcknowledgeInSeconds;
}
private RosettaNetPipAcknowledgmentOfReceiptSettingsArgs() {}
private RosettaNetPipAcknowledgmentOfReceiptSettingsArgs(RosettaNetPipAcknowledgmentOfReceiptSettingsArgs $) {
this.isNonRepudiationRequired = $.isNonRepudiationRequired;
this.timeToAcknowledgeInSeconds = $.timeToAcknowledgeInSeconds;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(RosettaNetPipAcknowledgmentOfReceiptSettingsArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private RosettaNetPipAcknowledgmentOfReceiptSettingsArgs $;
public Builder() {
$ = new RosettaNetPipAcknowledgmentOfReceiptSettingsArgs();
}
public Builder(RosettaNetPipAcknowledgmentOfReceiptSettingsArgs defaults) {
$ = new RosettaNetPipAcknowledgmentOfReceiptSettingsArgs(Objects.requireNonNull(defaults));
}
/**
* @param isNonRepudiationRequired The non-repudiation is required or not.
*
* @return builder
*
*/
public Builder isNonRepudiationRequired(Output isNonRepudiationRequired) {
$.isNonRepudiationRequired = isNonRepudiationRequired;
return this;
}
/**
* @param isNonRepudiationRequired The non-repudiation is required or not.
*
* @return builder
*
*/
public Builder isNonRepudiationRequired(Boolean isNonRepudiationRequired) {
return isNonRepudiationRequired(Output.of(isNonRepudiationRequired));
}
/**
* @param timeToAcknowledgeInSeconds The time to acknowledge in seconds.
*
* @return builder
*
*/
public Builder timeToAcknowledgeInSeconds(Output timeToAcknowledgeInSeconds) {
$.timeToAcknowledgeInSeconds = timeToAcknowledgeInSeconds;
return this;
}
/**
* @param timeToAcknowledgeInSeconds The time to acknowledge in seconds.
*
* @return builder
*
*/
public Builder timeToAcknowledgeInSeconds(Integer timeToAcknowledgeInSeconds) {
return timeToAcknowledgeInSeconds(Output.of(timeToAcknowledgeInSeconds));
}
public RosettaNetPipAcknowledgmentOfReceiptSettingsArgs build() {
if ($.isNonRepudiationRequired == null) {
throw new MissingRequiredPropertyException("RosettaNetPipAcknowledgmentOfReceiptSettingsArgs", "isNonRepudiationRequired");
}
if ($.timeToAcknowledgeInSeconds == null) {
throw new MissingRequiredPropertyException("RosettaNetPipAcknowledgmentOfReceiptSettingsArgs", "timeToAcknowledgeInSeconds");
}
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy