com.pulumi.linode.inputs.DatabasePostgresqlUpdatesArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linode Show documentation
Show all versions of linode Show documentation
A Pulumi package for creating and managing linode cloud 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.linode.inputs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Integer;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class DatabasePostgresqlUpdatesArgs extends com.pulumi.resources.ResourceArgs {
public static final DatabasePostgresqlUpdatesArgs Empty = new DatabasePostgresqlUpdatesArgs();
/**
* The day to perform maintenance.
*
*/
@Import(name="dayOfWeek", required=true)
private Output dayOfWeek;
/**
* @return The day to perform maintenance.
*
*/
public Output dayOfWeek() {
return this.dayOfWeek;
}
/**
* The maximum maintenance window time in hours.
*
*/
@Import(name="duration", required=true)
private Output duration;
/**
* @return The maximum maintenance window time in hours.
*
*/
public Output duration() {
return this.duration;
}
/**
* Whether maintenance occurs on a weekly or monthly basis.
*
*/
@Import(name="frequency", required=true)
private Output frequency;
/**
* @return Whether maintenance occurs on a weekly or monthly basis.
*
*/
public Output frequency() {
return this.frequency;
}
/**
* The hour to begin maintenance based in UTC time.
*
*/
@Import(name="hourOfDay", required=true)
private Output hourOfDay;
/**
* @return The hour to begin maintenance based in UTC time.
*
*/
public Output hourOfDay() {
return this.hourOfDay;
}
/**
* The week of the month to perform monthly frequency updates. Required for monthly frequency updates.
*
*/
@Import(name="weekOfMonth")
private @Nullable Output weekOfMonth;
/**
* @return The week of the month to perform monthly frequency updates. Required for monthly frequency updates.
*
*/
public Optional
© 2015 - 2024 Weber Informatics LLC | Privacy Policy