com.pulumi.mongodbatlas.inputs.GetEncryptionAtRestPrivateEndpointPlainArgs 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 GetEncryptionAtRestPrivateEndpointPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetEncryptionAtRestPrivateEndpointPlainArgs Empty = new GetEncryptionAtRestPrivateEndpointPlainArgs();
/**
* Label that identifies the cloud provider of the private endpoint.
*
*/
@Import(name="cloudProvider", required=true)
private String cloudProvider;
/**
* @return Label that identifies the cloud provider of the private endpoint.
*
*/
public String cloudProvider() {
return this.cloudProvider;
}
/**
* Unique 24-hexadecimal digit string that identifies the Private Endpoint Service.
*
*/
@Import(name="id", required=true)
private String id;
/**
* @return Unique 24-hexadecimal digit string that identifies the Private Endpoint Service.
*
*/
public String id() {
return this.id;
}
/**
* 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 GetEncryptionAtRestPrivateEndpointPlainArgs() {}
private GetEncryptionAtRestPrivateEndpointPlainArgs(GetEncryptionAtRestPrivateEndpointPlainArgs $) {
this.cloudProvider = $.cloudProvider;
this.id = $.id;
this.projectId = $.projectId;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetEncryptionAtRestPrivateEndpointPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetEncryptionAtRestPrivateEndpointPlainArgs $;
public Builder() {
$ = new GetEncryptionAtRestPrivateEndpointPlainArgs();
}
public Builder(GetEncryptionAtRestPrivateEndpointPlainArgs defaults) {
$ = new GetEncryptionAtRestPrivateEndpointPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param cloudProvider Label that identifies the cloud provider of the private endpoint.
*
* @return builder
*
*/
public Builder cloudProvider(String cloudProvider) {
$.cloudProvider = cloudProvider;
return this;
}
/**
* @param id Unique 24-hexadecimal digit string that identifies the Private Endpoint Service.
*
* @return builder
*
*/
public Builder id(String id) {
$.id = id;
return this;
}
/**
* @param projectId Unique 24-hexadecimal digit string that identifies your project.
*
* @return builder
*
*/
public Builder projectId(String projectId) {
$.projectId = projectId;
return this;
}
public GetEncryptionAtRestPrivateEndpointPlainArgs build() {
if ($.cloudProvider == null) {
throw new MissingRequiredPropertyException("GetEncryptionAtRestPrivateEndpointPlainArgs", "cloudProvider");
}
if ($.id == null) {
throw new MissingRequiredPropertyException("GetEncryptionAtRestPrivateEndpointPlainArgs", "id");
}
if ($.projectId == null) {
throw new MissingRequiredPropertyException("GetEncryptionAtRestPrivateEndpointPlainArgs", "projectId");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy