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

com.pulumi.azurenative.web.StaticSiteBuildDatabaseConnectionArgs Maven / Gradle / Ivy

There is a newer version: 2.82.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.web;

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


public final class StaticSiteBuildDatabaseConnectionArgs extends com.pulumi.resources.ResourceArgs {

    public static final StaticSiteBuildDatabaseConnectionArgs Empty = new StaticSiteBuildDatabaseConnectionArgs();

    /**
     * If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource.
     * 
     */
    @Import(name="connectionIdentity")
    private @Nullable Output connectionIdentity;

    /**
     * @return If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource.
     * 
     */
    public Optional> connectionIdentity() {
        return Optional.ofNullable(this.connectionIdentity);
    }

    /**
     * The connection string to use to connect to the database.
     * 
     */
    @Import(name="connectionString")
    private @Nullable Output connectionString;

    /**
     * @return The connection string to use to connect to the database.
     * 
     */
    public Optional> connectionString() {
        return Optional.ofNullable(this.connectionString);
    }

    /**
     * Name of the database connection.
     * 
     */
    @Import(name="databaseConnectionName")
    private @Nullable Output databaseConnectionName;

    /**
     * @return Name of the database connection.
     * 
     */
    public Optional> databaseConnectionName() {
        return Optional.ofNullable(this.databaseConnectionName);
    }

    /**
     * The stage site identifier.
     * 
     */
    @Import(name="environmentName", required=true)
    private Output environmentName;

    /**
     * @return The stage site identifier.
     * 
     */
    public Output environmentName() {
        return this.environmentName;
    }

    /**
     * Kind of resource.
     * 
     */
    @Import(name="kind")
    private @Nullable Output kind;

    /**
     * @return Kind of resource.
     * 
     */
    public Optional> kind() {
        return Optional.ofNullable(this.kind);
    }

    /**
     * Name of the static site
     * 
     */
    @Import(name="name", required=true)
    private Output name;

    /**
     * @return Name of the static site
     * 
     */
    public Output name() {
        return this.name;
    }

    /**
     * The region of the database resource.
     * 
     */
    @Import(name="region", required=true)
    private Output region;

    /**
     * @return The region of the database resource.
     * 
     */
    public Output region() {
        return this.region;
    }

    /**
     * Name of the resource group to which the resource belongs.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private Output resourceGroupName;

    /**
     * @return Name of the resource group to which the resource belongs.
     * 
     */
    public Output resourceGroupName() {
        return this.resourceGroupName;
    }

    /**
     * The resource id of the database.
     * 
     */
    @Import(name="resourceId", required=true)
    private Output resourceId;

    /**
     * @return The resource id of the database.
     * 
     */
    public Output resourceId() {
        return this.resourceId;
    }

    private StaticSiteBuildDatabaseConnectionArgs() {}

    private StaticSiteBuildDatabaseConnectionArgs(StaticSiteBuildDatabaseConnectionArgs $) {
        this.connectionIdentity = $.connectionIdentity;
        this.connectionString = $.connectionString;
        this.databaseConnectionName = $.databaseConnectionName;
        this.environmentName = $.environmentName;
        this.kind = $.kind;
        this.name = $.name;
        this.region = $.region;
        this.resourceGroupName = $.resourceGroupName;
        this.resourceId = $.resourceId;
    }

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

    public static final class Builder {
        private StaticSiteBuildDatabaseConnectionArgs $;

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

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

        /**
         * @param connectionIdentity If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource.
         * 
         * @return builder
         * 
         */
        public Builder connectionIdentity(@Nullable Output connectionIdentity) {
            $.connectionIdentity = connectionIdentity;
            return this;
        }

        /**
         * @param connectionIdentity If present, the identity is used in conjunction with connection string to connect to the database. Use of the system-assigned managed identity is indicated with the string 'SystemAssigned', while use of a user-assigned managed identity is indicated with the resource id of the managed identity resource.
         * 
         * @return builder
         * 
         */
        public Builder connectionIdentity(String connectionIdentity) {
            return connectionIdentity(Output.of(connectionIdentity));
        }

        /**
         * @param connectionString The connection string to use to connect to the database.
         * 
         * @return builder
         * 
         */
        public Builder connectionString(@Nullable Output connectionString) {
            $.connectionString = connectionString;
            return this;
        }

        /**
         * @param connectionString The connection string to use to connect to the database.
         * 
         * @return builder
         * 
         */
        public Builder connectionString(String connectionString) {
            return connectionString(Output.of(connectionString));
        }

        /**
         * @param databaseConnectionName Name of the database connection.
         * 
         * @return builder
         * 
         */
        public Builder databaseConnectionName(@Nullable Output databaseConnectionName) {
            $.databaseConnectionName = databaseConnectionName;
            return this;
        }

        /**
         * @param databaseConnectionName Name of the database connection.
         * 
         * @return builder
         * 
         */
        public Builder databaseConnectionName(String databaseConnectionName) {
            return databaseConnectionName(Output.of(databaseConnectionName));
        }

        /**
         * @param environmentName The stage site identifier.
         * 
         * @return builder
         * 
         */
        public Builder environmentName(Output environmentName) {
            $.environmentName = environmentName;
            return this;
        }

        /**
         * @param environmentName The stage site identifier.
         * 
         * @return builder
         * 
         */
        public Builder environmentName(String environmentName) {
            return environmentName(Output.of(environmentName));
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(@Nullable Output kind) {
            $.kind = kind;
            return this;
        }

        /**
         * @param kind Kind of resource.
         * 
         * @return builder
         * 
         */
        public Builder kind(String kind) {
            return kind(Output.of(kind));
        }

        /**
         * @param name Name of the static site
         * 
         * @return builder
         * 
         */
        public Builder name(Output name) {
            $.name = name;
            return this;
        }

        /**
         * @param name Name of the static site
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            return name(Output.of(name));
        }

        /**
         * @param region The region of the database resource.
         * 
         * @return builder
         * 
         */
        public Builder region(Output region) {
            $.region = region;
            return this;
        }

        /**
         * @param region The region of the database resource.
         * 
         * @return builder
         * 
         */
        public Builder region(String region) {
            return region(Output.of(region));
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(Output resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        /**
         * @param resourceGroupName Name of the resource group to which the resource belongs.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            return resourceGroupName(Output.of(resourceGroupName));
        }

        /**
         * @param resourceId The resource id of the database.
         * 
         * @return builder
         * 
         */
        public Builder resourceId(Output resourceId) {
            $.resourceId = resourceId;
            return this;
        }

        /**
         * @param resourceId The resource id of the database.
         * 
         * @return builder
         * 
         */
        public Builder resourceId(String resourceId) {
            return resourceId(Output.of(resourceId));
        }

        public StaticSiteBuildDatabaseConnectionArgs build() {
            if ($.environmentName == null) {
                throw new MissingRequiredPropertyException("StaticSiteBuildDatabaseConnectionArgs", "environmentName");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("StaticSiteBuildDatabaseConnectionArgs", "name");
            }
            if ($.region == null) {
                throw new MissingRequiredPropertyException("StaticSiteBuildDatabaseConnectionArgs", "region");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("StaticSiteBuildDatabaseConnectionArgs", "resourceGroupName");
            }
            if ($.resourceId == null) {
                throw new MissingRequiredPropertyException("StaticSiteBuildDatabaseConnectionArgs", "resourceId");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy