EnterpriseProxyAccessArgs

data class EnterpriseProxyAccessArgs(val indepAccount: Output<String>? = null, val indepPassword: Output<String>? = null, val proxyAccessId: Output<String>? = null, val proxyId: Output<String>? = null, val userId: Output<String>? = null) : ConvertibleToJava<EnterpriseProxyAccessArgs>

Provides a DMS Enterprise Proxy Access resource. For information about DMS Enterprise Proxy Access and how to use it, see What is Proxy Access.

NOTE: Available in v1.195.0+.

Example Usage

Basic Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.dms.EnterpriseProxyAccess;
import com.pulumi.alicloud.dms.EnterpriseProxyAccessArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var default_ = new EnterpriseProxyAccess("default", EnterpriseProxyAccessArgs.builder()
.indepAccount("dmstest")
.indepPassword("PASSWORD-DEMO")
.proxyId(1881)
.userId(104442)
.build());
}
}

Import

DMS Enterprise Proxy Access can be imported using the id, e.g.

$ pulumi import alicloud:dms/enterpriseProxyAccess:EnterpriseProxyAccess example <id>

Constructors

Link copied to clipboard
fun EnterpriseProxyAccessArgs(indepAccount: Output<String>? = null, indepPassword: Output<String>? = null, proxyAccessId: Output<String>? = null, proxyId: Output<String>? = null, userId: Output<String>? = null)

Functions

Link copied to clipboard
open override fun toJava(): EnterpriseProxyAccessArgs

Properties

Link copied to clipboard
val indepAccount: Output<String>? = null

Database account.

Link copied to clipboard
val indepPassword: Output<String>? = null

Database password.

Link copied to clipboard
val proxyAccessId: Output<String>? = null

Security Protection authorization ID. After the target user is authorized by the security protection agent, the system automatically generates a security protection authorization ID, which is globally unique.

Link copied to clipboard
val proxyId: Output<String>? = null

The ID of the security agent.

Link copied to clipboard
val userId: Output<String>? = null

The user ID.