Class ApiKeySpec
- Namespace
- Temporalio.Api.Cloud.Identity.V1
- Assembly
- Temporalio.dll
public sealed class ApiKeySpec : IMessage<ApiKeySpec>, IEquatable<ApiKeySpec>, IDeepCloneable<ApiKeySpec>, IBufferMessage, IMessage
- Inheritance
-
ApiKeySpec
- Implements
-
IMessage<ApiKeySpec>IDeepCloneable<ApiKeySpec>IBufferMessageIMessage
- Inherited Members
Constructors
ApiKeySpec()
public ApiKeySpec()
ApiKeySpec(ApiKeySpec)
public ApiKeySpec(ApiKeySpec other)
Parameters
other
ApiKeySpec
Fields
DescriptionFieldNumber
Field number for the "description" field.
public const int DescriptionFieldNumber = 4
Field Value
DisabledFieldNumber
Field number for the "disabled" field.
public const int DisabledFieldNumber = 6
Field Value
DisplayNameFieldNumber
Field number for the "display_name" field.
public const int DisplayNameFieldNumber = 3
Field Value
ExpiryTimeFieldNumber
Field number for the "expiry_time" field.
public const int ExpiryTimeFieldNumber = 5
Field Value
OwnerIdFieldNumber
Field number for the "owner_id" field.
public const int OwnerIdFieldNumber = 1
Field Value
OwnerTypeFieldNumber
Field number for the "owner_type" field.
public const int OwnerTypeFieldNumber = 2
Field Value
Properties
Description
The description of the API key.
public string Description { get; set; }
Property Value
Descriptor
public static MessageDescriptor Descriptor { get; }
Property Value
- MessageDescriptor
Disabled
True if the API key is disabled.
public bool Disabled { get; set; }
Property Value
DisplayName
The display name of the API key.
public string DisplayName { get; set; }
Property Value
ExpiryTime
The expiry time of the API key.
public Timestamp ExpiryTime { get; set; }
Property Value
- Timestamp
OwnerId
The id of the owner to create the API key for. The owner id is immutable. Once set during creation, it cannot be changed. The owner id is the id of the user when the owner type is 'user'. The owner id is the id of the service account when the owner type is 'service-account'.
public string OwnerId { get; set; }
Property Value
OwnerType
The type of the owner to create the API key for. The owner type is immutable. Once set during creation, it cannot be changed. Possible values: user, service-account.
public string OwnerType { get; set; }
Property Value
Parser
public static MessageParser<ApiKeySpec> Parser { get; }
Property Value
- MessageParser<ApiKeySpec>
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 ApiKeySpec Clone()
Returns
- ApiKeySpec
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(ApiKeySpec)
Indicates whether the current object is equal to another object of the same type.
public bool Equals(ApiKeySpec other)
Parameters
other
ApiKeySpecAn 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(ApiKeySpec)
Merges the given message into this one.
public void MergeFrom(ApiKeySpec other)
Parameters
other
ApiKeySpec
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.