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

com.pulumi.azurenative.synapse.outputs.PurviewConfigurationResponse 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.synapse.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 PurviewConfigurationResponse {
    /**
     * @return Purview Resource ID
     * 
     */
    private @Nullable String purviewResourceId;

    private PurviewConfigurationResponse() {}
    /**
     * @return Purview Resource ID
     * 
     */
    public Optional purviewResourceId() {
        return Optional.ofNullable(this.purviewResourceId);
    }

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

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

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

            this.purviewResourceId = purviewResourceId;
            return this;
        }
        public PurviewConfigurationResponse build() {
            final var _resultValue = new PurviewConfigurationResponse();
            _resultValue.purviewResourceId = purviewResourceId;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy