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

com.pulumi.azurenative.machinelearningservices.outputs.EndpointModelDeprecationPropertiesResponse 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.core.annotations.CustomType;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class EndpointModelDeprecationPropertiesResponse {
    /**
     * @return The datetime of deprecation of the fineTune Model.
     * 
     */
    private @Nullable String fineTune;
    /**
     * @return The datetime of deprecation of the inference Model.
     * 
     */
    private @Nullable String inference;

    private EndpointModelDeprecationPropertiesResponse() {}
    /**
     * @return The datetime of deprecation of the fineTune Model.
     * 
     */
    public Optional fineTune() {
        return Optional.ofNullable(this.fineTune);
    }
    /**
     * @return The datetime of deprecation of the inference Model.
     * 
     */
    public Optional inference() {
        return Optional.ofNullable(this.inference);
    }

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

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

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

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

            this.inference = inference;
            return this;
        }
        public EndpointModelDeprecationPropertiesResponse build() {
            final var _resultValue = new EndpointModelDeprecationPropertiesResponse();
            _resultValue.fineTune = fineTune;
            _resultValue.inference = inference;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy