com.pulumi.mongodbatlas.inputs.GetEncryptionAtRestPlainArgs 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.mongodbatlas.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetEncryptionAtRestPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetEncryptionAtRestPlainArgs Empty = new GetEncryptionAtRestPlainArgs();
/**
* Unique 24-hexadecimal digit string that identifies your project.
*
*/
@Import(name="projectId", required=true)
private String projectId;
/**
* @return Unique 24-hexadecimal digit string that identifies your project.
*
*/
public String projectId() {
return this.projectId;
}
private GetEncryptionAtRestPlainArgs() {}
private GetEncryptionAtRestPlainArgs(GetEncryptionAtRestPlainArgs $) {
this.projectId = $.projectId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetEncryptionAtRestPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetEncryptionAtRestPlainArgs $;
public Builder() {
$ = new GetEncryptionAtRestPlainArgs();
}
public Builder(GetEncryptionAtRestPlainArgs defaults) {
$ = new GetEncryptionAtRestPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param projectId Unique 24-hexadecimal digit string that identifies your project.
*
* @return builder
*
*/
public Builder projectId(String projectId) {
$.projectId = projectId;
return this;
}
public GetEncryptionAtRestPlainArgs build() {
if ($.projectId == null) {
throw new MissingRequiredPropertyException("GetEncryptionAtRestPlainArgs", "projectId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy