io.github.cdklabs.cdk.docker.image.deployment.DockerImageDeploymentProps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdk-docker-image-deployment Show documentation
Show all versions of cdk-docker-image-deployment Show documentation
This module allows you to copy docker image assets to a repository you control. This can be necessary if you want to build a Docker image in one CDK app and consume it in a different app or outside the CDK.
package io.github.cdklabs.cdk.docker.image.deployment;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-28T00:26:35.235Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.docker.image.deployment.$Module.class, fqn = "cdk-docker-image-deployment.DockerImageDeploymentProps")
@software.amazon.jsii.Jsii.Proxy(DockerImageDeploymentProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public interface DockerImageDeploymentProps extends software.amazon.jsii.JsiiSerializable {
/**
* Destination repository to deploy the image to.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.docker.image.deployment.Destination getDestination();
/**
* Source of the image to deploy.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@org.jetbrains.annotations.NotNull io.github.cdklabs.cdk.docker.image.deployment.Source getSource();
/**
* @return a {@link Builder} of {@link DockerImageDeploymentProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link DockerImageDeploymentProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public static final class Builder implements software.amazon.jsii.Builder {
io.github.cdklabs.cdk.docker.image.deployment.Destination destination;
io.github.cdklabs.cdk.docker.image.deployment.Source source;
/**
* Sets the value of {@link DockerImageDeploymentProps#getDestination}
* @param destination Destination repository to deploy the image to. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder destination(io.github.cdklabs.cdk.docker.image.deployment.Destination destination) {
this.destination = destination;
return this;
}
/**
* Sets the value of {@link DockerImageDeploymentProps#getSource}
* @param source Source of the image to deploy. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
public Builder source(io.github.cdklabs.cdk.docker.image.deployment.Source source) {
this.source = source;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link DockerImageDeploymentProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@Override
public DockerImageDeploymentProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link DockerImageDeploymentProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements DockerImageDeploymentProps {
private final io.github.cdklabs.cdk.docker.image.deployment.Destination destination;
private final io.github.cdklabs.cdk.docker.image.deployment.Source source;
/**
* 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.destination = software.amazon.jsii.Kernel.get(this, "destination", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.docker.image.deployment.Destination.class));
this.source = software.amazon.jsii.Kernel.get(this, "source", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.docker.image.deployment.Source.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.destination = java.util.Objects.requireNonNull(builder.destination, "destination is required");
this.source = java.util.Objects.requireNonNull(builder.source, "source is required");
}
@Override
public final io.github.cdklabs.cdk.docker.image.deployment.Destination getDestination() {
return this.destination;
}
@Override
public final io.github.cdklabs.cdk.docker.image.deployment.Source getSource() {
return this.source;
}
@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("destination", om.valueToTree(this.getDestination()));
data.set("source", om.valueToTree(this.getSource()));
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk-docker-image-deployment.DockerImageDeploymentProps"));
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;
DockerImageDeploymentProps.Jsii$Proxy that = (DockerImageDeploymentProps.Jsii$Proxy) o;
if (!destination.equals(that.destination)) return false;
return this.source.equals(that.source);
}
@Override
public final int hashCode() {
int result = this.destination.hashCode();
result = 31 * result + (this.source.hashCode());
return result;
}
}
}