Class Region
- Namespace
- Temporalio.Api.Cloud.Region.V1
- Assembly
- Temporalio.dll
public sealed class Region : IMessage<Region>, IEquatable<Region>, IDeepCloneable<Region>, IBufferMessage, IMessage
- Inheritance
-
Region
- Inherited Members
Constructors
Region()
public Region()
Region(Region)
public Region(Region other)
Parameters
otherRegion
Fields
CloudProviderDeprecatedFieldNumber
Field number for the "cloud_provider_deprecated" field.
public const int CloudProviderDeprecatedFieldNumber = 2
Field Value
CloudProviderFieldNumber
Field number for the "cloud_provider" field.
public const int CloudProviderFieldNumber = 5
Field Value
CloudProviderRegionFieldNumber
Field number for the "cloud_provider_region" field.
public const int CloudProviderRegionFieldNumber = 3
Field Value
IdFieldNumber
Field number for the "id" field.
public const int IdFieldNumber = 1
Field Value
LocationFieldNumber
Field number for the "location" field.
public const int LocationFieldNumber = 4
Field Value
Properties
CloudProvider
The cloud provider that's hosting the region. temporal:versioning:min_version=v0.3.0 temporal:enums:replaces=cloud_provider_deprecated
public Region.Types.CloudProvider CloudProvider { get; set; }
Property Value
CloudProviderDeprecated
The name of the cloud provider that's hosting the region. Currently only "aws" is supported. Deprecated: Not supported after v0.3.0 api version. Use cloud_provider instead. temporal:versioning:max_version=v0.3.0
[Obsolete]
public string CloudProviderDeprecated { get; set; }
Property Value
CloudProviderRegion
The region identifier as defined by the cloud provider.
public string CloudProviderRegion { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
Id
The id of the temporal cloud region.
public string Id { get; set; }
Property Value
Location
The human readable location of the region.
public string Location { get; set; }
Property Value
Parser
public static MessageParser<Region> Parser { get; }
Property Value
- MessageParser<Region>
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 Region Clone()
Returns
- Region
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
otherobject
Returns
Equals(Region)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(Region other)
Parameters
otherRegionAn 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
inputCodedInputStream
Remarks
See the user guide for precise merge semantics.
MergeFrom(Region)
Merges the given message into this one.
public void MergeFrom(Region other)
Parameters
otherRegion
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
outputCodedOutputStreamCoded output stream to write the data to. Must not be null.