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

com.pulumi.azurenative.datafactory.outputs.HDInsightLinkedServiceResponse 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.outputs;

import com.pulumi.azurenative.datafactory.outputs.AzureKeyVaultSecretReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.IntegrationRuntimeReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.LinkedServiceReferenceResponse;
import com.pulumi.azurenative.datafactory.outputs.ParameterSpecificationResponse;
import com.pulumi.azurenative.datafactory.outputs.SecureStringResponse;
import com.pulumi.core.Either;
import com.pulumi.core.annotations.CustomType;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.Object;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class HDInsightLinkedServiceResponse {
    /**
     * @return List of tags that can be used for describing the linked service.
     * 
     */
    private @Nullable List annotations;
    /**
     * @return HDInsight cluster URI. Type: string (or Expression with resultType string).
     * 
     */
    private Object clusterUri;
    /**
     * @return The integration runtime reference.
     * 
     */
    private @Nullable IntegrationRuntimeReferenceResponse connectVia;
    /**
     * @return Linked service description.
     * 
     */
    private @Nullable String description;
    /**
     * @return The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
     * 
     */
    private @Nullable String encryptedCredential;
    /**
     * @return Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
     * 
     */
    private @Nullable Object fileSystem;
    /**
     * @return A reference to the Azure SQL linked service that points to the HCatalog database.
     * 
     */
    private @Nullable LinkedServiceReferenceResponse hcatalogLinkedServiceName;
    /**
     * @return Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
     * 
     */
    private @Nullable Object isEspEnabled;
    /**
     * @return The Azure Storage linked service reference.
     * 
     */
    private @Nullable LinkedServiceReferenceResponse linkedServiceName;
    /**
     * @return Parameters for linked service.
     * 
     */
    private @Nullable Map parameters;
    /**
     * @return HDInsight cluster password.
     * 
     */
    private @Nullable Either password;
    /**
     * @return Type of linked service.
     * Expected value is 'HDInsight'.
     * 
     */
    private String type;
    /**
     * @return HDInsight cluster user name. Type: string (or Expression with resultType string).
     * 
     */
    private @Nullable Object userName;
    /**
     * @return Version of the linked service.
     * 
     */
    private @Nullable String version;

    private HDInsightLinkedServiceResponse() {}
    /**
     * @return List of tags that can be used for describing the linked service.
     * 
     */
    public List annotations() {
        return this.annotations == null ? List.of() : this.annotations;
    }
    /**
     * @return HDInsight cluster URI. Type: string (or Expression with resultType string).
     * 
     */
    public Object clusterUri() {
        return this.clusterUri;
    }
    /**
     * @return The integration runtime reference.
     * 
     */
    public Optional connectVia() {
        return Optional.ofNullable(this.connectVia);
    }
    /**
     * @return Linked service description.
     * 
     */
    public Optional description() {
        return Optional.ofNullable(this.description);
    }
    /**
     * @return The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
     * 
     */
    public Optional encryptedCredential() {
        return Optional.ofNullable(this.encryptedCredential);
    }
    /**
     * @return Specify the FileSystem if the main storage for the HDInsight is ADLS Gen2. Type: string (or Expression with resultType string).
     * 
     */
    public Optional fileSystem() {
        return Optional.ofNullable(this.fileSystem);
    }
    /**
     * @return A reference to the Azure SQL linked service that points to the HCatalog database.
     * 
     */
    public Optional hcatalogLinkedServiceName() {
        return Optional.ofNullable(this.hcatalogLinkedServiceName);
    }
    /**
     * @return Specify if the HDInsight is created with ESP (Enterprise Security Package). Type: Boolean.
     * 
     */
    public Optional isEspEnabled() {
        return Optional.ofNullable(this.isEspEnabled);
    }
    /**
     * @return The Azure Storage linked service reference.
     * 
     */
    public Optional linkedServiceName() {
        return Optional.ofNullable(this.linkedServiceName);
    }
    /**
     * @return Parameters for linked service.
     * 
     */
    public Map parameters() {
        return this.parameters == null ? Map.of() : this.parameters;
    }
    /**
     * @return HDInsight cluster password.
     * 
     */
    public Optional> password() {
        return Optional.ofNullable(this.password);
    }
    /**
     * @return Type of linked service.
     * Expected value is 'HDInsight'.
     * 
     */
    public String type() {
        return this.type;
    }
    /**
     * @return HDInsight cluster user name. Type: string (or Expression with resultType string).
     * 
     */
    public Optional userName() {
        return Optional.ofNullable(this.userName);
    }
    /**
     * @return Version of the linked service.
     * 
     */
    public Optional version() {
        return Optional.ofNullable(this.version);
    }

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

    public static Builder builder(HDInsightLinkedServiceResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable List annotations;
        private Object clusterUri;
        private @Nullable IntegrationRuntimeReferenceResponse connectVia;
        private @Nullable String description;
        private @Nullable String encryptedCredential;
        private @Nullable Object fileSystem;
        private @Nullable LinkedServiceReferenceResponse hcatalogLinkedServiceName;
        private @Nullable Object isEspEnabled;
        private @Nullable LinkedServiceReferenceResponse linkedServiceName;
        private @Nullable Map parameters;
        private @Nullable Either password;
        private String type;
        private @Nullable Object userName;
        private @Nullable String version;
        public Builder() {}
        public Builder(HDInsightLinkedServiceResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.annotations = defaults.annotations;
    	      this.clusterUri = defaults.clusterUri;
    	      this.connectVia = defaults.connectVia;
    	      this.description = defaults.description;
    	      this.encryptedCredential = defaults.encryptedCredential;
    	      this.fileSystem = defaults.fileSystem;
    	      this.hcatalogLinkedServiceName = defaults.hcatalogLinkedServiceName;
    	      this.isEspEnabled = defaults.isEspEnabled;
    	      this.linkedServiceName = defaults.linkedServiceName;
    	      this.parameters = defaults.parameters;
    	      this.password = defaults.password;
    	      this.type = defaults.type;
    	      this.userName = defaults.userName;
    	      this.version = defaults.version;
        }

        @CustomType.Setter
        public Builder annotations(@Nullable List annotations) {

            this.annotations = annotations;
            return this;
        }
        public Builder annotations(Object... annotations) {
            return annotations(List.of(annotations));
        }
        @CustomType.Setter
        public Builder clusterUri(Object clusterUri) {
            if (clusterUri == null) {
              throw new MissingRequiredPropertyException("HDInsightLinkedServiceResponse", "clusterUri");
            }
            this.clusterUri = clusterUri;
            return this;
        }
        @CustomType.Setter
        public Builder connectVia(@Nullable IntegrationRuntimeReferenceResponse connectVia) {

            this.connectVia = connectVia;
            return this;
        }
        @CustomType.Setter
        public Builder description(@Nullable String description) {

            this.description = description;
            return this;
        }
        @CustomType.Setter
        public Builder encryptedCredential(@Nullable String encryptedCredential) {

            this.encryptedCredential = encryptedCredential;
            return this;
        }
        @CustomType.Setter
        public Builder fileSystem(@Nullable Object fileSystem) {

            this.fileSystem = fileSystem;
            return this;
        }
        @CustomType.Setter
        public Builder hcatalogLinkedServiceName(@Nullable LinkedServiceReferenceResponse hcatalogLinkedServiceName) {

            this.hcatalogLinkedServiceName = hcatalogLinkedServiceName;
            return this;
        }
        @CustomType.Setter
        public Builder isEspEnabled(@Nullable Object isEspEnabled) {

            this.isEspEnabled = isEspEnabled;
            return this;
        }
        @CustomType.Setter
        public Builder linkedServiceName(@Nullable LinkedServiceReferenceResponse linkedServiceName) {

            this.linkedServiceName = linkedServiceName;
            return this;
        }
        @CustomType.Setter
        public Builder parameters(@Nullable Map parameters) {

            this.parameters = parameters;
            return this;
        }
        @CustomType.Setter
        public Builder password(@Nullable Either password) {

            this.password = password;
            return this;
        }
        @CustomType.Setter
        public Builder type(String type) {
            if (type == null) {
              throw new MissingRequiredPropertyException("HDInsightLinkedServiceResponse", "type");
            }
            this.type = type;
            return this;
        }
        @CustomType.Setter
        public Builder userName(@Nullable Object userName) {

            this.userName = userName;
            return this;
        }
        @CustomType.Setter
        public Builder version(@Nullable String version) {

            this.version = version;
            return this;
        }
        public HDInsightLinkedServiceResponse build() {
            final var _resultValue = new HDInsightLinkedServiceResponse();
            _resultValue.annotations = annotations;
            _resultValue.clusterUri = clusterUri;
            _resultValue.connectVia = connectVia;
            _resultValue.description = description;
            _resultValue.encryptedCredential = encryptedCredential;
            _resultValue.fileSystem = fileSystem;
            _resultValue.hcatalogLinkedServiceName = hcatalogLinkedServiceName;
            _resultValue.isEspEnabled = isEspEnabled;
            _resultValue.linkedServiceName = linkedServiceName;
            _resultValue.parameters = parameters;
            _resultValue.password = password;
            _resultValue.type = type;
            _resultValue.userName = userName;
            _resultValue.version = version;
            return _resultValue;
        }
    }
}