All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.databox.inputs.JobDeliveryInfoArgs Maven / Gradle / Ivy

There is a newer version: 2.82.0
Show newest version
// *** 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.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Additional delivery info.
 * 
 */
public final class JobDeliveryInfoArgs extends com.pulumi.resources.ResourceArgs {

    public static final JobDeliveryInfoArgs Empty = new JobDeliveryInfoArgs();

    /**
     * Scheduled date time.
     * 
     */
    @Import(name="scheduledDateTime")
    private @Nullable Output scheduledDateTime;

    /**
     * @return Scheduled date time.
     * 
     */
    public Optional> scheduledDateTime() {
        return Optional.ofNullable(this.scheduledDateTime);
    }

    private JobDeliveryInfoArgs() {}

    private JobDeliveryInfoArgs(JobDeliveryInfoArgs $) {
        this.scheduledDateTime = $.scheduledDateTime;
    }

    public static Builder builder() {
        return new Builder();
    }
    public static Builder builder(JobDeliveryInfoArgs defaults) {
        return new Builder(defaults);
    }

    public static final class Builder {
        private JobDeliveryInfoArgs $;

        public Builder() {
            $ = new JobDeliveryInfoArgs();
        }

        public Builder(JobDeliveryInfoArgs defaults) {
            $ = new JobDeliveryInfoArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param scheduledDateTime Scheduled date time.
         * 
         * @return builder
         * 
         */
        public Builder scheduledDateTime(@Nullable Output scheduledDateTime) {
            $.scheduledDateTime = scheduledDateTime;
            return this;
        }

        /**
         * @param scheduledDateTime Scheduled date time.
         * 
         * @return builder
         * 
         */
        public Builder scheduledDateTime(String scheduledDateTime) {
            return scheduledDateTime(Output.of(scheduledDateTime));
        }

        public JobDeliveryInfoArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy