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

com.pulumi.azurenative.machinelearningservices.outputs.FeaturesetJobResponse 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.azurenative.machinelearningservices.outputs;

import com.pulumi.azurenative.machinelearningservices.outputs.FeatureWindowResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class FeaturesetJobResponse {
    /**
     * @return Specifies the created date
     * 
     */
    private @Nullable String createdDate;
    /**
     * @return Specifies the display name
     * 
     */
    private @Nullable String displayName;
    /**
     * @return Specifies the duration
     * 
     */
    private @Nullable String duration;
    /**
     * @return Specifies the experiment id
     * 
     */
    private @Nullable String experimentId;
    /**
     * @return Specifies the backfill feature window to be materialized
     * 
     */
    private @Nullable FeatureWindowResponse featureWindow;
    /**
     * @return Specifies the job id
     * 
     */
    private @Nullable String jobId;
    /**
     * @return Specifies the job status
     * 
     */
    private @Nullable String status;
    /**
     * @return Specifies the tags if any
     * 
     */
    private @Nullable Map tags;
    /**
     * @return Specifies the feature store job type
     * 
     */
    private @Nullable String type;

    private FeaturesetJobResponse() {}
    /**
     * @return Specifies the created date
     * 
     */
    public Optional createdDate() {
        return Optional.ofNullable(this.createdDate);
    }
    /**
     * @return Specifies the display name
     * 
     */
    public Optional displayName() {
        return Optional.ofNullable(this.displayName);
    }
    /**
     * @return Specifies the duration
     * 
     */
    public Optional duration() {
        return Optional.ofNullable(this.duration);
    }
    /**
     * @return Specifies the experiment id
     * 
     */
    public Optional experimentId() {
        return Optional.ofNullable(this.experimentId);
    }
    /**
     * @return Specifies the backfill feature window to be materialized
     * 
     */
    public Optional featureWindow() {
        return Optional.ofNullable(this.featureWindow);
    }
    /**
     * @return Specifies the job id
     * 
     */
    public Optional jobId() {
        return Optional.ofNullable(this.jobId);
    }
    /**
     * @return Specifies the job status
     * 
     */
    public Optional status() {
        return Optional.ofNullable(this.status);
    }
    /**
     * @return Specifies the tags if any
     * 
     */
    public Map tags() {
        return this.tags == null ? Map.of() : this.tags;
    }
    /**
     * @return Specifies the feature store job type
     * 
     */
    public Optional type() {
        return Optional.ofNullable(this.type);
    }

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

    public static Builder builder(FeaturesetJobResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable String createdDate;
        private @Nullable String displayName;
        private @Nullable String duration;
        private @Nullable String experimentId;
        private @Nullable FeatureWindowResponse featureWindow;
        private @Nullable String jobId;
        private @Nullable String status;
        private @Nullable Map tags;
        private @Nullable String type;
        public Builder() {}
        public Builder(FeaturesetJobResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.createdDate = defaults.createdDate;
    	      this.displayName = defaults.displayName;
    	      this.duration = defaults.duration;
    	      this.experimentId = defaults.experimentId;
    	      this.featureWindow = defaults.featureWindow;
    	      this.jobId = defaults.jobId;
    	      this.status = defaults.status;
    	      this.tags = defaults.tags;
    	      this.type = defaults.type;
        }

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

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

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

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

            this.experimentId = experimentId;
            return this;
        }
        @CustomType.Setter
        public Builder featureWindow(@Nullable FeatureWindowResponse featureWindow) {

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

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

            this.status = status;
            return this;
        }
        @CustomType.Setter
        public Builder tags(@Nullable Map tags) {

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

            this.type = type;
            return this;
        }
        public FeaturesetJobResponse build() {
            final var _resultValue = new FeaturesetJobResponse();
            _resultValue.createdDate = createdDate;
            _resultValue.displayName = displayName;
            _resultValue.duration = duration;
            _resultValue.experimentId = experimentId;
            _resultValue.featureWindow = featureWindow;
            _resultValue.jobId = jobId;
            _resultValue.status = status;
            _resultValue.tags = tags;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy