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

com.pulumi.azurenative.datafactory.inputs.PostgreSqlV2LinkedServiceArgs 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.azurenative.datafactory.inputs.AzureKeyVaultSecretReferenceArgs;
import com.pulumi.azurenative.datafactory.inputs.IntegrationRuntimeReferenceArgs;
import com.pulumi.azurenative.datafactory.inputs.ParameterSpecificationArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
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;


/**
 * Linked service for PostgreSQLV2 data source.
 * 
 */
public final class PostgreSqlV2LinkedServiceArgs extends com.pulumi.resources.ResourceArgs {

    public static final PostgreSqlV2LinkedServiceArgs Empty = new PostgreSqlV2LinkedServiceArgs();

    /**
     * List of tags that can be used for describing the linked service.
     * 
     */
    @Import(name="annotations")
    private @Nullable Output> annotations;

    /**
     * @return List of tags that can be used for describing the linked service.
     * 
     */
    public Optional>> annotations() {
        return Optional.ofNullable(this.annotations);
    }

    /**
     * The authentication type to use. Type: string.
     * 
     */
    @Import(name="authenticationType", required=true)
    private Output authenticationType;

    /**
     * @return The authentication type to use. Type: string.
     * 
     */
    public Output authenticationType() {
        return this.authenticationType;
    }

    /**
     * The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
     * 
     */
    @Import(name="commandTimeout")
    private @Nullable Output commandTimeout;

    /**
     * @return The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
     * 
     */
    public Optional> commandTimeout() {
        return Optional.ofNullable(this.commandTimeout);
    }

    /**
     * The integration runtime reference.
     * 
     */
    @Import(name="connectVia")
    private @Nullable Output connectVia;

    /**
     * @return The integration runtime reference.
     * 
     */
    public Optional> connectVia() {
        return Optional.ofNullable(this.connectVia);
    }

    /**
     * The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
     * 
     */
    @Import(name="connectionTimeout")
    private @Nullable Output connectionTimeout;

    /**
     * @return The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
     * 
     */
    public Optional> connectionTimeout() {
        return Optional.ofNullable(this.connectionTimeout);
    }

    /**
     * Database name for connection. Type: string.
     * 
     */
    @Import(name="database", required=true)
    private Output database;

    /**
     * @return Database name for connection. Type: string.
     * 
     */
    public Output database() {
        return this.database;
    }

    /**
     * Linked service description.
     * 
     */
    @Import(name="description")
    private @Nullable Output description;

    /**
     * @return Linked service description.
     * 
     */
    public Optional> description() {
        return Optional.ofNullable(this.description);
    }

    /**
     * Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
     * 
     */
    @Import(name="encoding")
    private @Nullable Output encoding;

    /**
     * @return Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
     * 
     */
    public Optional> encoding() {
        return Optional.ofNullable(this.encoding);
    }

    /**
     * The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
     * 
     */
    @Import(name="encryptedCredential")
    private @Nullable Output encryptedCredential;

    /**
     * @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);
    }

    /**
     * When enabled, parameter values are logged when commands are executed. Type: boolean.
     * 
     */
    @Import(name="logParameters")
    private @Nullable Output logParameters;

    /**
     * @return When enabled, parameter values are logged when commands are executed. Type: boolean.
     * 
     */
    public Optional> logParameters() {
        return Optional.ofNullable(this.logParameters);
    }

    /**
     * Parameters for linked service.
     * 
     */
    @Import(name="parameters")
    private @Nullable Output> parameters;

    /**
     * @return Parameters for linked service.
     * 
     */
    public Optional>> parameters() {
        return Optional.ofNullable(this.parameters);
    }

    /**
     * The Azure key vault secret reference of password in connection string. Type: string.
     * 
     */
    @Import(name="password")
    private @Nullable Output password;

    /**
     * @return The Azure key vault secret reference of password in connection string. Type: string.
     * 
     */
    public Optional> password() {
        return Optional.ofNullable(this.password);
    }

    /**
     * Whether connection pooling should be used. Type: boolean.
     * 
     */
    @Import(name="pooling")
    private @Nullable Output pooling;

    /**
     * @return Whether connection pooling should be used. Type: boolean.
     * 
     */
    public Optional> pooling() {
        return Optional.ofNullable(this.pooling);
    }

    /**
     * The port for the connection. Type: integer.
     * 
     */
    @Import(name="port")
    private @Nullable Output port;

    /**
     * @return The port for the connection. Type: integer.
     * 
     */
    public Optional> port() {
        return Optional.ofNullable(this.port);
    }

    /**
     * Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
     * 
     */
    @Import(name="readBufferSize")
    private @Nullable Output readBufferSize;

    /**
     * @return Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
     * 
     */
    public Optional> readBufferSize() {
        return Optional.ofNullable(this.readBufferSize);
    }

    /**
     * Sets the schema search path. Type: string.
     * 
     */
    @Import(name="schema")
    private @Nullable Output schema;

    /**
     * @return Sets the schema search path. Type: string.
     * 
     */
    public Optional> schema() {
        return Optional.ofNullable(this.schema);
    }

    /**
     * Server name for connection. Type: string.
     * 
     */
    @Import(name="server", required=true)
    private Output server;

    /**
     * @return Server name for connection. Type: string.
     * 
     */
    public Output server() {
        return this.server;
    }

    /**
     * Location of a client certificate to be sent to the server. Type: string.
     * 
     */
    @Import(name="sslCertificate")
    private @Nullable Output sslCertificate;

    /**
     * @return Location of a client certificate to be sent to the server. Type: string.
     * 
     */
    public Optional> sslCertificate() {
        return Optional.ofNullable(this.sslCertificate);
    }

    /**
     * Location of a client key for a client certificate to be sent to the server. Type: string.
     * 
     */
    @Import(name="sslKey")
    private @Nullable Output sslKey;

    /**
     * @return Location of a client key for a client certificate to be sent to the server. Type: string.
     * 
     */
    public Optional> sslKey() {
        return Optional.ofNullable(this.sslKey);
    }

    /**
     * SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
     * 
     */
    @Import(name="sslMode", required=true)
    private Output sslMode;

    /**
     * @return SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
     * 
     */
    public Output sslMode() {
        return this.sslMode;
    }

    /**
     * Password for a key for a client certificate. Type: string.
     * 
     */
    @Import(name="sslPassword")
    private @Nullable Output sslPassword;

    /**
     * @return Password for a key for a client certificate. Type: string.
     * 
     */
    public Optional> sslPassword() {
        return Optional.ofNullable(this.sslPassword);
    }

    /**
     * Gets or sets the session timezone. Type: string.
     * 
     */
    @Import(name="timezone")
    private @Nullable Output timezone;

    /**
     * @return Gets or sets the session timezone. Type: string.
     * 
     */
    public Optional> timezone() {
        return Optional.ofNullable(this.timezone);
    }

    /**
     * Whether to trust the server certificate without validating it. Type: boolean.
     * 
     */
    @Import(name="trustServerCertificate")
    private @Nullable Output trustServerCertificate;

    /**
     * @return Whether to trust the server certificate without validating it. Type: boolean.
     * 
     */
    public Optional> trustServerCertificate() {
        return Optional.ofNullable(this.trustServerCertificate);
    }

    /**
     * Type of linked service.
     * Expected value is 'PostgreSqlV2'.
     * 
     */
    @Import(name="type", required=true)
    private Output type;

    /**
     * @return Type of linked service.
     * Expected value is 'PostgreSqlV2'.
     * 
     */
    public Output type() {
        return this.type;
    }

    /**
     * Username for authentication. Type: string.
     * 
     */
    @Import(name="username", required=true)
    private Output username;

    /**
     * @return Username for authentication. Type: string.
     * 
     */
    public Output username() {
        return this.username;
    }

    /**
     * Version of the linked service.
     * 
     */
    @Import(name="version")
    private @Nullable Output version;

    /**
     * @return Version of the linked service.
     * 
     */
    public Optional> version() {
        return Optional.ofNullable(this.version);
    }

    private PostgreSqlV2LinkedServiceArgs() {}

    private PostgreSqlV2LinkedServiceArgs(PostgreSqlV2LinkedServiceArgs $) {
        this.annotations = $.annotations;
        this.authenticationType = $.authenticationType;
        this.commandTimeout = $.commandTimeout;
        this.connectVia = $.connectVia;
        this.connectionTimeout = $.connectionTimeout;
        this.database = $.database;
        this.description = $.description;
        this.encoding = $.encoding;
        this.encryptedCredential = $.encryptedCredential;
        this.logParameters = $.logParameters;
        this.parameters = $.parameters;
        this.password = $.password;
        this.pooling = $.pooling;
        this.port = $.port;
        this.readBufferSize = $.readBufferSize;
        this.schema = $.schema;
        this.server = $.server;
        this.sslCertificate = $.sslCertificate;
        this.sslKey = $.sslKey;
        this.sslMode = $.sslMode;
        this.sslPassword = $.sslPassword;
        this.timezone = $.timezone;
        this.trustServerCertificate = $.trustServerCertificate;
        this.type = $.type;
        this.username = $.username;
        this.version = $.version;
    }

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

    public static final class Builder {
        private PostgreSqlV2LinkedServiceArgs $;

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

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

        /**
         * @param annotations List of tags that can be used for describing the linked service.
         * 
         * @return builder
         * 
         */
        public Builder annotations(@Nullable Output> annotations) {
            $.annotations = annotations;
            return this;
        }

        /**
         * @param annotations List of tags that can be used for describing the linked service.
         * 
         * @return builder
         * 
         */
        public Builder annotations(List annotations) {
            return annotations(Output.of(annotations));
        }

        /**
         * @param annotations List of tags that can be used for describing the linked service.
         * 
         * @return builder
         * 
         */
        public Builder annotations(Object... annotations) {
            return annotations(List.of(annotations));
        }

        /**
         * @param authenticationType The authentication type to use. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder authenticationType(Output authenticationType) {
            $.authenticationType = authenticationType;
            return this;
        }

        /**
         * @param authenticationType The authentication type to use. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder authenticationType(Object authenticationType) {
            return authenticationType(Output.of(authenticationType));
        }

        /**
         * @param commandTimeout The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder commandTimeout(@Nullable Output commandTimeout) {
            $.commandTimeout = commandTimeout;
            return this;
        }

        /**
         * @param commandTimeout The time to wait (in seconds) while trying to execute a command before terminating the attempt and generating an error. Set to zero for infinity. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder commandTimeout(Object commandTimeout) {
            return commandTimeout(Output.of(commandTimeout));
        }

        /**
         * @param connectVia The integration runtime reference.
         * 
         * @return builder
         * 
         */
        public Builder connectVia(@Nullable Output connectVia) {
            $.connectVia = connectVia;
            return this;
        }

        /**
         * @param connectVia The integration runtime reference.
         * 
         * @return builder
         * 
         */
        public Builder connectVia(IntegrationRuntimeReferenceArgs connectVia) {
            return connectVia(Output.of(connectVia));
        }

        /**
         * @param connectionTimeout The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder connectionTimeout(@Nullable Output connectionTimeout) {
            $.connectionTimeout = connectionTimeout;
            return this;
        }

        /**
         * @param connectionTimeout The time to wait (in seconds) while trying to establish a connection before terminating the attempt and generating an error. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder connectionTimeout(Object connectionTimeout) {
            return connectionTimeout(Output.of(connectionTimeout));
        }

        /**
         * @param database Database name for connection. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder database(Output database) {
            $.database = database;
            return this;
        }

        /**
         * @param database Database name for connection. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder database(Object database) {
            return database(Output.of(database));
        }

        /**
         * @param description Linked service description.
         * 
         * @return builder
         * 
         */
        public Builder description(@Nullable Output description) {
            $.description = description;
            return this;
        }

        /**
         * @param description Linked service description.
         * 
         * @return builder
         * 
         */
        public Builder description(String description) {
            return description(Output.of(description));
        }

        /**
         * @param encoding Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
         * 
         * @return builder
         * 
         */
        public Builder encoding(@Nullable Output encoding) {
            $.encoding = encoding;
            return this;
        }

        /**
         * @param encoding Gets or sets the .NET encoding that will be used to encode/decode PostgreSQL string data. Type: string
         * 
         * @return builder
         * 
         */
        public Builder encoding(Object encoding) {
            return encoding(Output.of(encoding));
        }

        /**
         * @param encryptedCredential The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder encryptedCredential(@Nullable Output encryptedCredential) {
            $.encryptedCredential = encryptedCredential;
            return this;
        }

        /**
         * @param encryptedCredential The encrypted credential used for authentication. Credentials are encrypted using the integration runtime credential manager. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder encryptedCredential(String encryptedCredential) {
            return encryptedCredential(Output.of(encryptedCredential));
        }

        /**
         * @param logParameters When enabled, parameter values are logged when commands are executed. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder logParameters(@Nullable Output logParameters) {
            $.logParameters = logParameters;
            return this;
        }

        /**
         * @param logParameters When enabled, parameter values are logged when commands are executed. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder logParameters(Object logParameters) {
            return logParameters(Output.of(logParameters));
        }

        /**
         * @param parameters Parameters for linked service.
         * 
         * @return builder
         * 
         */
        public Builder parameters(@Nullable Output> parameters) {
            $.parameters = parameters;
            return this;
        }

        /**
         * @param parameters Parameters for linked service.
         * 
         * @return builder
         * 
         */
        public Builder parameters(Map parameters) {
            return parameters(Output.of(parameters));
        }

        /**
         * @param password The Azure key vault secret reference of password in connection string. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder password(@Nullable Output password) {
            $.password = password;
            return this;
        }

        /**
         * @param password The Azure key vault secret reference of password in connection string. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder password(AzureKeyVaultSecretReferenceArgs password) {
            return password(Output.of(password));
        }

        /**
         * @param pooling Whether connection pooling should be used. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder pooling(@Nullable Output pooling) {
            $.pooling = pooling;
            return this;
        }

        /**
         * @param pooling Whether connection pooling should be used. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder pooling(Object pooling) {
            return pooling(Output.of(pooling));
        }

        /**
         * @param port The port for the connection. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder port(@Nullable Output port) {
            $.port = port;
            return this;
        }

        /**
         * @param port The port for the connection. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder port(Object port) {
            return port(Output.of(port));
        }

        /**
         * @param readBufferSize Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder readBufferSize(@Nullable Output readBufferSize) {
            $.readBufferSize = readBufferSize;
            return this;
        }

        /**
         * @param readBufferSize Determines the size of the internal buffer uses when reading. Increasing may improve performance if transferring large values from the database. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder readBufferSize(Object readBufferSize) {
            return readBufferSize(Output.of(readBufferSize));
        }

        /**
         * @param schema Sets the schema search path. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder schema(@Nullable Output schema) {
            $.schema = schema;
            return this;
        }

        /**
         * @param schema Sets the schema search path. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder schema(Object schema) {
            return schema(Output.of(schema));
        }

        /**
         * @param server Server name for connection. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder server(Output server) {
            $.server = server;
            return this;
        }

        /**
         * @param server Server name for connection. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder server(Object server) {
            return server(Output.of(server));
        }

        /**
         * @param sslCertificate Location of a client certificate to be sent to the server. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslCertificate(@Nullable Output sslCertificate) {
            $.sslCertificate = sslCertificate;
            return this;
        }

        /**
         * @param sslCertificate Location of a client certificate to be sent to the server. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslCertificate(Object sslCertificate) {
            return sslCertificate(Output.of(sslCertificate));
        }

        /**
         * @param sslKey Location of a client key for a client certificate to be sent to the server. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslKey(@Nullable Output sslKey) {
            $.sslKey = sslKey;
            return this;
        }

        /**
         * @param sslKey Location of a client key for a client certificate to be sent to the server. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslKey(Object sslKey) {
            return sslKey(Output.of(sslKey));
        }

        /**
         * @param sslMode SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder sslMode(Output sslMode) {
            $.sslMode = sslMode;
            return this;
        }

        /**
         * @param sslMode SSL mode for connection. Type: integer. 0: disable, 1:allow, 2: prefer, 3: require, 4: verify-ca, 5: verify-full. Type: integer.
         * 
         * @return builder
         * 
         */
        public Builder sslMode(Object sslMode) {
            return sslMode(Output.of(sslMode));
        }

        /**
         * @param sslPassword Password for a key for a client certificate. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslPassword(@Nullable Output sslPassword) {
            $.sslPassword = sslPassword;
            return this;
        }

        /**
         * @param sslPassword Password for a key for a client certificate. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder sslPassword(Object sslPassword) {
            return sslPassword(Output.of(sslPassword));
        }

        /**
         * @param timezone Gets or sets the session timezone. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder timezone(@Nullable Output timezone) {
            $.timezone = timezone;
            return this;
        }

        /**
         * @param timezone Gets or sets the session timezone. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder timezone(Object timezone) {
            return timezone(Output.of(timezone));
        }

        /**
         * @param trustServerCertificate Whether to trust the server certificate without validating it. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder trustServerCertificate(@Nullable Output trustServerCertificate) {
            $.trustServerCertificate = trustServerCertificate;
            return this;
        }

        /**
         * @param trustServerCertificate Whether to trust the server certificate without validating it. Type: boolean.
         * 
         * @return builder
         * 
         */
        public Builder trustServerCertificate(Object trustServerCertificate) {
            return trustServerCertificate(Output.of(trustServerCertificate));
        }

        /**
         * @param type Type of linked service.
         * Expected value is 'PostgreSqlV2'.
         * 
         * @return builder
         * 
         */
        public Builder type(Output type) {
            $.type = type;
            return this;
        }

        /**
         * @param type Type of linked service.
         * Expected value is 'PostgreSqlV2'.
         * 
         * @return builder
         * 
         */
        public Builder type(String type) {
            return type(Output.of(type));
        }

        /**
         * @param username Username for authentication. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder username(Output username) {
            $.username = username;
            return this;
        }

        /**
         * @param username Username for authentication. Type: string.
         * 
         * @return builder
         * 
         */
        public Builder username(Object username) {
            return username(Output.of(username));
        }

        /**
         * @param version Version of the linked service.
         * 
         * @return builder
         * 
         */
        public Builder version(@Nullable Output version) {
            $.version = version;
            return this;
        }

        /**
         * @param version Version of the linked service.
         * 
         * @return builder
         * 
         */
        public Builder version(String version) {
            return version(Output.of(version));
        }

        public PostgreSqlV2LinkedServiceArgs build() {
            if ($.authenticationType == null) {
                throw new MissingRequiredPropertyException("PostgreSqlV2LinkedServiceArgs", "authenticationType");
            }
            if ($.database == null) {
                throw new MissingRequiredPropertyException("PostgreSqlV2LinkedServiceArgs", "database");
            }
            if ($.server == null) {
                throw new MissingRequiredPropertyException("PostgreSqlV2LinkedServiceArgs", "server");
            }
            if ($.sslMode == null) {
                throw new MissingRequiredPropertyException("PostgreSqlV2LinkedServiceArgs", "sslMode");
            }
            $.type = Codegen.stringProp("type").output().arg($.type).require();
            if ($.username == null) {
                throw new MissingRequiredPropertyException("PostgreSqlV2LinkedServiceArgs", "username");
            }
            return $;
        }
    }

}