Class UpdateWorkerVersioningRulesRequest.Types.CommitBuildId
- Namespace
- Temporalio.Api.WorkflowService.V1
- Assembly
- Temporalio.dll
This command is intended to be used to complete the rollout of a Build ID and cleanup unnecessary rules possibly created during a gradual rollout. Specifically, this command will make the following changes atomically:
- Adds an assignment rule (with full ramp) for the target Build ID at the end of the list.
- Removes all previously added assignment rules to the given target Build ID (if any).
- Removes any fully-ramped assignment rule for other Build IDs.
public sealed class UpdateWorkerVersioningRulesRequest.Types.CommitBuildId : IMessage<UpdateWorkerVersioningRulesRequest.Types.CommitBuildId>, IEquatable<UpdateWorkerVersioningRulesRequest.Types.CommitBuildId>, IDeepCloneable<UpdateWorkerVersioningRulesRequest.Types.CommitBuildId>, IBufferMessage, IMessage
- Inheritance
-
UpdateWorkerVersioningRulesRequest.Types.CommitBuildId
- Implements
-
IBufferMessageIMessage
- Inherited Members
Constructors
CommitBuildId()
public CommitBuildId()
CommitBuildId(CommitBuildId)
public CommitBuildId(UpdateWorkerVersioningRulesRequest.Types.CommitBuildId other)
Parameters
Fields
ForceFieldNumber
Field number for the "force" field.
public const int ForceFieldNumber = 2
Field Value
TargetBuildIdFieldNumber
Field number for the "target_build_id" field.
public const int TargetBuildIdFieldNumber = 1
Field Value
Properties
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
Force
To prevent committing invalid Build IDs, we reject the request if no
pollers has been seen recently for this Build ID. Use the force
option to disable this validation.
public bool Force { get; set; }
Property Value
Parser
public static MessageParser<UpdateWorkerVersioningRulesRequest.Types.CommitBuildId> Parser { get; }
Property Value
- MessageParser<UpdateWorkerVersioningRulesRequest.Types.CommitBuildId>
TargetBuildId
public string TargetBuildId { get; set; }
Property Value
Methods
CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
public int CalculateSize()
Returns
- int
The number of bytes required to write this message to a coded output stream.
Clone()
Creates a deep clone of this object.
public UpdateWorkerVersioningRulesRequest.Types.CommitBuildId Clone()
Returns
- UpdateWorkerVersioningRulesRequest.Types.CommitBuildId
A deep clone of this object.
Equals(object)
Determines whether the specified object is equal to the current object.
public override bool Equals(object other)
Parameters
other
object
Returns
Equals(CommitBuildId)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(UpdateWorkerVersioningRulesRequest.Types.CommitBuildId other)
Parameters
other
UpdateWorkerVersioningRulesRequest.Types.CommitBuildIdAn object to compare with this object.
Returns
GetHashCode()
Serves as the default hash function.
public override int GetHashCode()
Returns
- int
A hash code for the current object.
MergeFrom(CodedInputStream)
Merges the data from the specified coded input stream with the current message.
public void MergeFrom(CodedInputStream input)
Parameters
input
CodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(CommitBuildId)
Merges the given message into this one.
public void MergeFrom(UpdateWorkerVersioningRulesRequest.Types.CommitBuildId other)
Parameters
Remarks
See the user guide for precise merge semantics.
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.
WriteTo(CodedOutputStream)
Writes the data to the given coded output stream.
public void WriteTo(CodedOutputStream output)
Parameters
output
CodedOutputStreamCoded output stream to write the data to. Must not be null.