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

com.pulumi.azurenative.devtestlab.inputs.DayDetailsArgs 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.devtestlab.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;


/**
 * Properties of a daily schedule.
 * 
 */
public final class DayDetailsArgs extends com.pulumi.resources.ResourceArgs {

    public static final DayDetailsArgs Empty = new DayDetailsArgs();

    /**
     * The time of day the schedule will occur.
     * 
     */
    @Import(name="time")
    private @Nullable Output time;

    /**
     * @return The time of day the schedule will occur.
     * 
     */
    public Optional> time() {
        return Optional.ofNullable(this.time);
    }

    private DayDetailsArgs() {}

    private DayDetailsArgs(DayDetailsArgs $) {
        this.time = $.time;
    }

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

    public static final class Builder {
        private DayDetailsArgs $;

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

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

        /**
         * @param time The time of day the schedule will occur.
         * 
         * @return builder
         * 
         */
        public Builder time(@Nullable Output time) {
            $.time = time;
            return this;
        }

        /**
         * @param time The time of day the schedule will occur.
         * 
         * @return builder
         * 
         */
        public Builder time(String time) {
            return time(Output.of(time));
        }

        public DayDetailsArgs build() {
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy