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

com.pulumi.azurenative.hybridcompute.outputs.ConfigurationExtensionResponse 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.hybridcompute.outputs;

import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;

@CustomType
public final class ConfigurationExtensionResponse {
    /**
     * @return Publisher of the extension.
     * 
     */
    private String publisher;
    /**
     * @return Type of the extension.
     * 
     */
    private String type;

    private ConfigurationExtensionResponse() {}
    /**
     * @return Publisher of the extension.
     * 
     */
    public String publisher() {
        return this.publisher;
    }
    /**
     * @return Type of the extension.
     * 
     */
    public String type() {
        return this.type;
    }

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

    public static Builder builder(ConfigurationExtensionResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String publisher;
        private String type;
        public Builder() {}
        public Builder(ConfigurationExtensionResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.publisher = defaults.publisher;
    	      this.type = defaults.type;
        }

        @CustomType.Setter
        public Builder publisher(String publisher) {
            if (publisher == null) {
              throw new MissingRequiredPropertyException("ConfigurationExtensionResponse", "publisher");
            }
            this.publisher = publisher;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("ConfigurationExtensionResponse", "type");
            }
            this.type = type;
            return this;
        }
        public ConfigurationExtensionResponse build() {
            final var _resultValue = new ConfigurationExtensionResponse();
            _resultValue.publisher = publisher;
            _resultValue.type = type;
            return _resultValue;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy