All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.mongodb.awscdk.resources.mongodbatlas.AuthConfig Maven / Gradle / Ivy

There is a newer version: 3.9.0
Show newest version
package org.mongodb.awscdk.resources.mongodbatlas;

/**
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.101.0 (build b95fe5d)", date = "2024-07-30T09:54:28.888Z")
@software.amazon.jsii.Jsii(module = org.mongodb.awscdk.resources.mongodbatlas.$Module.class, fqn = "awscdk-resources-mongodbatlas.AuthConfig")
@software.amazon.jsii.Jsii.Proxy(AuthConfig.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface AuthConfig extends software.amazon.jsii.JsiiSerializable {

    /**
     * The type of authentication event that the trigger listens for.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    @org.jetbrains.annotations.NotNull org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType getOperationType();

    /**
     * The type(s) of authentication provider that the trigger listens to.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    @org.jetbrains.annotations.NotNull java.util.List getProviders();

    /**
     * @return a {@link Builder} of {@link AuthConfig}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    static Builder builder() {
        return new Builder();
    }
    /**
     * A builder for {@link AuthConfig}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    public static final class Builder implements software.amazon.jsii.Builder {
        org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType operationType;
        java.util.List providers;

        /**
         * Sets the value of {@link AuthConfig#getOperationType}
         * @param operationType The type of authentication event that the trigger listens for. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
        public Builder operationType(org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType operationType) {
            this.operationType = operationType;
            return this;
        }

        /**
         * Sets the value of {@link AuthConfig#getProviders}
         * @param providers The type(s) of authentication provider that the trigger listens to. This parameter is required.
         * @return {@code this}
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
        @SuppressWarnings("unchecked")
        public Builder providers(java.util.List providers) {
            this.providers = (java.util.List)providers;
            return this;
        }

        /**
         * Builds the configured instance.
         * @return a new instance of {@link AuthConfig}
         * @throws NullPointerException if any required attribute was not provided
         */
        @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
        @Override
        public AuthConfig build() {
            return new Jsii$Proxy(this);
        }
    }

    /**
     * An implementation for {@link AuthConfig}
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    @software.amazon.jsii.Internal
    final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AuthConfig {
        private final org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType operationType;
        private final java.util.List providers;

        /**
         * 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.operationType = software.amazon.jsii.Kernel.get(this, "operationType", software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType.class));
            this.providers = software.amazon.jsii.Kernel.get(this, "providers", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(org.mongodb.awscdk.resources.mongodbatlas.AuthConfigProviders.class)));
        }

        /**
         * Constructor that initializes the object based on literal property values passed by the {@link Builder}.
         */
        @SuppressWarnings("unchecked")
        protected Jsii$Proxy(final Builder builder) {
            super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
            this.operationType = java.util.Objects.requireNonNull(builder.operationType, "operationType is required");
            this.providers = (java.util.List)java.util.Objects.requireNonNull(builder.providers, "providers is required");
        }

        @Override
        public final org.mongodb.awscdk.resources.mongodbatlas.AuthConfigOperationType getOperationType() {
            return this.operationType;
        }

        @Override
        public final java.util.List getProviders() {
            return this.providers;
        }

        @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();

            data.set("operationType", om.valueToTree(this.getOperationType()));
            data.set("providers", om.valueToTree(this.getProviders()));

            final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
            struct.set("fqn", om.valueToTree("awscdk-resources-mongodbatlas.AuthConfig"));
            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;

            AuthConfig.Jsii$Proxy that = (AuthConfig.Jsii$Proxy) o;

            if (!operationType.equals(that.operationType)) return false;
            return this.providers.equals(that.providers);
        }

        @Override
        public final int hashCode() {
            int result = this.operationType.hashCode();
            result = 31 * result + (this.providers.hashCode());
            return result;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy