Interface UpdateScheduleRequestOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
UpdateScheduleRequest,UpdateScheduleRequest.Builder
@Generated(value="protoc", comments="annotations:UpdateScheduleRequestOrBuilder.java.pb.meta") public interface UpdateScheduleRequestOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetConflictToken()This can be the value of conflict_token from a DescribeScheduleResponse, which will cause this request to fail if the schedule has been modified between the Describe and this Update.java.lang.StringgetIdentity()The identity of the client who initiated this request.com.google.protobuf.ByteStringgetIdentityBytes()The identity of the client who initiated this request.java.lang.StringgetNamespace()The namespace of the schedule to update.com.google.protobuf.ByteStringgetNamespaceBytes()The namespace of the schedule to update.java.lang.StringgetRequestId()A unique identifier for this update request for idempotence.com.google.protobuf.ByteStringgetRequestIdBytes()A unique identifier for this update request for idempotence.SchedulegetSchedule()The new schedule.java.lang.StringgetScheduleId()The id of the schedule to update.com.google.protobuf.ByteStringgetScheduleIdBytes()The id of the schedule to update.ScheduleOrBuildergetScheduleOrBuilder()The new schedule.booleanhasSchedule()The new schedule.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getNamespace
java.lang.String getNamespace()
The namespace of the schedule to update.
string namespace = 1;- Returns:
- The namespace.
-
getNamespaceBytes
com.google.protobuf.ByteString getNamespaceBytes()
The namespace of the schedule to update.
string namespace = 1;- Returns:
- The bytes for namespace.
-
getScheduleId
java.lang.String getScheduleId()
The id of the schedule to update.
string schedule_id = 2;- Returns:
- The scheduleId.
-
getScheduleIdBytes
com.google.protobuf.ByteString getScheduleIdBytes()
The id of the schedule to update.
string schedule_id = 2;- Returns:
- The bytes for scheduleId.
-
hasSchedule
boolean hasSchedule()
The new schedule. The four main fields of the schedule (spec, action, policies, state) are replaced completely by the values in this message.
.temporal.api.schedule.v1.Schedule schedule = 3;- Returns:
- Whether the schedule field is set.
-
getSchedule
Schedule getSchedule()
The new schedule. The four main fields of the schedule (spec, action, policies, state) are replaced completely by the values in this message.
.temporal.api.schedule.v1.Schedule schedule = 3;- Returns:
- The schedule.
-
getScheduleOrBuilder
ScheduleOrBuilder getScheduleOrBuilder()
The new schedule. The four main fields of the schedule (spec, action, policies, state) are replaced completely by the values in this message.
.temporal.api.schedule.v1.Schedule schedule = 3;
-
getConflictToken
com.google.protobuf.ByteString getConflictToken()
This can be the value of conflict_token from a DescribeScheduleResponse, which will cause this request to fail if the schedule has been modified between the Describe and this Update. If missing, the schedule will be updated unconditionally.
bytes conflict_token = 4;- Returns:
- The conflictToken.
-
getIdentity
java.lang.String getIdentity()
The identity of the client who initiated this request.
string identity = 5;- Returns:
- The identity.
-
getIdentityBytes
com.google.protobuf.ByteString getIdentityBytes()
The identity of the client who initiated this request.
string identity = 5;- Returns:
- The bytes for identity.
-
getRequestId
java.lang.String getRequestId()
A unique identifier for this update request for idempotence. Typically UUIDv4.
string request_id = 6;- Returns:
- The requestId.
-
getRequestIdBytes
com.google.protobuf.ByteString getRequestIdBytes()
A unique identifier for this update request for idempotence. Typically UUIDv4.
string request_id = 6;- Returns:
- The bytes for requestId.
-
-