JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "CreateCollectdTimeSeriesRequest.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/google/apiclient-services/src/Monitoring/CreateCollectdTimeSeriesRequest.php
File size: 2.49 KB
MIME-type: text/x-php
Charset: utf-8
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations under
* the License.
*/
namespace Google\Service\Monitoring;
class CreateCollectdTimeSeriesRequest extends \Google\Collection
{
protected $collection_key = 'collectdPayloads';
protected $collectdPayloadsType = CollectdPayload::class;
protected $collectdPayloadsDataType = 'array';
/**
* The version of collectd that collected the data. Example: "5.3.0-192.el6".
*
* @var string
*/
public $collectdVersion;
protected $resourceType = MonitoredResource::class;
protected $resourceDataType = '';
/**
* The collectd payloads representing the time series data. You must not
* include more than a single point for each time series, so no two payloads
* can have the same values for all of the fields plugin, plugin_instance,
* type, and type_instance.
*
* @param CollectdPayload[] $collectdPayloads
*/
public function setCollectdPayloads($collectdPayloads)
{
$this->collectdPayloads = $collectdPayloads;
}
/**
* @return CollectdPayload[]
*/
public function getCollectdPayloads()
{
return $this->collectdPayloads;
}
/**
* The version of collectd that collected the data. Example: "5.3.0-192.el6".
*
* @param string $collectdVersion
*/
public function setCollectdVersion($collectdVersion)
{
$this->collectdVersion = $collectdVersion;
}
/**
* @return string
*/
public function getCollectdVersion()
{
return $this->collectdVersion;
}
/**
* The monitored resource associated with the time series.
*
* @param MonitoredResource $resource
*/
public function setResource(MonitoredResource $resource)
{
$this->resource = $resource;
}
/**
* @return MonitoredResource
*/
public function getResource()
{
return $this->resource;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(CreateCollectdTimeSeriesRequest::class, 'Google_Service_Monitoring_CreateCollectdTimeSeriesRequest');