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

com.pulumi.googlenative.notebooks.v1.enums.RuntimeSoftwareConfigPostStartupScriptBehavior 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.googlenative.notebooks.v1.enums;

import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;

    /**
     * Behavior for the post startup script.
     * 
     */
    @EnumType
    public enum RuntimeSoftwareConfigPostStartupScriptBehavior {
        /**
         * Unspecified post startup script behavior. Will run only once at creation.
         * 
         */
        PostStartupScriptBehaviorUnspecified("POST_STARTUP_SCRIPT_BEHAVIOR_UNSPECIFIED"),
        /**
         * Runs the post startup script provided during creation at every start.
         * 
         */
        RunEveryStart("RUN_EVERY_START"),
        /**
         * Downloads and runs the provided post startup script at every start.
         * 
         */
        DownloadAndRunEveryStart("DOWNLOAD_AND_RUN_EVERY_START");

        private final String value;

        RuntimeSoftwareConfigPostStartupScriptBehavior(String value) {
            this.value = Objects.requireNonNull(value);
        }

        @EnumType.Converter
        public String getValue() {
            return this.value;
        }

        @Override
        public String toString() {
            return new StringJoiner(", ", "RuntimeSoftwareConfigPostStartupScriptBehavior[", "]")
                .add("value='" + this.value + "'")
                .toString();
        }
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy