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

org.cdk8s.operator.Operator Maven / Gradle / Ivy

There is a newer version: 0.1.320
Show newest version
package org.cdk8s.operator;

/**
 * A CDK8s app which allows implementing Kubernetes operators using CDK8s constructs.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-27T12:13:19.684Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
@software.amazon.jsii.Jsii(module = org.cdk8s.operator.$Module.class, fqn = "cdk8s-operator.Operator")
public class Operator extends org.cdk8s.App {

    protected Operator(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected Operator(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
        super(initializationMode);
    }

    /**
     * @param props
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    public Operator(final @org.jetbrains.annotations.Nullable org.cdk8s.operator.OperatorProps props) {
        super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
        software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { props });
    }

    /**
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable)
    public Operator() {
        super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
        software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this);
    }

    /**
     * Adds a custom resource provider to this operator.
     * 

* @param provider The provider to add. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public void addProvider(final @org.jetbrains.annotations.NotNull org.cdk8s.operator.CustomResourceProvider provider) { software.amazon.jsii.Kernel.call(this, "addProvider", software.amazon.jsii.NativeType.VOID, new Object[] { java.util.Objects.requireNonNull(provider, "provider is required") }); } /** * Reads a Kubernetes manifest in JSON format from STDIN or the file specified as the first positional command-line argument. *

* This manifest is expected to * include a single Kubernetes resource. Then, we match apiVersion and * kind to one of the registered providers and if we do, we invoke * apply(), passing it the spec of the input manifest and a chart as a * scope. The chart is then synthesized and the output manifest is written to * STDOUT. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public void synth() { software.amazon.jsii.Kernel.call(this, "synth", software.amazon.jsii.NativeType.VOID); } /** * A fluent builder for {@link org.cdk8s.operator.Operator}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { /** * @return a new instance of {@link Builder}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static Builder create() { return new Builder(); } private org.cdk8s.operator.OperatorProps.Builder props; private Builder() { } /** * A Kubernetes JSON manifest with a single resource that is matched against one of the providers within this operator. *

* Default: - first position command-line argument or "/dev/stdin" *

* @return {@code this} * @param inputFile A Kubernetes JSON manifest with a single resource that is matched against one of the providers within this operator. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder inputFile(final java.lang.String inputFile) { this.props().inputFile(inputFile); return this; } /** * Where to write the synthesized output. *

* Default: "/dev/stdout" *

* @return {@code this} * @param outputFile Where to write the synthesized output. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder outputFile(final java.lang.String outputFile) { this.props().outputFile(outputFile); return this; } /** * @return a newly built instance of {@link org.cdk8s.operator.Operator}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public org.cdk8s.operator.Operator build() { return new org.cdk8s.operator.Operator( this.props != null ? this.props.build() : null ); } private org.cdk8s.operator.OperatorProps.Builder props() { if (this.props == null) { this.props = new org.cdk8s.operator.OperatorProps.Builder(); } return this.props; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy