KeyValueList.php
Namespace
Opentelemetry\Proto\Common\V1File
-
vendor/
open-telemetry/ gen-otlp-protobuf/ Opentelemetry/ Proto/ Common/ V1/ KeyValueList.php
View source
<?php
# Generated by the protocol buffer compiler. DO NOT EDIT!
# source: opentelemetry/proto/common/v1/common.proto
namespace Opentelemetry\Proto\Common\V1;
use Google\Protobuf\Internal\GPBType;
use Google\Protobuf\Internal\RepeatedField;
use Google\Protobuf\Internal\GPBUtil;
/**
* KeyValueList is a list of KeyValue messages. We need KeyValueList as a message
* since `oneof` in AnyValue does not allow repeated fields. Everywhere else where we need
* a list of KeyValue messages (e.g. in Span) we use `repeated KeyValue` directly to
* avoid unnecessary extra wrapping (which slows down the protocol). The 2 approaches
* are semantically equivalent.
*
* Generated from protobuf message <code>opentelemetry.proto.common.v1.KeyValueList</code>
*/
class KeyValueList extends \Google\Protobuf\Internal\Message {
/**
* A collection of key/value pairs of key-value pairs. The list may be empty (may
* contain 0 elements).
* The keys MUST be unique (it is not allowed to have more than one
* value with the same key).
*
* Generated from protobuf field <code>repeated .opentelemetry.proto.common.v1.KeyValue values = 1;</code>
*/
private $values;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type \Opentelemetry\Proto\Common\V1\KeyValue[]|\Google\Protobuf\Internal\RepeatedField $values
* A collection of key/value pairs of key-value pairs. The list may be empty (may
* contain 0 elements).
* The keys MUST be unique (it is not allowed to have more than one
* value with the same key).
* }
*/
public function __construct($data = NULL) {
\GPBMetadata\Opentelemetry\Proto\Common\V1\Common::initOnce();
parent::__construct($data);
}
/**
* A collection of key/value pairs of key-value pairs. The list may be empty (may
* contain 0 elements).
* The keys MUST be unique (it is not allowed to have more than one
* value with the same key).
*
* Generated from protobuf field <code>repeated .opentelemetry.proto.common.v1.KeyValue values = 1;</code>
* @return \Google\Protobuf\Internal\RepeatedField
*/
public function getValues() {
return $this->values;
}
/**
* A collection of key/value pairs of key-value pairs. The list may be empty (may
* contain 0 elements).
* The keys MUST be unique (it is not allowed to have more than one
* value with the same key).
*
* Generated from protobuf field <code>repeated .opentelemetry.proto.common.v1.KeyValue values = 1;</code>
* @param \Opentelemetry\Proto\Common\V1\KeyValue[]|\Google\Protobuf\Internal\RepeatedField $var
* @return $this
*/
public function setValues($var) {
$arr = GPBUtil::checkRepeatedField($var, \Google\Protobuf\Internal\GPBType::MESSAGE, \Opentelemetry\Proto\Common\V1\KeyValue::class);
$this->values = $arr;
return $this;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
KeyValueList | KeyValueList is a list of KeyValue messages. We need KeyValueList as a message since `oneof` in AnyValue does not allow repeated fields. Everywhere else where we need a list of KeyValue messages (e.g. in Span) we use `repeated KeyValue` directly… |