org.mongodb.awscdk.resources.mongodbatlas.ProjectTeam Maven / Gradle / Ivy
Show all versions of awscdk-resources-mongodbatlas Show documentation
package org.mongodb.awscdk.resources.mongodbatlas;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.101.0 (build b95fe5d)", date = "2024-07-30T09:54:29.056Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.ProjectTeam")
@software.amazon.jsii.Jsii.Proxy(ProjectTeam.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface ProjectTeam extends software.amazon.jsii.JsiiSerializable {
/**
* One or more organization- or project-level roles to assign to the MongoDB Cloud user.
*
* tems Enum: "GROUP_CLUSTER_MANAGER" "GROUP_DATA_ACCESS_ADMIN" "GROUP_DATA_ACCESS_READ_ONLY" "GROUP_DATA_ACCESS_READ_WRITE" "GROUP_OWNER" "GROUP_READ_ONLY"
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.util.List getRoleNames() {
return null;
}
/**
* Unique 24-hexadecimal character string that identifies the team.
*
* string = 24 characters ^([a-f0-9]{24})$
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
default @org.jetbrains.annotations.Nullable java.lang.String getTeamId() {
return null;
}
/**
* @return a {@link Builder} of {@link ProjectTeam}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ProjectTeam}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
java.util.List roleNames;
java.lang.String teamId;
/**
* Sets the value of {@link ProjectTeam#getRoleNames}
* @param roleNames One or more organization- or project-level roles to assign to the MongoDB Cloud user.
* tems Enum: "GROUP_CLUSTER_MANAGER" "GROUP_DATA_ACCESS_ADMIN" "GROUP_DATA_ACCESS_READ_ONLY" "GROUP_DATA_ACCESS_READ_WRITE" "GROUP_OWNER" "GROUP_READ_ONLY"
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder roleNames(java.util.List roleNames) {
this.roleNames = roleNames;
return this;
}
/**
* Sets the value of {@link ProjectTeam#getTeamId}
* @param teamId Unique 24-hexadecimal character string that identifies the team.
* string = 24 characters ^([a-f0-9]{24})$
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder teamId(java.lang.String teamId) {
this.teamId = teamId;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ProjectTeam}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public ProjectTeam build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ProjectTeam}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ProjectTeam {
private final java.util.List roleNames;
private final java.lang.String teamId;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.roleNames = software.amazon.jsii.Kernel.get(this, "roleNames", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class)));
this.teamId = software.amazon.jsii.Kernel.get(this, "teamId", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.roleNames = builder.roleNames;
this.teamId = builder.teamId;
}
@Override
public final java.util.List getRoleNames() {
return this.roleNames;
}
@Override
public final java.lang.String getTeamId() {
return this.teamId;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
if (this.getRoleNames() != null) {
data.set("roleNames", om.valueToTree(this.getRoleNames()));
}
if (this.getTeamId() != null) {
data.set("teamId", om.valueToTree(this.getTeamId()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.ProjectTeam"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ProjectTeam.Jsii$Proxy that = (ProjectTeam.Jsii$Proxy) o;
if (this.roleNames != null ? !this.roleNames.equals(that.roleNames) : that.roleNames != null) return false;
return this.teamId != null ? this.teamId.equals(that.teamId) : that.teamId == null;
}
@Override
public final int hashCode() {
int result = this.roleNames != null ? this.roleNames.hashCode() : 0;
result = 31 * result + (this.teamId != null ? this.teamId.hashCode() : 0);
return result;
}
}
}