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

com.pulumi.azurenative.storagecache.outputs.AmlFilesystemResponseMaintenanceWindow Maven / Gradle / Ivy

There is a newer version: 2.89.2
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.storagecache.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 AmlFilesystemResponseMaintenanceWindow {
    /**
     * @return Day of the week on which the maintenance window will occur.
     * 
     */
    private @Nullable String dayOfWeek;
    /**
     * @return The time of day (in UTC) to start the maintenance window.
     * 
     */
    private @Nullable String timeOfDayUTC;

    private AmlFilesystemResponseMaintenanceWindow() {}
    /**
     * @return Day of the week on which the maintenance window will occur.
     * 
     */
    public Optional dayOfWeek() {
        return Optional.ofNullable(this.dayOfWeek);
    }
    /**
     * @return The time of day (in UTC) to start the maintenance window.
     * 
     */
    public Optional timeOfDayUTC() {
        return Optional.ofNullable(this.timeOfDayUTC);
    }

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

    public static Builder builder(AmlFilesystemResponseMaintenanceWindow defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String dayOfWeek;
        private @Nullable String timeOfDayUTC;
        public Builder() {}
        public Builder(AmlFilesystemResponseMaintenanceWindow defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.dayOfWeek = defaults.dayOfWeek;
    	      this.timeOfDayUTC = defaults.timeOfDayUTC;
        }

        @CustomType.Setter
        public Builder dayOfWeek(@Nullable String dayOfWeek) {

            this.dayOfWeek = dayOfWeek;
            return this;
        }
        @CustomType.Setter
        public Builder timeOfDayUTC(@Nullable String timeOfDayUTC) {

            this.timeOfDayUTC = timeOfDayUTC;
            return this;
        }
        public AmlFilesystemResponseMaintenanceWindow build() {
            final var _resultValue = new AmlFilesystemResponseMaintenanceWindow();
            _resultValue.dayOfWeek = dayOfWeek;
            _resultValue.timeOfDayUTC = timeOfDayUTC;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy