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

com.pulumi.azurenative.datafactory.inputs.AppFiguresLinkedServiceArgs Maven / Gradle / Ivy

The 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.azurenative.datafactory.inputs.SecureStringArgs;
import com.pulumi.core.Either;
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 AppFigures.
 * 
 */
public final class AppFiguresLinkedServiceArgs extends com.pulumi.resources.ResourceArgs {

    public static final AppFiguresLinkedServiceArgs Empty = new AppFiguresLinkedServiceArgs();

    /**
     * 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 client key for the AppFigures source.
     * 
     */
    @Import(name="clientKey", required=true)
    private Output> clientKey;

    /**
     * @return The client key for the AppFigures source.
     * 
     */
    public Output> clientKey() {
        return this.clientKey;
    }

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

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

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

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

    /**
     * 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 password of the AppFigures source.
     * 
     */
    @Import(name="password", required=true)
    private Output> password;

    /**
     * @return The password of the AppFigures source.
     * 
     */
    public Output> password() {
        return this.password;
    }

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

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

    /**
     * The username of the Appfigures source. Type: string (or Expression with resultType string).
     * 
     */
    @Import(name="userName", required=true)
    private Output userName;

    /**
     * @return The username of the Appfigures source. Type: string (or Expression with resultType 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 AppFiguresLinkedServiceArgs() {}

    private AppFiguresLinkedServiceArgs(AppFiguresLinkedServiceArgs $) {
        this.annotations = $.annotations;
        this.clientKey = $.clientKey;
        this.connectVia = $.connectVia;
        this.description = $.description;
        this.parameters = $.parameters;
        this.password = $.password;
        this.type = $.type;
        this.userName = $.userName;
        this.version = $.version;
    }

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

    public static final class Builder {
        private AppFiguresLinkedServiceArgs $;

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

        public Builder(AppFiguresLinkedServiceArgs defaults) {
            $ = new AppFiguresLinkedServiceArgs(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 clientKey The client key for the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder clientKey(Output> clientKey) {
            $.clientKey = clientKey;
            return this;
        }

        /**
         * @param clientKey The client key for the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder clientKey(Either clientKey) {
            return clientKey(Output.of(clientKey));
        }

        /**
         * @param clientKey The client key for the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder clientKey(AzureKeyVaultSecretReferenceArgs clientKey) {
            return clientKey(Either.ofLeft(clientKey));
        }

        /**
         * @param clientKey The client key for the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder clientKey(SecureStringArgs clientKey) {
            return clientKey(Either.ofRight(clientKey));
        }

        /**
         * @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 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 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 password of the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder password(Output> password) {
            $.password = password;
            return this;
        }

        /**
         * @param password The password of the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder password(Either password) {
            return password(Output.of(password));
        }

        /**
         * @param password The password of the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder password(AzureKeyVaultSecretReferenceArgs password) {
            return password(Either.ofLeft(password));
        }

        /**
         * @param password The password of the AppFigures source.
         * 
         * @return builder
         * 
         */
        public Builder password(SecureStringArgs password) {
            return password(Either.ofRight(password));
        }

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

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

        /**
         * @param userName The username of the Appfigures source. Type: string (or Expression with resultType string).
         * 
         * @return builder
         * 
         */
        public Builder userName(Output userName) {
            $.userName = userName;
            return this;
        }

        /**
         * @param userName The username of the Appfigures source. Type: string (or Expression with resultType 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 AppFiguresLinkedServiceArgs build() {
            if ($.clientKey == null) {
                throw new MissingRequiredPropertyException("AppFiguresLinkedServiceArgs", "clientKey");
            }
            if ($.password == null) {
                throw new MissingRequiredPropertyException("AppFiguresLinkedServiceArgs", "password");
            }
            $.type = Codegen.stringProp("type").output().arg($.type).require();
            if ($.userName == null) {
                throw new MissingRequiredPropertyException("AppFiguresLinkedServiceArgs", "userName");
            }
            return $;
        }
    }

}