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

com.pulumi.azurenative.datafactory.inputs.PurviewConfigurationArgs 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.datafactory.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Purview configuration.
 * 
 */
public final class PurviewConfigurationArgs extends com.pulumi.resources.ResourceArgs {

    public static final PurviewConfigurationArgs Empty = new PurviewConfigurationArgs();

    /**
     * Purview resource id.
     * 
     */
    @Import(name="purviewResourceId")
    private @Nullable Output purviewResourceId;

    /**
     * @return Purview resource id.
     * 
     */
    public Optional> purviewResourceId() {
        return Optional.ofNullable(this.purviewResourceId);
    }

    private PurviewConfigurationArgs() {}

    private PurviewConfigurationArgs(PurviewConfigurationArgs $) {
        this.purviewResourceId = $.purviewResourceId;
    }

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

    public static final class Builder {
        private PurviewConfigurationArgs $;

        public Builder() {
            $ = new PurviewConfigurationArgs();
        }

        public Builder(PurviewConfigurationArgs defaults) {
            $ = new PurviewConfigurationArgs(Objects.requireNonNull(defaults));
        }

        /**
         * @param purviewResourceId Purview resource id.
         * 
         * @return builder
         * 
         */
        public Builder purviewResourceId(@Nullable Output purviewResourceId) {
            $.purviewResourceId = purviewResourceId;
            return this;
        }

        /**
         * @param purviewResourceId Purview resource id.
         * 
         * @return builder
         * 
         */
        public Builder purviewResourceId(String purviewResourceId) {
            return purviewResourceId(Output.of(purviewResourceId));
        }

        public PurviewConfigurationArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy