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
|
||||
@@ -20,6 +20,10 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
protected $collection_key = 'undeclaredQueryParameters';
|
||||
public $billingTier;
|
||||
public $cacheHit;
|
||||
public $ddlOperationPerformed;
|
||||
protected $ddlTargetTableType = 'Google_Service_Bigquery_TableReference';
|
||||
protected $ddlTargetTableDataType = '';
|
||||
public $estimatedBytesProcessed;
|
||||
public $numDmlAffectedRows;
|
||||
protected $queryPlanType = 'Google_Service_Bigquery_ExplainQueryStage';
|
||||
protected $queryPlanDataType = 'array';
|
||||
@@ -28,8 +32,12 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
protected $schemaType = 'Google_Service_Bigquery_TableSchema';
|
||||
protected $schemaDataType = '';
|
||||
public $statementType;
|
||||
protected $timelineType = 'Google_Service_Bigquery_QueryTimelineSample';
|
||||
protected $timelineDataType = 'array';
|
||||
public $totalBytesBilled;
|
||||
public $totalBytesProcessed;
|
||||
public $totalPartitionsProcessed;
|
||||
public $totalSlotMs;
|
||||
protected $undeclaredQueryParametersType = 'Google_Service_Bigquery_QueryParameter';
|
||||
protected $undeclaredQueryParametersDataType = 'array';
|
||||
|
||||
@@ -49,6 +57,36 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->cacheHit;
|
||||
}
|
||||
public function setDdlOperationPerformed($ddlOperationPerformed)
|
||||
{
|
||||
$this->ddlOperationPerformed = $ddlOperationPerformed;
|
||||
}
|
||||
public function getDdlOperationPerformed()
|
||||
{
|
||||
return $this->ddlOperationPerformed;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function setDdlTargetTable(Google_Service_Bigquery_TableReference $ddlTargetTable)
|
||||
{
|
||||
$this->ddlTargetTable = $ddlTargetTable;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function getDdlTargetTable()
|
||||
{
|
||||
return $this->ddlTargetTable;
|
||||
}
|
||||
public function setEstimatedBytesProcessed($estimatedBytesProcessed)
|
||||
{
|
||||
$this->estimatedBytesProcessed = $estimatedBytesProcessed;
|
||||
}
|
||||
public function getEstimatedBytesProcessed()
|
||||
{
|
||||
return $this->estimatedBytesProcessed;
|
||||
}
|
||||
public function setNumDmlAffectedRows($numDmlAffectedRows)
|
||||
{
|
||||
$this->numDmlAffectedRows = $numDmlAffectedRows;
|
||||
@@ -57,26 +95,44 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->numDmlAffectedRows;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_ExplainQueryStage
|
||||
*/
|
||||
public function setQueryPlan($queryPlan)
|
||||
{
|
||||
$this->queryPlan = $queryPlan;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_ExplainQueryStage
|
||||
*/
|
||||
public function getQueryPlan()
|
||||
{
|
||||
return $this->queryPlan;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function setReferencedTables($referencedTables)
|
||||
{
|
||||
$this->referencedTables = $referencedTables;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function getReferencedTables()
|
||||
{
|
||||
return $this->referencedTables;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableSchema
|
||||
*/
|
||||
public function setSchema(Google_Service_Bigquery_TableSchema $schema)
|
||||
{
|
||||
$this->schema = $schema;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TableSchema
|
||||
*/
|
||||
public function getSchema()
|
||||
{
|
||||
return $this->schema;
|
||||
@@ -89,6 +145,20 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->statementType;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_QueryTimelineSample
|
||||
*/
|
||||
public function setTimeline($timeline)
|
||||
{
|
||||
$this->timeline = $timeline;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_QueryTimelineSample
|
||||
*/
|
||||
public function getTimeline()
|
||||
{
|
||||
return $this->timeline;
|
||||
}
|
||||
public function setTotalBytesBilled($totalBytesBilled)
|
||||
{
|
||||
$this->totalBytesBilled = $totalBytesBilled;
|
||||
@@ -105,10 +175,32 @@ class Google_Service_Bigquery_JobStatistics2 extends Google_Collection
|
||||
{
|
||||
return $this->totalBytesProcessed;
|
||||
}
|
||||
public function setTotalPartitionsProcessed($totalPartitionsProcessed)
|
||||
{
|
||||
$this->totalPartitionsProcessed = $totalPartitionsProcessed;
|
||||
}
|
||||
public function getTotalPartitionsProcessed()
|
||||
{
|
||||
return $this->totalPartitionsProcessed;
|
||||
}
|
||||
public function setTotalSlotMs($totalSlotMs)
|
||||
{
|
||||
$this->totalSlotMs = $totalSlotMs;
|
||||
}
|
||||
public function getTotalSlotMs()
|
||||
{
|
||||
return $this->totalSlotMs;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_QueryParameter
|
||||
*/
|
||||
public function setUndeclaredQueryParameters($undeclaredQueryParameters)
|
||||
{
|
||||
$this->undeclaredQueryParameters = $undeclaredQueryParameters;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_QueryParameter
|
||||
*/
|
||||
public function getUndeclaredQueryParameters()
|
||||
{
|
||||
return $this->undeclaredQueryParameters;
|
||||
|
||||
Reference in New Issue
Block a user