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

com.pulumi.googlenative.gkehub.v1beta.enums.FleetObservabilityRoutingConfigMode 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.gkehub.v1beta.enums;

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

    /**
     * mode configures the logs routing mode.
     * 
     */
    @EnumType
    public enum FleetObservabilityRoutingConfigMode {
        /**
         * If UNSPECIFIED, fleet logging feature is disabled.
         * 
         */
        ModeUnspecified("MODE_UNSPECIFIED"),
        /**
         * logs will be copied to the destination project.
         * 
         */
        Copy("COPY"),
        /**
         * logs will be moved to the destination project.
         * 
         */
        Move("MOVE");

        private final String value;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy