com.pulumi.azurenative.timeseriesinsights.outputs.LocalTimestampResponseTimeZoneOffset Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure 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.azurenative.timeseriesinsights.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 LocalTimestampResponseTimeZoneOffset {
/**
* @return The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
*
*/
private @Nullable String propertyName;
private LocalTimestampResponseTimeZoneOffset() {}
/**
* @return The event property that will be contain the offset information to calculate the local timestamp. When the LocalTimestampFormat is Iana, the property name will contain the name of the column which contains IANA Timezone Name (eg: Americas/Los Angeles). When LocalTimestampFormat is Timespan, it contains the name of property which contains values representing the offset (eg: P1D or 1.00:00:00)
*
*/
public Optional propertyName() {
return Optional.ofNullable(this.propertyName);
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(LocalTimestampResponseTimeZoneOffset defaults) {
return new Builder(defaults);
}
@CustomType.Builder
public static final class Builder {
private @Nullable String propertyName;
public Builder() {}
public Builder(LocalTimestampResponseTimeZoneOffset defaults) {
Objects.requireNonNull(defaults);
this.propertyName = defaults.propertyName;
}
@CustomType.Setter
public Builder propertyName(@Nullable String propertyName) {
this.propertyName = propertyName;
return this;
}
public LocalTimestampResponseTimeZoneOffset build() {
final var _resultValue = new LocalTimestampResponseTimeZoneOffset();
_resultValue.propertyName = propertyName;
return _resultValue;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy