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

com.pulumi.azurenative.datamigration.outputs.ConnectToTargetSqlMISyncTaskOutputResponse Maven / Gradle / Ivy

There is a newer version: 2.72.0
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.datamigration.outputs;

import com.pulumi.azurenative.datamigration.outputs.ReportableExceptionResponse;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;

@CustomType
public final class ConnectToTargetSqlMISyncTaskOutputResponse {
    /**
     * @return Target server brand version
     * 
     */
    private String targetServerBrandVersion;
    /**
     * @return Target server version
     * 
     */
    private String targetServerVersion;
    /**
     * @return Validation errors
     * 
     */
    private List validationErrors;

    private ConnectToTargetSqlMISyncTaskOutputResponse() {}
    /**
     * @return Target server brand version
     * 
     */
    public String targetServerBrandVersion() {
        return this.targetServerBrandVersion;
    }
    /**
     * @return Target server version
     * 
     */
    public String targetServerVersion() {
        return this.targetServerVersion;
    }
    /**
     * @return Validation errors
     * 
     */
    public List validationErrors() {
        return this.validationErrors;
    }

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

    public static Builder builder(ConnectToTargetSqlMISyncTaskOutputResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String targetServerBrandVersion;
        private String targetServerVersion;
        private List validationErrors;
        public Builder() {}
        public Builder(ConnectToTargetSqlMISyncTaskOutputResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.targetServerBrandVersion = defaults.targetServerBrandVersion;
    	      this.targetServerVersion = defaults.targetServerVersion;
    	      this.validationErrors = defaults.validationErrors;
        }

        @CustomType.Setter
        public Builder targetServerBrandVersion(String targetServerBrandVersion) {
            if (targetServerBrandVersion == null) {
              throw new MissingRequiredPropertyException("ConnectToTargetSqlMISyncTaskOutputResponse", "targetServerBrandVersion");
            }
            this.targetServerBrandVersion = targetServerBrandVersion;
            return this;
        }
        @CustomType.Setter
        public Builder targetServerVersion(String targetServerVersion) {
            if (targetServerVersion == null) {
              throw new MissingRequiredPropertyException("ConnectToTargetSqlMISyncTaskOutputResponse", "targetServerVersion");
            }
            this.targetServerVersion = targetServerVersion;
            return this;
        }
        @CustomType.Setter
        public Builder validationErrors(List validationErrors) {
            if (validationErrors == null) {
              throw new MissingRequiredPropertyException("ConnectToTargetSqlMISyncTaskOutputResponse", "validationErrors");
            }
            this.validationErrors = validationErrors;
            return this;
        }
        public Builder validationErrors(ReportableExceptionResponse... validationErrors) {
            return validationErrors(List.of(validationErrors));
        }
        public ConnectToTargetSqlMISyncTaskOutputResponse build() {
            final var _resultValue = new ConnectToTargetSqlMISyncTaskOutputResponse();
            _resultValue.targetServerBrandVersion = targetServerBrandVersion;
            _resultValue.targetServerVersion = targetServerVersion;
            _resultValue.validationErrors = validationErrors;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy