Interface UpdateNamespaceInfoOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
UpdateNamespaceInfo, UpdateNamespaceInfo.Builder

@Generated(value="protoc", comments="annotations:UpdateNamespaceInfoOrBuilder.java.pb.meta") public interface UpdateNamespaceInfoOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    A key-value map for any customized purpose.
    Deprecated.
    int
    A key-value map for any customized purpose.
    A key-value map for any customized purpose.
    getDataOrDefault(String key, String defaultValue)
    A key-value map for any customized purpose.
    A key-value map for any customized purpose.
    string description = 1;
    com.google.protobuf.ByteString
    string description = 1;
    string owner_email = 2;
    com.google.protobuf.ByteString
    string owner_email = 2;
    New namespace state, server will reject if transition is not allowed.
    int
    New namespace state, server will reject if transition is not allowed.

    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

    • getDescription

      String getDescription()
      string description = 1;
      Returns:
      The description.
    • getDescriptionBytes

      com.google.protobuf.ByteString getDescriptionBytes()
      string description = 1;
      Returns:
      The bytes for description.
    • getOwnerEmail

      String getOwnerEmail()
      string owner_email = 2;
      Returns:
      The ownerEmail.
    • getOwnerEmailBytes

      com.google.protobuf.ByteString getOwnerEmailBytes()
      string owner_email = 2;
      Returns:
      The bytes for ownerEmail.
    • getDataCount

      int getDataCount()
       A key-value map for any customized purpose.
       If data already exists on the namespace,
       this will merge with the existing key values.
       
      map<string, string> data = 3;
    • containsData

      boolean containsData(String key)
       A key-value map for any customized purpose.
       If data already exists on the namespace,
       this will merge with the existing key values.
       
      map<string, string> data = 3;
    • getData

      Deprecated.
      Use getDataMap() instead.
    • getDataMap

      Map<String,String> getDataMap()
       A key-value map for any customized purpose.
       If data already exists on the namespace,
       this will merge with the existing key values.
       
      map<string, string> data = 3;
    • getDataOrDefault

      String getDataOrDefault(String key, String defaultValue)
       A key-value map for any customized purpose.
       If data already exists on the namespace,
       this will merge with the existing key values.
       
      map<string, string> data = 3;
    • getDataOrThrow

      String getDataOrThrow(String key)
       A key-value map for any customized purpose.
       If data already exists on the namespace,
       this will merge with the existing key values.
       
      map<string, string> data = 3;
    • getStateValue

      int getStateValue()
       New namespace state, server will reject if transition is not allowed.
       Allowed transitions are:
        Registered -> [ Deleted | Deprecated | Handover ]
        Handover -> [ Registered ]
       Default is NAMESPACE_STATE_UNSPECIFIED which is do not change state.
       
      .temporal.api.enums.v1.NamespaceState state = 4;
      Returns:
      The enum numeric value on the wire for state.
    • getState

      NamespaceState getState()
       New namespace state, server will reject if transition is not allowed.
       Allowed transitions are:
        Registered -> [ Deleted | Deprecated | Handover ]
        Handover -> [ Registered ]
       Default is NAMESPACE_STATE_UNSPECIFIED which is do not change state.
       
      .temporal.api.enums.v1.NamespaceState state = 4;
      Returns:
      The state.