google.api.MonitoredResource
*/
class MonitoredResource extends \DeliciousBrains\WP_Offload_Media\Gcp\Google\Protobuf\Internal\Message
{
/**
* Required. The monitored resource type. This field must match
* the `type` field of a
* [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor]
* object. For example, the type of a Compute Engine VM instance is
* `gce_instance`. Some descriptors include the service name in the type; for
* example, the type of a Datastream stream is
* `datastream.googleapis.com/Stream`.
*
* Generated from protobuf field string type = 1;
*/
protected $type = '';
/**
* Required. Values for all of the labels listed in the associated monitored
* resource descriptor. For example, Compute Engine VM instances use the
* labels `"project_id"`, `"instance_id"`, and `"zone"`.
*
* Generated from protobuf field map labels = 2;
*/
private $labels;
/**
* Constructor.
*
* @param array $data {
* Optional. Data for populating the Message object.
*
* @type string $type
* Required. The monitored resource type. This field must match
* the `type` field of a
* [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor]
* object. For example, the type of a Compute Engine VM instance is
* `gce_instance`. Some descriptors include the service name in the type; for
* example, the type of a Datastream stream is
* `datastream.googleapis.com/Stream`.
* @type array|\Google\Protobuf\Internal\MapField $labels
* Required. Values for all of the labels listed in the associated monitored
* resource descriptor. For example, Compute Engine VM instances use the
* labels `"project_id"`, `"instance_id"`, and `"zone"`.
* }
*/
public function __construct($data = NULL)
{
\DeliciousBrains\WP_Offload_Media\Gcp\GPBMetadata\Google\Api\MonitoredResource::initOnce();
parent::__construct($data);
}
/**
* Required. The monitored resource type. This field must match
* the `type` field of a
* [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor]
* object. For example, the type of a Compute Engine VM instance is
* `gce_instance`. Some descriptors include the service name in the type; for
* example, the type of a Datastream stream is
* `datastream.googleapis.com/Stream`.
*
* Generated from protobuf field string type = 1;
* @return string
*/
public function getType()
{
return $this->type;
}
/**
* Required. The monitored resource type. This field must match
* the `type` field of a
* [MonitoredResourceDescriptor][google.api.MonitoredResourceDescriptor]
* object. For example, the type of a Compute Engine VM instance is
* `gce_instance`. Some descriptors include the service name in the type; for
* example, the type of a Datastream stream is
* `datastream.googleapis.com/Stream`.
*
* Generated from protobuf field string type = 1;
* @param string $var
* @return $this
*/
public function setType($var)
{
GPBUtil::checkString($var, True);
$this->type = $var;
return $this;
}
/**
* Required. Values for all of the labels listed in the associated monitored
* resource descriptor. For example, Compute Engine VM instances use the
* labels `"project_id"`, `"instance_id"`, and `"zone"`.
*
* Generated from protobuf field map labels = 2;
* @return \Google\Protobuf\Internal\MapField
*/
public function getLabels()
{
return $this->labels;
}
/**
* Required. Values for all of the labels listed in the associated monitored
* resource descriptor. For example, Compute Engine VM instances use the
* labels `"project_id"`, `"instance_id"`, and `"zone"`.
*
* Generated from protobuf field map labels = 2;
* @param array|\Google\Protobuf\Internal\MapField $var
* @return $this
*/
public function setLabels($var)
{
$arr = GPBUtil::checkMapField($var, \DeliciousBrains\WP_Offload_Media\Gcp\Google\Protobuf\Internal\GPBType::STRING, \DeliciousBrains\WP_Offload_Media\Gcp\Google\Protobuf\Internal\GPBType::STRING);
$this->labels = $arr;
return $this;
}
}