com.pulumi.azure.mssql.inputs.DatabaseImportArgs Maven / Gradle / Ivy
// *** 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.azure.mssql.inputs;
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 DatabaseImportArgs extends com.pulumi.resources.ResourceArgs {
public static final DatabaseImportArgs Empty = new DatabaseImportArgs();
/**
* Specifies the name of the SQL administrator.
*
*/
@Import(name="administratorLogin", required=true)
private Output administratorLogin;
/**
* @return Specifies the name of the SQL administrator.
*
*/
public Output administratorLogin() {
return this.administratorLogin;
}
/**
* Specifies the password of the SQL administrator.
*
*/
@Import(name="administratorLoginPassword", required=true)
private Output administratorLoginPassword;
/**
* @return Specifies the password of the SQL administrator.
*
*/
public Output administratorLoginPassword() {
return this.administratorLoginPassword;
}
/**
* Specifies the type of authentication used to access the server. Valid values are `SQL` or `ADPassword`.
*
*/
@Import(name="authenticationType", required=true)
private Output authenticationType;
/**
* @return Specifies the type of authentication used to access the server. Valid values are `SQL` or `ADPassword`.
*
*/
public Output authenticationType() {
return this.authenticationType;
}
/**
* The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for storage_uri parameter.
*
*/
@Import(name="storageAccountId")
private @Nullable Output storageAccountId;
/**
* @return The resource id for the storage account used to store BACPAC file. If set, private endpoint connection will be created for the storage account. Must match storage account used for storage_uri parameter.
*
*/
public Optional