Class MonitoredResourceMetadata (2.15.0)

public sealed class MonitoredResourceMetadata : IMessage<MonitoredResourceMetadata>, IEquatable<MonitoredResourceMetadata>, IDeepCloneable<MonitoredResourceMetadata>, IBufferMessage, IMessage

Auxiliary metadata for a [MonitoredResource][google.api.MonitoredResource] object. [MonitoredResource][google.api.MonitoredResource] objects contain the minimum set of information to uniquely identify a monitored resource instance. There is some other useful auxiliary metadata. Monitoring and Logging use an ingestion pipeline to extract metadata for cloud resources of all types, and store the metadata in this message.

Inheritance

object > MonitoredResourceMetadata

Namespace

Google.Api

Assembly

Google.Api.CommonProtos.dll

Constructors

MonitoredResourceMetadata()

public MonitoredResourceMetadata()

MonitoredResourceMetadata(MonitoredResourceMetadata)

public MonitoredResourceMetadata(MonitoredResourceMetadata other)
Parameter
Name Description
other MonitoredResourceMetadata

Fields

SystemLabelsFieldNumber

public const int SystemLabelsFieldNumber = 1

Field number for the "system_labels" field.

Field Value
Type Description
int

UserLabelsFieldNumber

public const int UserLabelsFieldNumber = 2

Field number for the "user_labels" field.

Field Value
Type Description
int

Properties

Descriptor

public static MessageDescriptor Descriptor { get; }
Property Value
Type Description
MessageDescriptor

Parser

public static MessageParser<MonitoredResourceMetadata> Parser { get; }
Property Value
Type Description
MessageParserMonitoredResourceMetadata

SystemLabels

public Struct SystemLabels { get; set; }

Output only. Values for predefined system metadata labels. System labels are a kind of metadata extracted by Google, including "machine_image", "vpc", "subnet_id", "security_group", "name", etc. System label values can be only strings, Boolean values, or a list of strings. For example:

{ "name": "my-test-instance",
  "security_group": ["a", "b", "c"],
  "spot_instance": false }
Property Value
Type Description
Struct

UserLabels

public MapField<string, string> UserLabels { get; }

Output only. A map of user-defined metadata labels.

Property Value
Type Description
MapFieldstringstring

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 MonitoredResourceMetadata Clone()

Creates a deep clone of this object.

Returns
Type Description
MonitoredResourceMetadata

A deep clone of this object.

Equals(MonitoredResourceMetadata)

public bool Equals(MonitoredResourceMetadata other)
Parameter
Name Description
other MonitoredResourceMetadata
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(MonitoredResourceMetadata)

public void MergeFrom(MonitoredResourceMetadata other)

Merges the given message into this one.

Parameter
Name Description
other MonitoredResourceMetadata
Remarks

See the user guide for precise merge semantics.

MergeFrom(CodedInputStream)

public void MergeFrom(CodedInputStream input)

Merges the data from the specified coded input stream with the current message.

Parameter
Name Description
input CodedInputStream
Remarks

See the user guide for precise merge semantics.

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.