Mise à jour des librairies
This commit is contained in:
@@ -38,6 +38,7 @@ class Google_Service_Logging_LogEntry extends Google_Model
|
||||
public $textPayload;
|
||||
public $timestamp;
|
||||
public $trace;
|
||||
public $traceSampled;
|
||||
|
||||
/**
|
||||
* @param Google_Service_Logging_HttpRequest
|
||||
@@ -197,4 +198,12 @@ class Google_Service_Logging_LogEntry extends Google_Model
|
||||
{
|
||||
return $this->trace;
|
||||
}
|
||||
public function setTraceSampled($traceSampled)
|
||||
{
|
||||
$this->traceSampled = $traceSampled;
|
||||
}
|
||||
public function getTraceSampled()
|
||||
{
|
||||
return $this->traceSampled;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,11 +17,21 @@
|
||||
|
||||
class Google_Service_Logging_LogExclusion extends Google_Model
|
||||
{
|
||||
public $createTime;
|
||||
public $description;
|
||||
public $disabled;
|
||||
public $filter;
|
||||
public $name;
|
||||
public $updateTime;
|
||||
|
||||
public function setCreateTime($createTime)
|
||||
{
|
||||
$this->createTime = $createTime;
|
||||
}
|
||||
public function getCreateTime()
|
||||
{
|
||||
return $this->createTime;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
@@ -54,4 +64,12 @@ class Google_Service_Logging_LogExclusion extends Google_Model
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setUpdateTime($updateTime)
|
||||
{
|
||||
$this->updateTime = $updateTime;
|
||||
}
|
||||
public function getUpdateTime()
|
||||
{
|
||||
return $this->updateTime;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -19,12 +19,14 @@ class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
protected $bucketOptionsType = 'Google_Service_Logging_BucketOptions';
|
||||
protected $bucketOptionsDataType = '';
|
||||
public $createTime;
|
||||
public $description;
|
||||
public $filter;
|
||||
public $labelExtractors;
|
||||
protected $metricDescriptorType = 'Google_Service_Logging_MetricDescriptor';
|
||||
protected $metricDescriptorDataType = '';
|
||||
public $name;
|
||||
public $updateTime;
|
||||
public $valueExtractor;
|
||||
public $version;
|
||||
|
||||
@@ -42,6 +44,14 @@ class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
return $this->bucketOptions;
|
||||
}
|
||||
public function setCreateTime($createTime)
|
||||
{
|
||||
$this->createTime = $createTime;
|
||||
}
|
||||
public function getCreateTime()
|
||||
{
|
||||
return $this->createTime;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
@@ -88,6 +98,14 @@ class Google_Service_Logging_LogMetric extends Google_Model
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setUpdateTime($updateTime)
|
||||
{
|
||||
$this->updateTime = $updateTime;
|
||||
}
|
||||
public function getUpdateTime()
|
||||
{
|
||||
return $this->updateTime;
|
||||
}
|
||||
public function setValueExtractor($valueExtractor)
|
||||
{
|
||||
$this->valueExtractor = $valueExtractor;
|
||||
|
||||
@@ -17,15 +17,23 @@
|
||||
|
||||
class Google_Service_Logging_LogSink extends Google_Model
|
||||
{
|
||||
public $createTime;
|
||||
public $destination;
|
||||
public $endTime;
|
||||
public $filter;
|
||||
public $includeChildren;
|
||||
public $name;
|
||||
public $outputVersionFormat;
|
||||
public $startTime;
|
||||
public $updateTime;
|
||||
public $writerIdentity;
|
||||
|
||||
public function setCreateTime($createTime)
|
||||
{
|
||||
$this->createTime = $createTime;
|
||||
}
|
||||
public function getCreateTime()
|
||||
{
|
||||
return $this->createTime;
|
||||
}
|
||||
public function setDestination($destination)
|
||||
{
|
||||
$this->destination = $destination;
|
||||
@@ -34,14 +42,6 @@ class Google_Service_Logging_LogSink extends Google_Model
|
||||
{
|
||||
return $this->destination;
|
||||
}
|
||||
public function setEndTime($endTime)
|
||||
{
|
||||
$this->endTime = $endTime;
|
||||
}
|
||||
public function getEndTime()
|
||||
{
|
||||
return $this->endTime;
|
||||
}
|
||||
public function setFilter($filter)
|
||||
{
|
||||
$this->filter = $filter;
|
||||
@@ -74,13 +74,13 @@ class Google_Service_Logging_LogSink extends Google_Model
|
||||
{
|
||||
return $this->outputVersionFormat;
|
||||
}
|
||||
public function setStartTime($startTime)
|
||||
public function setUpdateTime($updateTime)
|
||||
{
|
||||
$this->startTime = $startTime;
|
||||
$this->updateTime = $updateTime;
|
||||
}
|
||||
public function getStartTime()
|
||||
public function getUpdateTime()
|
||||
{
|
||||
return $this->startTime;
|
||||
return $this->updateTime;
|
||||
}
|
||||
public function setWriterIdentity($writerIdentity)
|
||||
{
|
||||
|
||||
@@ -22,6 +22,8 @@ class Google_Service_Logging_MetricDescriptor extends Google_Collection
|
||||
public $displayName;
|
||||
protected $labelsType = 'Google_Service_Logging_LabelDescriptor';
|
||||
protected $labelsDataType = 'array';
|
||||
protected $metadataType = 'Google_Service_Logging_MetricDescriptorMetadata';
|
||||
protected $metadataDataType = '';
|
||||
public $metricKind;
|
||||
public $name;
|
||||
public $type;
|
||||
@@ -58,6 +60,20 @@ class Google_Service_Logging_MetricDescriptor extends Google_Collection
|
||||
{
|
||||
return $this->labels;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Logging_MetricDescriptorMetadata
|
||||
*/
|
||||
public function setMetadata(Google_Service_Logging_MetricDescriptorMetadata $metadata)
|
||||
{
|
||||
$this->metadata = $metadata;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Logging_MetricDescriptorMetadata
|
||||
*/
|
||||
public function getMetadata()
|
||||
{
|
||||
return $this->metadata;
|
||||
}
|
||||
public function setMetricKind($metricKind)
|
||||
{
|
||||
$this->metricKind = $metricKind;
|
||||
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Logging/MetricDescriptorMetadata.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Logging/MetricDescriptorMetadata.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
class Google_Service_Logging_MetricDescriptorMetadata extends Google_Model
|
||||
{
|
||||
public $ingestDelay;
|
||||
public $launchStage;
|
||||
public $samplePeriod;
|
||||
|
||||
public function setIngestDelay($ingestDelay)
|
||||
{
|
||||
$this->ingestDelay = $ingestDelay;
|
||||
}
|
||||
public function getIngestDelay()
|
||||
{
|
||||
return $this->ingestDelay;
|
||||
}
|
||||
public function setLaunchStage($launchStage)
|
||||
{
|
||||
$this->launchStage = $launchStage;
|
||||
}
|
||||
public function getLaunchStage()
|
||||
{
|
||||
return $this->launchStage;
|
||||
}
|
||||
public function setSamplePeriod($samplePeriod)
|
||||
{
|
||||
$this->samplePeriod = $samplePeriod;
|
||||
}
|
||||
public function getSamplePeriod()
|
||||
{
|
||||
return $this->samplePeriod;
|
||||
}
|
||||
}
|
||||
@@ -48,6 +48,7 @@ class Google_Service_Logging_RequestLog extends Google_Collection
|
||||
public $taskName;
|
||||
public $taskQueueName;
|
||||
public $traceId;
|
||||
public $traceSampled;
|
||||
public $urlMapEntry;
|
||||
public $userAgent;
|
||||
public $versionId;
|
||||
@@ -289,6 +290,14 @@ class Google_Service_Logging_RequestLog extends Google_Collection
|
||||
{
|
||||
return $this->traceId;
|
||||
}
|
||||
public function setTraceSampled($traceSampled)
|
||||
{
|
||||
$this->traceSampled = $traceSampled;
|
||||
}
|
||||
public function getTraceSampled()
|
||||
{
|
||||
return $this->traceSampled;
|
||||
}
|
||||
public function setUrlMapEntry($urlMapEntry)
|
||||
{
|
||||
$this->urlMapEntry = $urlMapEntry;
|
||||
|
||||
@@ -42,12 +42,12 @@ class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Servic
|
||||
* identity returned as writer_identity in the new sink. If this value is
|
||||
* omitted or set to false, and if the sink's parent is a project, then the
|
||||
* value returned as writer_identity is the same group or service account used
|
||||
* by Stackdriver Logging before the addition of writer identities to this API.
|
||||
* The sink's destination must be in the same project as the sink itself.If this
|
||||
* field is set to true, or if the sink is owned by a non-project resource such
|
||||
* as an organization, then the value of writer_identity will be a unique
|
||||
* service account used only for exports from the new sink. For more
|
||||
* information, see writer_identity in LogSink.
|
||||
* by Logging before the addition of writer identities to this API. The sink's
|
||||
* destination must be in the same project as the sink itself.If this field is
|
||||
* set to true, or if the sink is owned by a non-project resource such as an
|
||||
* organization, then the value of writer_identity will be a unique service
|
||||
* account used only for exports from the new sink. For more information, see
|
||||
* writer_identity in LogSink.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -119,7 +119,7 @@ class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Servic
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.patch)
|
||||
*
|
||||
@@ -149,7 +149,8 @@ class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Servic
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -160,7 +161,7 @@ class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Servic
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.update)
|
||||
*
|
||||
@@ -190,7 +191,8 @@ class Google_Service_Logging_Resource_BillingAccountsSinks extends Google_Servic
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
|
||||
@@ -26,9 +26,9 @@
|
||||
class Google_Service_Logging_Resource_Entries extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Lists log entries. Use this method to retrieve log entries from Stackdriver
|
||||
* Logging. For ways to export log entries, see Exporting Logs.
|
||||
* (entries.listEntries)
|
||||
* Lists log entries. Use this method to retrieve log entries that originated
|
||||
* from a project/folder/organization/billing account. For ways to export log
|
||||
* entries, see Exporting Logs. (entries.listEntries)
|
||||
*
|
||||
* @param Google_Service_Logging_ListLogEntriesRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
@@ -41,12 +41,12 @@ class Google_Service_Logging_Resource_Entries extends Google_Service_Resource
|
||||
return $this->call('list', array($params), "Google_Service_Logging_ListLogEntriesResponse");
|
||||
}
|
||||
/**
|
||||
* Writes log entries to Stackdriver Logging. This API method is the only way to
|
||||
* send log entries to Stackdriver Logging. This method is used, directly or
|
||||
* indirectly, by the Stackdriver Logging agent (fluentd) and all logging
|
||||
* libraries configured to use Stackdriver Logging. A single request may contain
|
||||
* log entries for a maximum of 1000 different resources (projects,
|
||||
* organizations, billing accounts or folders) (entries.write)
|
||||
* Writes log entries to Logging. This API method is the only way to send log
|
||||
* entries to Logging. This method is used, directly or indirectly, by the
|
||||
* Logging agent (fluentd) and all logging libraries configured to use Logging.
|
||||
* A single request may contain log entries for a maximum of 1000 different
|
||||
* resources (projects, organizations, billing accounts or folders)
|
||||
* (entries.write)
|
||||
*
|
||||
* @param Google_Service_Logging_WriteLogEntriesRequest $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
|
||||
@@ -42,12 +42,12 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
* identity returned as writer_identity in the new sink. If this value is
|
||||
* omitted or set to false, and if the sink's parent is a project, then the
|
||||
* value returned as writer_identity is the same group or service account used
|
||||
* by Stackdriver Logging before the addition of writer identities to this API.
|
||||
* The sink's destination must be in the same project as the sink itself.If this
|
||||
* field is set to true, or if the sink is owned by a non-project resource such
|
||||
* as an organization, then the value of writer_identity will be a unique
|
||||
* service account used only for exports from the new sink. For more
|
||||
* information, see writer_identity in LogSink.
|
||||
* by Logging before the addition of writer identities to this API. The sink's
|
||||
* destination must be in the same project as the sink itself.If this field is
|
||||
* set to true, or if the sink is owned by a non-project resource such as an
|
||||
* organization, then the value of writer_identity will be a unique service
|
||||
* account used only for exports from the new sink. For more information, see
|
||||
* writer_identity in LogSink.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -102,13 +102,13 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
* "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]"
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @opt_param string pageToken Optional. If present, then retrieve the next
|
||||
* batch of results from the preceding call to this method. pageToken must be
|
||||
* the value of nextPageToken from the previous response. The values of other
|
||||
* method parameters should be identical to those in the previous call.
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @return Google_Service_Logging_ListSinksResponse
|
||||
*/
|
||||
public function listFoldersSinks($parent, $optParams = array())
|
||||
@@ -119,7 +119,7 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.patch)
|
||||
*
|
||||
@@ -149,7 +149,8 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -160,7 +161,7 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.update)
|
||||
*
|
||||
@@ -190,7 +191,8 @@ class Google_Service_Logging_Resource_FoldersSinks extends Google_Service_Resour
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
class Google_Service_Logging_Resource_MonitoredResourceDescriptors extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Lists the descriptors for monitored resource types used by Stackdriver
|
||||
* Logging. (monitoredResourceDescriptors.listMonitoredResourceDescriptors)
|
||||
* Lists the descriptors for monitored resource types used by Logging.
|
||||
* (monitoredResourceDescriptors.listMonitoredResourceDescriptors)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
|
||||
@@ -42,12 +42,12 @@ class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_
|
||||
* identity returned as writer_identity in the new sink. If this value is
|
||||
* omitted or set to false, and if the sink's parent is a project, then the
|
||||
* value returned as writer_identity is the same group or service account used
|
||||
* by Stackdriver Logging before the addition of writer identities to this API.
|
||||
* The sink's destination must be in the same project as the sink itself.If this
|
||||
* field is set to true, or if the sink is owned by a non-project resource such
|
||||
* as an organization, then the value of writer_identity will be a unique
|
||||
* service account used only for exports from the new sink. For more
|
||||
* information, see writer_identity in LogSink.
|
||||
* by Logging before the addition of writer identities to this API. The sink's
|
||||
* destination must be in the same project as the sink itself.If this field is
|
||||
* set to true, or if the sink is owned by a non-project resource such as an
|
||||
* organization, then the value of writer_identity will be a unique service
|
||||
* account used only for exports from the new sink. For more information, see
|
||||
* writer_identity in LogSink.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -119,7 +119,7 @@ class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.patch)
|
||||
*
|
||||
@@ -149,7 +149,8 @@ class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -160,7 +161,7 @@ class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.update)
|
||||
*
|
||||
@@ -190,7 +191,8 @@ class Google_Service_Logging_Resource_OrganizationsSinks extends Google_Service_
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
|
||||
@@ -56,13 +56,13 @@ class Google_Service_Logging_Resource_ProjectsLogs extends Google_Service_Resour
|
||||
* "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]"
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @opt_param string pageToken Optional. If present, then retrieve the next
|
||||
* batch of results from the preceding call to this method. pageToken must be
|
||||
* the value of nextPageToken from the previous response. The values of other
|
||||
* method parameters should be identical to those in the previous call.
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @return Google_Service_Logging_ListLogsResponse
|
||||
*/
|
||||
public function listProjectsLogs($parent, $optParams = array())
|
||||
|
||||
@@ -42,12 +42,12 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
* identity returned as writer_identity in the new sink. If this value is
|
||||
* omitted or set to false, and if the sink's parent is a project, then the
|
||||
* value returned as writer_identity is the same group or service account used
|
||||
* by Stackdriver Logging before the addition of writer identities to this API.
|
||||
* The sink's destination must be in the same project as the sink itself.If this
|
||||
* field is set to true, or if the sink is owned by a non-project resource such
|
||||
* as an organization, then the value of writer_identity will be a unique
|
||||
* service account used only for exports from the new sink. For more
|
||||
* information, see writer_identity in LogSink.
|
||||
* by Logging before the addition of writer identities to this API. The sink's
|
||||
* destination must be in the same project as the sink itself.If this field is
|
||||
* set to true, or if the sink is owned by a non-project resource such as an
|
||||
* organization, then the value of writer_identity will be a unique service
|
||||
* account used only for exports from the new sink. For more information, see
|
||||
* writer_identity in LogSink.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -102,13 +102,13 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
* "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]"
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @opt_param string pageToken Optional. If present, then retrieve the next
|
||||
* batch of results from the preceding call to this method. pageToken must be
|
||||
* the value of nextPageToken from the previous response. The values of other
|
||||
* method parameters should be identical to those in the previous call.
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @return Google_Service_Logging_ListSinksResponse
|
||||
*/
|
||||
public function listProjectsSinks($parent, $optParams = array())
|
||||
@@ -119,7 +119,7 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.patch)
|
||||
*
|
||||
@@ -149,7 +149,8 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function patch($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -160,7 +161,7 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.update)
|
||||
*
|
||||
@@ -190,7 +191,8 @@ class Google_Service_Logging_Resource_ProjectsSinks extends Google_Service_Resou
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
|
||||
@@ -42,12 +42,12 @@ class Google_Service_Logging_Resource_Sinks extends Google_Service_Resource
|
||||
* identity returned as writer_identity in the new sink. If this value is
|
||||
* omitted or set to false, and if the sink's parent is a project, then the
|
||||
* value returned as writer_identity is the same group or service account used
|
||||
* by Stackdriver Logging before the addition of writer identities to this API.
|
||||
* The sink's destination must be in the same project as the sink itself.If this
|
||||
* field is set to true, or if the sink is owned by a non-project resource such
|
||||
* as an organization, then the value of writer_identity will be a unique
|
||||
* service account used only for exports from the new sink. For more
|
||||
* information, see writer_identity in LogSink.
|
||||
* by Logging before the addition of writer identities to this API. The sink's
|
||||
* destination must be in the same project as the sink itself.If this field is
|
||||
* set to true, or if the sink is owned by a non-project resource such as an
|
||||
* organization, then the value of writer_identity will be a unique service
|
||||
* account used only for exports from the new sink. For more information, see
|
||||
* writer_identity in LogSink.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function create($parent, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
@@ -102,13 +102,13 @@ class Google_Service_Logging_Resource_Sinks extends Google_Service_Resource
|
||||
* "billingAccounts/[BILLING_ACCOUNT_ID]" "folders/[FOLDER_ID]"
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @opt_param string pageToken Optional. If present, then retrieve the next
|
||||
* batch of results from the preceding call to this method. pageToken must be
|
||||
* the value of nextPageToken from the previous response. The values of other
|
||||
* method parameters should be identical to those in the previous call.
|
||||
* @opt_param int pageSize Optional. The maximum number of results to return
|
||||
* from this request. Non-positive values are ignored. The presence of
|
||||
* nextPageToken in the response indicates that more results might be available.
|
||||
* @return Google_Service_Logging_ListSinksResponse
|
||||
*/
|
||||
public function listSinks($parent, $optParams = array())
|
||||
@@ -119,7 +119,7 @@ class Google_Service_Logging_Resource_Sinks extends Google_Service_Resource
|
||||
}
|
||||
/**
|
||||
* Updates a sink. This method replaces the following fields in the existing
|
||||
* sink with values from the new sink: destination, and filter. The updated sink
|
||||
* sink with values from the new sink: destination, and filter.The updated sink
|
||||
* might also have a new writer_identity; see the unique_writer_identity field.
|
||||
* (sinks.update)
|
||||
*
|
||||
@@ -149,7 +149,8 @@ class Google_Service_Logging_Resource_Sinks extends Google_Service_Resource
|
||||
* destination,filter,includeChildren At some point in the future, behavior will
|
||||
* be removed and specifying an empty updateMask will be an error.For a detailed
|
||||
* FieldMask definition, see https://developers.google.com/protocol-
|
||||
* buffers/docs/reference/google.protobuf#fieldmaskExample: updateMask=filter.
|
||||
* buffers/docs/reference/google.protobuf#google.protobuf.FieldMaskExample:
|
||||
* updateMask=filter.
|
||||
* @return Google_Service_Logging_LogSink
|
||||
*/
|
||||
public function update($sinkName, Google_Service_Logging_LogSink $postBody, $optParams = array())
|
||||
|
||||
Reference in New Issue
Block a user