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

xyz.block.ftl.v1.SecretProvider Maven / Gradle / Ivy

There is a newer version: 0.368.1
Show newest version
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: xyz/block/ftl/v1/ftl.proto

// Protobuf Java Version: 3.25.4
package xyz.block.ftl.v1;

/**
 * Protobuf enum {@code xyz.block.ftl.v1.SecretProvider}
 */
public enum SecretProvider
    implements com.google.protobuf.ProtocolMessageEnum {
  /**
   * 
   * Write values inline in the configuration file.
   * 
* * SECRET_INLINE = 0; */ SECRET_INLINE(0), /** *
   * Print configuration as environment variables.
   * 
* * SECRET_ENVAR = 1; */ SECRET_ENVAR(1), /** *
   * Write to the system keychain.
   * 
* * SECRET_KEYCHAIN = 2; */ SECRET_KEYCHAIN(2), /** *
   * Store a secret in the 1Password vault.
   * 
* * SECRET_OP = 3; */ SECRET_OP(3), /** *
   * Store a secret in the AWS Secrets Manager.
   * 
* * SECRET_ASM = 4; */ SECRET_ASM(4), UNRECOGNIZED(-1), ; /** *
   * Write values inline in the configuration file.
   * 
* * SECRET_INLINE = 0; */ public static final int SECRET_INLINE_VALUE = 0; /** *
   * Print configuration as environment variables.
   * 
* * SECRET_ENVAR = 1; */ public static final int SECRET_ENVAR_VALUE = 1; /** *
   * Write to the system keychain.
   * 
* * SECRET_KEYCHAIN = 2; */ public static final int SECRET_KEYCHAIN_VALUE = 2; /** *
   * Store a secret in the 1Password vault.
   * 
* * SECRET_OP = 3; */ public static final int SECRET_OP_VALUE = 3; /** *
   * Store a secret in the AWS Secrets Manager.
   * 
* * SECRET_ASM = 4; */ public static final int SECRET_ASM_VALUE = 4; public final int getNumber() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalArgumentException( "Can't get the number of an unknown enum value."); } return value; } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. * @deprecated Use {@link #forNumber(int)} instead. */ @java.lang.Deprecated public static SecretProvider valueOf(int value) { return forNumber(value); } /** * @param value The numeric wire value of the corresponding enum entry. * @return The enum associated with the given numeric wire value. */ public static SecretProvider forNumber(int value) { switch (value) { case 0: return SECRET_INLINE; case 1: return SECRET_ENVAR; case 2: return SECRET_KEYCHAIN; case 3: return SECRET_OP; case 4: return SECRET_ASM; default: return null; } } public static com.google.protobuf.Internal.EnumLiteMap internalGetValueMap() { return internalValueMap; } private static final com.google.protobuf.Internal.EnumLiteMap< SecretProvider> internalValueMap = new com.google.protobuf.Internal.EnumLiteMap() { public SecretProvider findValueByNumber(int number) { return SecretProvider.forNumber(number); } }; public final com.google.protobuf.Descriptors.EnumValueDescriptor getValueDescriptor() { if (this == UNRECOGNIZED) { throw new java.lang.IllegalStateException( "Can't get the descriptor of an unrecognized enum value."); } return getDescriptor().getValues().get(ordinal()); } public final com.google.protobuf.Descriptors.EnumDescriptor getDescriptorForType() { return getDescriptor(); } public static final com.google.protobuf.Descriptors.EnumDescriptor getDescriptor() { return xyz.block.ftl.v1.Ftl.getDescriptor().getEnumTypes().get(2); } private static final SecretProvider[] VALUES = values(); public static SecretProvider valueOf( com.google.protobuf.Descriptors.EnumValueDescriptor desc) { if (desc.getType() != getDescriptor()) { throw new java.lang.IllegalArgumentException( "EnumValueDescriptor is not for this type."); } if (desc.getIndex() == -1) { return UNRECOGNIZED; } return VALUES[desc.getIndex()]; } private final int value; private SecretProvider(int value) { this.value = value; } // @@protoc_insertion_point(enum_scope:xyz.block.ftl.v1.SecretProvider) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy