Nouveaux fichier suite maj librairies vendor

This commit is contained in:
Caribana
2018-05-01 14:46:24 +02:00
parent 6d5286b888
commit 382b93196c
2318 changed files with 147474 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?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_Spanner_CreateSessionRequest extends Google_Model
{
protected $sessionType = 'Google_Service_Spanner_Session';
protected $sessionDataType = '';
/**
* @param Google_Service_Spanner_Session
*/
public function setSession(Google_Service_Spanner_Session $session)
{
$this->session = $session;
}
/**
* @return Google_Service_Spanner_Session
*/
public function getSession()
{
return $this->session;
}
}

View File

@@ -0,0 +1,47 @@
<?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_Spanner_ListSessionsResponse extends Google_Collection
{
protected $collection_key = 'sessions';
public $nextPageToken;
protected $sessionsType = 'Google_Service_Spanner_Session';
protected $sessionsDataType = 'array';
public function setNextPageToken($nextPageToken)
{
$this->nextPageToken = $nextPageToken;
}
public function getNextPageToken()
{
return $this->nextPageToken;
}
/**
* @param Google_Service_Spanner_Session
*/
public function setSessions($sessions)
{
$this->sessions = $sessions;
}
/**
* @return Google_Service_Spanner_Session
*/
public function getSessions()
{
return $this->sessions;
}
}

View File

@@ -0,0 +1,30 @@
<?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_Spanner_Partition extends Google_Model
{
public $partitionToken;
public function setPartitionToken($partitionToken)
{
$this->partitionToken = $partitionToken;
}
public function getPartitionToken()
{
return $this->partitionToken;
}
}

View File

@@ -0,0 +1,39 @@
<?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_Spanner_PartitionOptions extends Google_Model
{
public $maxPartitions;
public $partitionSizeBytes;
public function setMaxPartitions($maxPartitions)
{
$this->maxPartitions = $maxPartitions;
}
public function getMaxPartitions()
{
return $this->maxPartitions;
}
public function setPartitionSizeBytes($partitionSizeBytes)
{
$this->partitionSizeBytes = $partitionSizeBytes;
}
public function getPartitionSizeBytes()
{
return $this->partitionSizeBytes;
}
}

View File

@@ -0,0 +1,87 @@
<?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_Spanner_PartitionQueryRequest extends Google_Model
{
protected $paramTypesType = 'Google_Service_Spanner_Type';
protected $paramTypesDataType = 'map';
public $params;
protected $partitionOptionsType = 'Google_Service_Spanner_PartitionOptions';
protected $partitionOptionsDataType = '';
public $sql;
protected $transactionType = 'Google_Service_Spanner_TransactionSelector';
protected $transactionDataType = '';
/**
* @param Google_Service_Spanner_Type
*/
public function setParamTypes($paramTypes)
{
$this->paramTypes = $paramTypes;
}
/**
* @return Google_Service_Spanner_Type
*/
public function getParamTypes()
{
return $this->paramTypes;
}
public function setParams($params)
{
$this->params = $params;
}
public function getParams()
{
return $this->params;
}
/**
* @param Google_Service_Spanner_PartitionOptions
*/
public function setPartitionOptions(Google_Service_Spanner_PartitionOptions $partitionOptions)
{
$this->partitionOptions = $partitionOptions;
}
/**
* @return Google_Service_Spanner_PartitionOptions
*/
public function getPartitionOptions()
{
return $this->partitionOptions;
}
public function setSql($sql)
{
$this->sql = $sql;
}
public function getSql()
{
return $this->sql;
}
/**
* @param Google_Service_Spanner_TransactionSelector
*/
public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction)
{
$this->transaction = $transaction;
}
/**
* @return Google_Service_Spanner_TransactionSelector
*/
public function getTransaction()
{
return $this->transaction;
}
}

View File

@@ -0,0 +1,97 @@
<?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_Spanner_PartitionReadRequest extends Google_Collection
{
protected $collection_key = 'columns';
public $columns;
public $index;
protected $keySetType = 'Google_Service_Spanner_KeySet';
protected $keySetDataType = '';
protected $partitionOptionsType = 'Google_Service_Spanner_PartitionOptions';
protected $partitionOptionsDataType = '';
public $table;
protected $transactionType = 'Google_Service_Spanner_TransactionSelector';
protected $transactionDataType = '';
public function setColumns($columns)
{
$this->columns = $columns;
}
public function getColumns()
{
return $this->columns;
}
public function setIndex($index)
{
$this->index = $index;
}
public function getIndex()
{
return $this->index;
}
/**
* @param Google_Service_Spanner_KeySet
*/
public function setKeySet(Google_Service_Spanner_KeySet $keySet)
{
$this->keySet = $keySet;
}
/**
* @return Google_Service_Spanner_KeySet
*/
public function getKeySet()
{
return $this->keySet;
}
/**
* @param Google_Service_Spanner_PartitionOptions
*/
public function setPartitionOptions(Google_Service_Spanner_PartitionOptions $partitionOptions)
{
$this->partitionOptions = $partitionOptions;
}
/**
* @return Google_Service_Spanner_PartitionOptions
*/
public function getPartitionOptions()
{
return $this->partitionOptions;
}
public function setTable($table)
{
$this->table = $table;
}
public function getTable()
{
return $this->table;
}
/**
* @param Google_Service_Spanner_TransactionSelector
*/
public function setTransaction(Google_Service_Spanner_TransactionSelector $transaction)
{
$this->transaction = $transaction;
}
/**
* @return Google_Service_Spanner_TransactionSelector
*/
public function getTransaction()
{
return $this->transaction;
}
}

View File

@@ -0,0 +1,54 @@
<?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_Spanner_PartitionResponse extends Google_Collection
{
protected $collection_key = 'partitions';
protected $partitionsType = 'Google_Service_Spanner_Partition';
protected $partitionsDataType = 'array';
protected $transactionType = 'Google_Service_Spanner_Transaction';
protected $transactionDataType = '';
/**
* @param Google_Service_Spanner_Partition
*/
public function setPartitions($partitions)
{
$this->partitions = $partitions;
}
/**
* @return Google_Service_Spanner_Partition
*/
public function getPartitions()
{
return $this->partitions;
}
/**
* @param Google_Service_Spanner_Transaction
*/
public function setTransaction(Google_Service_Spanner_Transaction $transaction)
{
$this->transaction = $transaction;
}
/**
* @return Google_Service_Spanner_Transaction
*/
public function getTransaction()
{
return $this->transaction;
}
}