
com.pulumi.azurenative.databox.outputs.JobDeliveryInfoResponse 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.databox.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 JobDeliveryInfoResponse {
/**
* @return Scheduled date time.
*
*/
private @Nullable String scheduledDateTime;
private JobDeliveryInfoResponse() {}
/**
* @return Scheduled date time.
*
*/
public Optional scheduledDateTime() {
return Optional.ofNullable(this.scheduledDateTime);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(JobDeliveryInfoResponse defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String scheduledDateTime;
public Builder() {}
public Builder(JobDeliveryInfoResponse defaults) {
Objects.requireNonNull(defaults);
this.scheduledDateTime = defaults.scheduledDateTime;
}
@CustomType.Setter
public Builder scheduledDateTime(@Nullable String scheduledDateTime) {
this.scheduledDateTime = scheduledDateTime;
return this;
}
public JobDeliveryInfoResponse build() {
final var _resultValue = new JobDeliveryInfoResponse();
_resultValue.scheduledDateTime = scheduledDateTime;
return _resultValue;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy