com.pulumi.digitalocean.DatabaseUserArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of digitalocean Show documentation
Show all versions of digitalocean Show documentation
A Pulumi package for creating and managing DigitalOcean cloud resources.
// *** 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.digitalocean;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.digitalocean.inputs.DatabaseUserSettingArgs;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class DatabaseUserArgs extends com.pulumi.resources.ResourceArgs {
public static final DatabaseUserArgs Empty = new DatabaseUserArgs();
/**
* The ID of the original source database cluster.
*
*/
@Import(name="clusterId", required=true)
private Output clusterId;
/**
* @return The ID of the original source database cluster.
*
*/
public Output clusterId() {
return this.clusterId;
}
/**
* The authentication method to use for connections to the MySQL user account. The valid values are `mysql_native_password` or `caching_sha2_password` (this is the default).
*
*/
@Import(name="mysqlAuthPlugin")
private @Nullable Output mysqlAuthPlugin;
/**
* @return The authentication method to use for connections to the MySQL user account. The valid values are `mysql_native_password` or `caching_sha2_password` (this is the default).
*
*/
public Optional