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
|
||||
@@ -21,9 +21,15 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
public $allowJaggedRows;
|
||||
public $allowQuotedNewlines;
|
||||
public $autodetect;
|
||||
protected $clusteringType = 'Google_Service_Bigquery_Clustering';
|
||||
protected $clusteringDataType = '';
|
||||
public $createDisposition;
|
||||
protected $destinationEncryptionConfigurationType = 'Google_Service_Bigquery_EncryptionConfiguration';
|
||||
protected $destinationEncryptionConfigurationDataType = '';
|
||||
protected $destinationTableType = 'Google_Service_Bigquery_TableReference';
|
||||
protected $destinationTableDataType = '';
|
||||
protected $destinationTablePropertiesType = 'Google_Service_Bigquery_DestinationTableProperties';
|
||||
protected $destinationTablePropertiesDataType = '';
|
||||
public $encoding;
|
||||
public $fieldDelimiter;
|
||||
public $ignoreUnknownValues;
|
||||
@@ -39,6 +45,8 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
public $skipLeadingRows;
|
||||
public $sourceFormat;
|
||||
public $sourceUris;
|
||||
protected $timePartitioningType = 'Google_Service_Bigquery_TimePartitioning';
|
||||
protected $timePartitioningDataType = '';
|
||||
public $writeDisposition;
|
||||
|
||||
public function setAllowJaggedRows($allowJaggedRows)
|
||||
@@ -65,6 +73,20 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->autodetect;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_Clustering
|
||||
*/
|
||||
public function setClustering(Google_Service_Bigquery_Clustering $clustering)
|
||||
{
|
||||
$this->clustering = $clustering;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_Clustering
|
||||
*/
|
||||
public function getClustering()
|
||||
{
|
||||
return $this->clustering;
|
||||
}
|
||||
public function setCreateDisposition($createDisposition)
|
||||
{
|
||||
$this->createDisposition = $createDisposition;
|
||||
@@ -73,14 +95,48 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->createDisposition;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_EncryptionConfiguration
|
||||
*/
|
||||
public function setDestinationEncryptionConfiguration(Google_Service_Bigquery_EncryptionConfiguration $destinationEncryptionConfiguration)
|
||||
{
|
||||
$this->destinationEncryptionConfiguration = $destinationEncryptionConfiguration;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_EncryptionConfiguration
|
||||
*/
|
||||
public function getDestinationEncryptionConfiguration()
|
||||
{
|
||||
return $this->destinationEncryptionConfiguration;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function setDestinationTable(Google_Service_Bigquery_TableReference $destinationTable)
|
||||
{
|
||||
$this->destinationTable = $destinationTable;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TableReference
|
||||
*/
|
||||
public function getDestinationTable()
|
||||
{
|
||||
return $this->destinationTable;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_DestinationTableProperties
|
||||
*/
|
||||
public function setDestinationTableProperties(Google_Service_Bigquery_DestinationTableProperties $destinationTableProperties)
|
||||
{
|
||||
$this->destinationTableProperties = $destinationTableProperties;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_DestinationTableProperties
|
||||
*/
|
||||
public function getDestinationTableProperties()
|
||||
{
|
||||
return $this->destinationTableProperties;
|
||||
}
|
||||
public function setEncoding($encoding)
|
||||
{
|
||||
$this->encoding = $encoding;
|
||||
@@ -137,10 +193,16 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->quote;
|
||||
}
|
||||
/**
|
||||
* @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;
|
||||
@@ -193,6 +255,20 @@ class Google_Service_Bigquery_JobConfigurationLoad extends Google_Collection
|
||||
{
|
||||
return $this->sourceUris;
|
||||
}
|
||||
/**
|
||||
* @param Google_Service_Bigquery_TimePartitioning
|
||||
*/
|
||||
public function setTimePartitioning(Google_Service_Bigquery_TimePartitioning $timePartitioning)
|
||||
{
|
||||
$this->timePartitioning = $timePartitioning;
|
||||
}
|
||||
/**
|
||||
* @return Google_Service_Bigquery_TimePartitioning
|
||||
*/
|
||||
public function getTimePartitioning()
|
||||
{
|
||||
return $this->timePartitioning;
|
||||
}
|
||||
public function setWriteDisposition($writeDisposition)
|
||||
{
|
||||
$this->writeDisposition = $writeDisposition;
|
||||
|
||||
Reference in New Issue
Block a user