Mise à jour des librairies vendor
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 Google Inc.
|
||||
* 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
|
||||
@@ -17,11 +17,31 @@
|
||||
|
||||
class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
protected $bucketOptionsType = 'Google_Service_Logging_BucketOptions';
|
||||
protected $bucketOptionsDataType = '';
|
||||
public $description;
|
||||
public $filter;
|
||||
public $labelExtractors;
|
||||
protected $metricDescriptorType = 'Google_Service_Logging_MetricDescriptor';
|
||||
protected $metricDescriptorDataType = '';
|
||||
public $name;
|
||||
public $valueExtractor;
|
||||
public $version;
|
||||
|
||||
/**
|
||||
* @param Google_Service_Logging_BucketOptions
|
||||
*/
|
||||
public function setBucketOptions(Google_Service_Logging_BucketOptions $bucketOptions)
|
||||
{
|
||||
$this->bucketOptions = $bucketOptions;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Logging_BucketOptions
|
||||
*/
|
||||
public function getBucketOptions()
|
||||
{
|
||||
return $this->bucketOptions;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
@@ -38,6 +58,28 @@ class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
return $this->filter;
|
||||
}
|
||||
public function setLabelExtractors($labelExtractors)
|
||||
{
|
||||
$this->labelExtractors = $labelExtractors;
|
||||
}
|
||||
public function getLabelExtractors()
|
||||
{
|
||||
return $this->labelExtractors;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Logging_MetricDescriptor
|
||||
*/
|
||||
public function setMetricDescriptor(Google_Service_Logging_MetricDescriptor $metricDescriptor)
|
||||
{
|
||||
$this->metricDescriptor = $metricDescriptor;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Logging_MetricDescriptor
|
||||
*/
|
||||
public function getMetricDescriptor()
|
||||
{
|
||||
return $this->metricDescriptor;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
@@ -46,6 +88,14 @@ class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setValueExtractor($valueExtractor)
|
||||
{
|
||||
$this->valueExtractor = $valueExtractor;
|
||||
}
|
||||
public function getValueExtractor()
|
||||
{
|
||||
return $this->valueExtractor;
|
||||
}
|
||||
public function setVersion($version)
|
||||
{
|
||||
$this->version = $version;
|
||||
|
||||
Reference in New Issue
Block a user