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

com.pulumi.azurenative.machinelearning.outputs.ExampleRequestResponse 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.machinelearning.outputs;

import com.pulumi.core.annotations.CustomType;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import javax.annotation.Nullable;

@CustomType
public final class ExampleRequestResponse {
    /**
     * @return Sample input data for the web service's global parameters
     * 
     */
    private @Nullable Map globalParameters;
    /**
     * @return Sample input data for the web service's input(s) given as an input name to sample input values matrix map.
     * 
     */
    private @Nullable Map>> inputs;

    private ExampleRequestResponse() {}
    /**
     * @return Sample input data for the web service's global parameters
     * 
     */
    public Map globalParameters() {
        return this.globalParameters == null ? Map.of() : this.globalParameters;
    }
    /**
     * @return Sample input data for the web service's input(s) given as an input name to sample input values matrix map.
     * 
     */
    public Map>> inputs() {
        return this.inputs == null ? Map.of() : this.inputs;
    }

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

    public static Builder builder(ExampleRequestResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Map globalParameters;
        private @Nullable Map>> inputs;
        public Builder() {}
        public Builder(ExampleRequestResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.globalParameters = defaults.globalParameters;
    	      this.inputs = defaults.inputs;
        }

        @CustomType.Setter
        public Builder globalParameters(@Nullable Map globalParameters) {

            this.globalParameters = globalParameters;
            return this;
        }
        @CustomType.Setter
        public Builder inputs(@Nullable Map>> inputs) {

            this.inputs = inputs;
            return this;
        }
        public ExampleRequestResponse build() {
            final var _resultValue = new ExampleRequestResponse();
            _resultValue.globalParameters = globalParameters;
            _resultValue.inputs = inputs;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy