io.temporal.api.namespace.v1.UpdateNamespaceInfoOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: temporal/api/namespace/v1/message.proto
package io.temporal.api.namespace.v1;
@javax.annotation.Generated(value="protoc", comments="annotations:UpdateNamespaceInfoOrBuilder.java.pb.meta")
public interface UpdateNamespaceInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:temporal.api.namespace.v1.UpdateNamespaceInfo)
com.google.protobuf.MessageOrBuilder {
/**
* string description = 1;
* @return The description.
*/
java.lang.String getDescription();
/**
* string description = 1;
* @return The bytes for description.
*/
com.google.protobuf.ByteString
getDescriptionBytes();
/**
* string owner_email = 2;
* @return The ownerEmail.
*/
java.lang.String getOwnerEmail();
/**
* string owner_email = 2;
* @return The bytes for ownerEmail.
*/
com.google.protobuf.ByteString
getOwnerEmailBytes();
/**
*
* 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;
*/
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;
*/
boolean containsData(
java.lang.String key);
/**
* Use {@link #getDataMap()} instead.
*/
@java.lang.Deprecated
java.util.Map
getData();
/**
*
* 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;
*/
java.util.Map
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;
*/
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;
*/
java.lang.String getDataOrThrow(
java.lang.String key);
/**
*
* 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;
* @return The enum numeric value on the wire for state.
*/
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;
* @return The state.
*/
io.temporal.api.enums.v1.NamespaceState getState();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy