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

com.pulumi.azurenative.machinelearningservices.outputs.FeatureWindowResponse 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.machinelearningservices.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 FeatureWindowResponse {
    /**
     * @return Specifies the feature window end time
     * 
     */
    private @Nullable String featureWindowEnd;
    /**
     * @return Specifies the feature window start time
     * 
     */
    private @Nullable String featureWindowStart;

    private FeatureWindowResponse() {}
    /**
     * @return Specifies the feature window end time
     * 
     */
    public Optional featureWindowEnd() {
        return Optional.ofNullable(this.featureWindowEnd);
    }
    /**
     * @return Specifies the feature window start time
     * 
     */
    public Optional featureWindowStart() {
        return Optional.ofNullable(this.featureWindowStart);
    }

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

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

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

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

            this.featureWindowStart = featureWindowStart;
            return this;
        }
        public FeatureWindowResponse build() {
            final var _resultValue = new FeatureWindowResponse();
            _resultValue.featureWindowEnd = featureWindowEnd;
            _resultValue.featureWindowStart = featureWindowStart;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy