Interface Ops.SecretOptOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Ops.SecretOpt, Ops.SecretOpt.Builder
Enclosing class:
Ops

public static interface Ops.SecretOptOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    GID of secret file
    ID of secret.
    com.google.protobuf.ByteString
    ID of secret.
    int
    Mode is the filesystem mode of secret file
    boolean
    Optional defines if secret value is required.
    int
    UID of secret file

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getID

      String getID()
       ID of secret. Used for quering the value.
       
      string ID = 1;
      Returns:
      The iD.
    • getIDBytes

      com.google.protobuf.ByteString getIDBytes()
       ID of secret. Used for quering the value.
       
      string ID = 1;
      Returns:
      The bytes for iD.
    • getUid

      int getUid()
       UID of secret file
       
      uint32 uid = 2;
      Returns:
      The uid.
    • getGid

      int getGid()
       GID of secret file
       
      uint32 gid = 3;
      Returns:
      The gid.
    • getMode

      int getMode()
       Mode is the filesystem mode of secret file
       
      uint32 mode = 4;
      Returns:
      The mode.
    • getOptional

      boolean getOptional()
       Optional defines if secret value is required. Error is produced
       if value is not found and optional is false.
       
      bool optional = 5;
      Returns:
      The optional.