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

      All Methods Instance Methods Abstract Methods Deprecated Methods 
      Modifier and Type Method Description
      boolean containsData​(java.lang.String key)
      A key-value map for any customized purpose.
      java.util.Map<java.lang.String,​java.lang.String> getData()
      Deprecated.
      int getDataCount()
      A key-value map for any customized purpose.
      java.util.Map<java.lang.String,​java.lang.String> getDataMap()
      A key-value map for any customized purpose.
      java.lang.String getDataOrDefault​(java.lang.String key, java.lang.String defaultValue)
      A key-value map for any customized purpose.
      java.lang.String getDataOrThrow​(java.lang.String key)
      A key-value map for any customized purpose.
      java.lang.String getDescription()
      string description = 1;
      com.google.protobuf.ByteString getDescriptionBytes()
      string description = 1;
      java.lang.String getOwnerEmail()
      string owner_email = 2;
      com.google.protobuf.ByteString getOwnerEmailBytes()
      string owner_email = 2;
      NamespaceState getState()
      New namespace state, server will reject if transition is not allowed.
      int getStateValue()
      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 Detail

      • getDescription

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

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

        java.lang.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​(java.lang.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
        java.util.Map<java.lang.String,​java.lang.String> getData()
        Deprecated.
        Use getDataMap() instead.
      • getDataMap

        java.util.Map<java.lang.String,​java.lang.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

        java.lang.String getDataOrDefault​(java.lang.String key,
                                          java.lang.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

        java.lang.String getDataOrThrow​(java.lang.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.