
com.pulumi.f5bigip.sys.NtpArgs 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.f5bigip.sys;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class NtpArgs extends com.pulumi.resources.ResourceArgs {
public static final NtpArgs Empty = new NtpArgs();
/**
* User defined description.
*
*/
@Import(name="description", required=true)
private Output description;
/**
* @return User defined description.
*
*/
public Output description() {
return this.description;
}
/**
* Specifies the time servers that the system uses to update the system time.
*
*/
@Import(name="servers", required=true)
private Output> servers;
/**
* @return Specifies the time servers that the system uses to update the system time.
*
*/
public Output> servers() {
return this.servers;
}
/**
* Specifies the time zone that you want to use for the system time.
*
*/
@Import(name="timezone")
private @Nullable Output timezone;
/**
* @return Specifies the time zone that you want to use for the system time.
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy