public sealed class LogDescriptor : IMessage<LogDescriptor>, IEquatable<LogDescriptor>, IDeepCloneable<LogDescriptor>, IBufferMessage, IMessage
A description of a log type. Example in YAML format:
- name: library.googleapis.com/activity_history
description: The history of borrowing and returning library items.
display_name: Activity
labels:
- key: /customer_id
description: Identifier of a library customer
Inheritance
object >
LogDescriptor
Namespace
Google.Api
Assembly
Google.Api.CommonProtos.dll
Constructors
LogDescriptor()
LogDescriptor(LogDescriptor)
public LogDescriptor(LogDescriptor other)
Fields
DescriptionFieldNumber
public const int DescriptionFieldNumber = 3
Field number for the "description" field.
Field Value |
Type |
Description |
int |
|
DisplayNameFieldNumber
public const int DisplayNameFieldNumber = 4
Field number for the "display_name" field.
Field Value |
Type |
Description |
int |
|
LabelsFieldNumber
public const int LabelsFieldNumber = 2
Field number for the "labels" field.
Field Value |
Type |
Description |
int |
|
NameFieldNumber
public const int NameFieldNumber = 1
Field number for the "name" field.
Field Value |
Type |
Description |
int |
|
Properties
Description
public string Description { get; set; }
A human-readable description of this log. This information appears in
the documentation and can contain details.
Property Value |
Type |
Description |
string |
|
Descriptor
public static MessageDescriptor Descriptor { get; }
DisplayName
public string DisplayName { get; set; }
The human-readable name for this log. This information appears on
the user interface and should be concise.
Property Value |
Type |
Description |
string |
|
Labels
public RepeatedField<LabelDescriptor> Labels { get; }
The set of labels that are available to describe a specific log entry.
Runtime requests that contain labels not specified here are
considered invalid.
Name
public string Name { get; set; }
The name of the log. It must be less than 512 characters long and can
include the following characters: upper- and lower-case alphanumeric
characters [A-Za-z0-9], and punctuation characters including
slash, underscore, hyphen, period [/_-.].
Property Value |
Type |
Description |
string |
|
Parser
public static MessageParser<LogDescriptor> Parser { get; }
Methods
CalculateSize()
public int CalculateSize()
Calculates the size of this message in Protocol Buffer wire format, in bytes.
Returns |
Type |
Description |
int |
The number of bytes required to write this message
to a coded output stream.
|
Clone()
public LogDescriptor Clone()
Creates a deep clone of this object.
Returns |
Type |
Description |
LogDescriptor |
A deep clone of this object.
|
Equals(LogDescriptor)
public bool Equals(LogDescriptor other)
Returns |
Type |
Description |
bool |
|
Equals(object)
public override bool Equals(object other)
Parameter |
Name |
Description |
other |
object
|
Returns |
Type |
Description |
bool |
|
Overrides
GetHashCode()
public override int GetHashCode()
Returns |
Type |
Description |
int |
|
Overrides
MergeFrom(LogDescriptor)
public void MergeFrom(LogDescriptor other)
Merges the given message into this one.
Remarks
public void MergeFrom(CodedInputStream input)
Merges the data from the specified coded input stream with the current message.
Remarks
ToString()
public override string ToString()
Returns |
Type |
Description |
string |
|
Overrides
WriteTo(CodedOutputStream)
public void WriteTo(CodedOutputStream output)
Writes the data to the given coded output stream.
Parameter |
Name |
Description |
output |
CodedOutputStream
Coded output stream to write the data to. Must not be null.
|