Initial commit
This commit is contained in:
75
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Bucket.php
vendored
Normal file
75
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Bucket.php
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Bucket extends Google_Model
|
||||
{
|
||||
public $color;
|
||||
public $icon;
|
||||
public $max;
|
||||
public $min;
|
||||
public $opacity;
|
||||
public $weight;
|
||||
|
||||
public function setColor($color)
|
||||
{
|
||||
$this->color = $color;
|
||||
}
|
||||
public function getColor()
|
||||
{
|
||||
return $this->color;
|
||||
}
|
||||
public function setIcon($icon)
|
||||
{
|
||||
$this->icon = $icon;
|
||||
}
|
||||
public function getIcon()
|
||||
{
|
||||
return $this->icon;
|
||||
}
|
||||
public function setMax($max)
|
||||
{
|
||||
$this->max = $max;
|
||||
}
|
||||
public function getMax()
|
||||
{
|
||||
return $this->max;
|
||||
}
|
||||
public function setMin($min)
|
||||
{
|
||||
$this->min = $min;
|
||||
}
|
||||
public function getMin()
|
||||
{
|
||||
return $this->min;
|
||||
}
|
||||
public function setOpacity($opacity)
|
||||
{
|
||||
$this->opacity = $opacity;
|
||||
}
|
||||
public function getOpacity()
|
||||
{
|
||||
return $this->opacity;
|
||||
}
|
||||
public function setWeight($weight)
|
||||
{
|
||||
$this->weight = $weight;
|
||||
}
|
||||
public function getWeight()
|
||||
{
|
||||
return $this->weight;
|
||||
}
|
||||
}
|
||||
131
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Column.php
vendored
Normal file
131
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Column.php
vendored
Normal file
@@ -0,0 +1,131 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Column extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'validValues';
|
||||
protected $baseColumnType = 'Google_Service_Fusiontables_ColumnBaseColumn';
|
||||
protected $baseColumnDataType = '';
|
||||
public $columnId;
|
||||
public $columnJsonSchema;
|
||||
public $columnPropertiesJson;
|
||||
public $description;
|
||||
public $formatPattern;
|
||||
public $graphPredicate;
|
||||
public $kind;
|
||||
public $name;
|
||||
public $type;
|
||||
public $validValues;
|
||||
public $validateData;
|
||||
|
||||
public function setBaseColumn(Google_Service_Fusiontables_ColumnBaseColumn $baseColumn)
|
||||
{
|
||||
$this->baseColumn = $baseColumn;
|
||||
}
|
||||
public function getBaseColumn()
|
||||
{
|
||||
return $this->baseColumn;
|
||||
}
|
||||
public function setColumnId($columnId)
|
||||
{
|
||||
$this->columnId = $columnId;
|
||||
}
|
||||
public function getColumnId()
|
||||
{
|
||||
return $this->columnId;
|
||||
}
|
||||
public function setColumnJsonSchema($columnJsonSchema)
|
||||
{
|
||||
$this->columnJsonSchema = $columnJsonSchema;
|
||||
}
|
||||
public function getColumnJsonSchema()
|
||||
{
|
||||
return $this->columnJsonSchema;
|
||||
}
|
||||
public function setColumnPropertiesJson($columnPropertiesJson)
|
||||
{
|
||||
$this->columnPropertiesJson = $columnPropertiesJson;
|
||||
}
|
||||
public function getColumnPropertiesJson()
|
||||
{
|
||||
return $this->columnPropertiesJson;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setFormatPattern($formatPattern)
|
||||
{
|
||||
$this->formatPattern = $formatPattern;
|
||||
}
|
||||
public function getFormatPattern()
|
||||
{
|
||||
return $this->formatPattern;
|
||||
}
|
||||
public function setGraphPredicate($graphPredicate)
|
||||
{
|
||||
$this->graphPredicate = $graphPredicate;
|
||||
}
|
||||
public function getGraphPredicate()
|
||||
{
|
||||
return $this->graphPredicate;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setValidValues($validValues)
|
||||
{
|
||||
$this->validValues = $validValues;
|
||||
}
|
||||
public function getValidValues()
|
||||
{
|
||||
return $this->validValues;
|
||||
}
|
||||
public function setValidateData($validateData)
|
||||
{
|
||||
$this->validateData = $validateData;
|
||||
}
|
||||
public function getValidateData()
|
||||
{
|
||||
return $this->validateData;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnBaseColumn.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnBaseColumn.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_ColumnBaseColumn extends Google_Model
|
||||
{
|
||||
public $columnId;
|
||||
public $tableIndex;
|
||||
|
||||
public function setColumnId($columnId)
|
||||
{
|
||||
$this->columnId = $columnId;
|
||||
}
|
||||
public function getColumnId()
|
||||
{
|
||||
return $this->columnId;
|
||||
}
|
||||
public function setTableIndex($tableIndex)
|
||||
{
|
||||
$this->tableIndex = $tableIndex;
|
||||
}
|
||||
public function getTableIndex()
|
||||
{
|
||||
return $this->tableIndex;
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnList.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/ColumnList.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_ColumnList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Fusiontables_Column';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
public $totalItems;
|
||||
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Geometry.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Geometry.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Geometry extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'geometries';
|
||||
public $geometries;
|
||||
public $geometry;
|
||||
public $type;
|
||||
|
||||
public function setGeometries($geometries)
|
||||
{
|
||||
$this->geometries = $geometries;
|
||||
}
|
||||
public function getGeometries()
|
||||
{
|
||||
return $this->geometries;
|
||||
}
|
||||
public function setGeometry($geometry)
|
||||
{
|
||||
$this->geometry = $geometry;
|
||||
}
|
||||
public function getGeometry()
|
||||
{
|
||||
return $this->geometry;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Import.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Import.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Import extends Google_Model
|
||||
{
|
||||
public $kind;
|
||||
public $numRowsReceived;
|
||||
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNumRowsReceived($numRowsReceived)
|
||||
{
|
||||
$this->numRowsReceived = $numRowsReceived;
|
||||
}
|
||||
public function getNumRowsReceived()
|
||||
{
|
||||
return $this->numRowsReceived;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Line.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Line.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Line extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
public $coordinates;
|
||||
public $type;
|
||||
|
||||
public function setCoordinates($coordinates)
|
||||
{
|
||||
$this->coordinates = $coordinates;
|
||||
}
|
||||
public function getCoordinates()
|
||||
{
|
||||
return $this->coordinates;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
68
vendor/google/apiclient-services/src/Google/Service/Fusiontables/LineStyle.php
vendored
Normal file
68
vendor/google/apiclient-services/src/Google/Service/Fusiontables/LineStyle.php
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_LineStyle extends Google_Model
|
||||
{
|
||||
public $strokeColor;
|
||||
protected $strokeColorStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $strokeColorStylerDataType = '';
|
||||
public $strokeOpacity;
|
||||
public $strokeWeight;
|
||||
protected $strokeWeightStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $strokeWeightStylerDataType = '';
|
||||
|
||||
public function setStrokeColor($strokeColor)
|
||||
{
|
||||
$this->strokeColor = $strokeColor;
|
||||
}
|
||||
public function getStrokeColor()
|
||||
{
|
||||
return $this->strokeColor;
|
||||
}
|
||||
public function setStrokeColorStyler(Google_Service_Fusiontables_StyleFunction $strokeColorStyler)
|
||||
{
|
||||
$this->strokeColorStyler = $strokeColorStyler;
|
||||
}
|
||||
public function getStrokeColorStyler()
|
||||
{
|
||||
return $this->strokeColorStyler;
|
||||
}
|
||||
public function setStrokeOpacity($strokeOpacity)
|
||||
{
|
||||
$this->strokeOpacity = $strokeOpacity;
|
||||
}
|
||||
public function getStrokeOpacity()
|
||||
{
|
||||
return $this->strokeOpacity;
|
||||
}
|
||||
public function setStrokeWeight($strokeWeight)
|
||||
{
|
||||
$this->strokeWeight = $strokeWeight;
|
||||
}
|
||||
public function getStrokeWeight()
|
||||
{
|
||||
return $this->strokeWeight;
|
||||
}
|
||||
public function setStrokeWeightStyler(Google_Service_Fusiontables_StyleFunction $strokeWeightStyler)
|
||||
{
|
||||
$this->strokeWeightStyler = $strokeWeightStyler;
|
||||
}
|
||||
public function getStrokeWeightStyler()
|
||||
{
|
||||
return $this->strokeWeightStyler;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Point.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Point.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Point extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
public $coordinates;
|
||||
public $type;
|
||||
|
||||
public function setCoordinates($coordinates)
|
||||
{
|
||||
$this->coordinates = $coordinates;
|
||||
}
|
||||
public function getCoordinates()
|
||||
{
|
||||
return $this->coordinates;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/PointStyle.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/PointStyle.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_PointStyle extends Google_Model
|
||||
{
|
||||
public $iconName;
|
||||
protected $iconStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $iconStylerDataType = '';
|
||||
|
||||
public function setIconName($iconName)
|
||||
{
|
||||
$this->iconName = $iconName;
|
||||
}
|
||||
public function getIconName()
|
||||
{
|
||||
return $this->iconName;
|
||||
}
|
||||
public function setIconStyler(Google_Service_Fusiontables_StyleFunction $iconStyler)
|
||||
{
|
||||
$this->iconStyler = $iconStyler;
|
||||
}
|
||||
public function getIconStyler()
|
||||
{
|
||||
return $this->iconStyler;
|
||||
}
|
||||
}
|
||||
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Polygon.php
vendored
Normal file
40
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Polygon.php
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Polygon extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'coordinates';
|
||||
public $coordinates;
|
||||
public $type;
|
||||
|
||||
public function setCoordinates($coordinates)
|
||||
{
|
||||
$this->coordinates = $coordinates;
|
||||
}
|
||||
public function getCoordinates()
|
||||
{
|
||||
return $this->coordinates;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
96
vendor/google/apiclient-services/src/Google/Service/Fusiontables/PolygonStyle.php
vendored
Normal file
96
vendor/google/apiclient-services/src/Google/Service/Fusiontables/PolygonStyle.php
vendored
Normal file
@@ -0,0 +1,96 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_PolygonStyle extends Google_Model
|
||||
{
|
||||
public $fillColor;
|
||||
protected $fillColorStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $fillColorStylerDataType = '';
|
||||
public $fillOpacity;
|
||||
public $strokeColor;
|
||||
protected $strokeColorStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $strokeColorStylerDataType = '';
|
||||
public $strokeOpacity;
|
||||
public $strokeWeight;
|
||||
protected $strokeWeightStylerType = 'Google_Service_Fusiontables_StyleFunction';
|
||||
protected $strokeWeightStylerDataType = '';
|
||||
|
||||
public function setFillColor($fillColor)
|
||||
{
|
||||
$this->fillColor = $fillColor;
|
||||
}
|
||||
public function getFillColor()
|
||||
{
|
||||
return $this->fillColor;
|
||||
}
|
||||
public function setFillColorStyler(Google_Service_Fusiontables_StyleFunction $fillColorStyler)
|
||||
{
|
||||
$this->fillColorStyler = $fillColorStyler;
|
||||
}
|
||||
public function getFillColorStyler()
|
||||
{
|
||||
return $this->fillColorStyler;
|
||||
}
|
||||
public function setFillOpacity($fillOpacity)
|
||||
{
|
||||
$this->fillOpacity = $fillOpacity;
|
||||
}
|
||||
public function getFillOpacity()
|
||||
{
|
||||
return $this->fillOpacity;
|
||||
}
|
||||
public function setStrokeColor($strokeColor)
|
||||
{
|
||||
$this->strokeColor = $strokeColor;
|
||||
}
|
||||
public function getStrokeColor()
|
||||
{
|
||||
return $this->strokeColor;
|
||||
}
|
||||
public function setStrokeColorStyler(Google_Service_Fusiontables_StyleFunction $strokeColorStyler)
|
||||
{
|
||||
$this->strokeColorStyler = $strokeColorStyler;
|
||||
}
|
||||
public function getStrokeColorStyler()
|
||||
{
|
||||
return $this->strokeColorStyler;
|
||||
}
|
||||
public function setStrokeOpacity($strokeOpacity)
|
||||
{
|
||||
$this->strokeOpacity = $strokeOpacity;
|
||||
}
|
||||
public function getStrokeOpacity()
|
||||
{
|
||||
return $this->strokeOpacity;
|
||||
}
|
||||
public function setStrokeWeight($strokeWeight)
|
||||
{
|
||||
$this->strokeWeight = $strokeWeight;
|
||||
}
|
||||
public function getStrokeWeight()
|
||||
{
|
||||
return $this->strokeWeight;
|
||||
}
|
||||
public function setStrokeWeightStyler(Google_Service_Fusiontables_StyleFunction $strokeWeightStyler)
|
||||
{
|
||||
$this->strokeWeightStyler = $strokeWeightStyler;
|
||||
}
|
||||
public function getStrokeWeightStyler()
|
||||
{
|
||||
return $this->strokeWeightStyler;
|
||||
}
|
||||
}
|
||||
121
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Column.php
vendored
Normal file
121
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Column.php
vendored
Normal file
@@ -0,0 +1,121 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "column" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $column = $fusiontablesService->column;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Column extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes the specified column. (column.delete)
|
||||
*
|
||||
* @param string $tableId Table from which the column is being deleted.
|
||||
* @param string $columnId Name or identifier for the column being deleted.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($tableId, $columnId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'columnId' => $columnId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Retrieves a specific column by its ID. (column.get)
|
||||
*
|
||||
* @param string $tableId Table to which the column belongs.
|
||||
* @param string $columnId Name or identifier for the column that is being
|
||||
* requested.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Column
|
||||
*/
|
||||
public function get($tableId, $columnId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'columnId' => $columnId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Fusiontables_Column");
|
||||
}
|
||||
/**
|
||||
* Adds a new column to the table. (column.insert)
|
||||
*
|
||||
* @param string $tableId Table for which a new column is being added.
|
||||
* @param Google_Service_Fusiontables_Column $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Column
|
||||
*/
|
||||
public function insert($tableId, Google_Service_Fusiontables_Column $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Fusiontables_Column");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of columns. (column.listColumn)
|
||||
*
|
||||
* @param string $tableId Table whose columns are being listed.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of columns to return. Default is
|
||||
* 5.
|
||||
* @opt_param string pageToken Continuation token specifying which result page
|
||||
* to return.
|
||||
* @return Google_Service_Fusiontables_ColumnList
|
||||
*/
|
||||
public function listColumn($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Fusiontables_ColumnList");
|
||||
}
|
||||
/**
|
||||
* Updates the name or type of an existing column. This method supports patch
|
||||
* semantics. (column.patch)
|
||||
*
|
||||
* @param string $tableId Table for which the column is being updated.
|
||||
* @param string $columnId Name or identifier for the column that is being
|
||||
* updated.
|
||||
* @param Google_Service_Fusiontables_Column $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Column
|
||||
*/
|
||||
public function patch($tableId, $columnId, Google_Service_Fusiontables_Column $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Fusiontables_Column");
|
||||
}
|
||||
/**
|
||||
* Updates the name or type of an existing column. (column.update)
|
||||
*
|
||||
* @param string $tableId Table for which the column is being updated.
|
||||
* @param string $columnId Name or identifier for the column that is being
|
||||
* updated.
|
||||
* @param Google_Service_Fusiontables_Column $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Column
|
||||
*/
|
||||
public function update($tableId, $columnId, Google_Service_Fusiontables_Column $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'columnId' => $columnId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Fusiontables_Column");
|
||||
}
|
||||
}
|
||||
70
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Query.php
vendored
Normal file
70
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Query.php
vendored
Normal file
@@ -0,0 +1,70 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "query" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $query = $fusiontablesService->query;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Query extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Executes a Fusion Tables SQL statement, which can be any of - SELECT - INSERT
|
||||
* - UPDATE - DELETE - SHOW - DESCRIBE - CREATE statement. (query.sql)
|
||||
*
|
||||
* @param string $sql A Fusion Tables SQL statement, which can be any of -
|
||||
* SELECT - INSERT - UPDATE - DELETE - SHOW - DESCRIBE - CREATE
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool hdrs Whether column names are included in the first row.
|
||||
* Default is true.
|
||||
* @opt_param bool typed Whether typed values are returned in the (JSON)
|
||||
* response: numbers for numeric values and parsed geometries for KML values.
|
||||
* Default is true.
|
||||
* @return Google_Service_Fusiontables_Sqlresponse
|
||||
*/
|
||||
public function sql($sql, $optParams = array())
|
||||
{
|
||||
$params = array('sql' => $sql);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('sql', array($params), "Google_Service_Fusiontables_Sqlresponse");
|
||||
}
|
||||
/**
|
||||
* Executes a SQL statement which can be any of - SELECT - SHOW - DESCRIBE
|
||||
* (query.sqlGet)
|
||||
*
|
||||
* @param string $sql A SQL statement which can be any of - SELECT - SHOW -
|
||||
* DESCRIBE
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool hdrs Whether column names are included (in the first row).
|
||||
* Default is true.
|
||||
* @opt_param bool typed Whether typed values are returned in the (JSON)
|
||||
* response: numbers for numeric values and parsed geometries for KML values.
|
||||
* Default is true.
|
||||
* @return Google_Service_Fusiontables_Sqlresponse
|
||||
*/
|
||||
public function sqlGet($sql, $optParams = array())
|
||||
{
|
||||
$params = array('sql' => $sql);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('sqlGet', array($params), "Google_Service_Fusiontables_Sqlresponse");
|
||||
}
|
||||
}
|
||||
118
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Style.php
vendored
Normal file
118
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Style.php
vendored
Normal file
@@ -0,0 +1,118 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "style" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $style = $fusiontablesService->style;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Style extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes a style. (style.delete)
|
||||
*
|
||||
* @param string $tableId Table from which the style is being deleted
|
||||
* @param int $styleId Identifier (within a table) for the style being deleted
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($tableId, $styleId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'styleId' => $styleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Gets a specific style. (style.get)
|
||||
*
|
||||
* @param string $tableId Table to which the requested style belongs
|
||||
* @param int $styleId Identifier (integer) for a specific style in a table
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_StyleSetting
|
||||
*/
|
||||
public function get($tableId, $styleId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'styleId' => $styleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Fusiontables_StyleSetting");
|
||||
}
|
||||
/**
|
||||
* Adds a new style for the table. (style.insert)
|
||||
*
|
||||
* @param string $tableId Table for which a new style is being added
|
||||
* @param Google_Service_Fusiontables_StyleSetting $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_StyleSetting
|
||||
*/
|
||||
public function insert($tableId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Fusiontables_StyleSetting");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of styles. (style.listStyle)
|
||||
*
|
||||
* @param string $tableId Table whose styles are being listed
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of styles to return. Optional.
|
||||
* Default is 5.
|
||||
* @opt_param string pageToken Continuation token specifying which result page
|
||||
* to return. Optional.
|
||||
* @return Google_Service_Fusiontables_StyleSettingList
|
||||
*/
|
||||
public function listStyle($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Fusiontables_StyleSettingList");
|
||||
}
|
||||
/**
|
||||
* Updates an existing style. This method supports patch semantics.
|
||||
* (style.patch)
|
||||
*
|
||||
* @param string $tableId Table whose style is being updated.
|
||||
* @param int $styleId Identifier (within a table) for the style being updated.
|
||||
* @param Google_Service_Fusiontables_StyleSetting $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_StyleSetting
|
||||
*/
|
||||
public function patch($tableId, $styleId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Fusiontables_StyleSetting");
|
||||
}
|
||||
/**
|
||||
* Updates an existing style. (style.update)
|
||||
*
|
||||
* @param string $tableId Table whose style is being updated.
|
||||
* @param int $styleId Identifier (within a table) for the style being updated.
|
||||
* @param Google_Service_Fusiontables_StyleSetting $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_StyleSetting
|
||||
*/
|
||||
public function update($tableId, $styleId, Google_Service_Fusiontables_StyleSetting $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'styleId' => $styleId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Fusiontables_StyleSetting");
|
||||
}
|
||||
}
|
||||
212
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Table.php
vendored
Normal file
212
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Table.php
vendored
Normal file
@@ -0,0 +1,212 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "table" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $table = $fusiontablesService->table;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Table extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Copies a table. (table.copy)
|
||||
*
|
||||
* @param string $tableId ID of the table that is being copied.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool copyPresentation Whether to also copy tabs, styles, and
|
||||
* templates. Default is false.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function copy($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('copy', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
/**
|
||||
* Deletes a table. (table.delete)
|
||||
*
|
||||
* @param string $tableId ID of the table to be deleted.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Retrieves a specific table by its ID. (table.get)
|
||||
*
|
||||
* @param string $tableId Identifier for the table being requested.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function get($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
/**
|
||||
* Imports more rows into a table. (table.importRows)
|
||||
*
|
||||
* @param string $tableId The table into which new rows are being imported.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string delimiter The delimiter used to separate cell values. This
|
||||
* can only consist of a single character. Default is ,.
|
||||
* @opt_param string encoding The encoding of the content. Default is UTF-8. Use
|
||||
* auto-detect if you are unsure of the encoding.
|
||||
* @opt_param int endLine The index of the line up to which data will be
|
||||
* imported. Default is to import the entire file. If endLine is negative, it is
|
||||
* an offset from the end of the file; the imported content will exclude the
|
||||
* last endLine lines.
|
||||
* @opt_param bool isStrict Whether the imported CSV must have the same number
|
||||
* of values for each row. If false, rows with fewer values will be padded with
|
||||
* empty values. Default is true.
|
||||
* @opt_param int startLine The index of the first line from which to start
|
||||
* importing, inclusive. Default is 0.
|
||||
* @return Google_Service_Fusiontables_Import
|
||||
*/
|
||||
public function importRows($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('importRows', array($params), "Google_Service_Fusiontables_Import");
|
||||
}
|
||||
/**
|
||||
* Imports a new table. (table.importTable)
|
||||
*
|
||||
* @param string $name The name to be assigned to the new table.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string delimiter The delimiter used to separate cell values. This
|
||||
* can only consist of a single character. Default is ,.
|
||||
* @opt_param string encoding The encoding of the content. Default is UTF-8. Use
|
||||
* auto-detect if you are unsure of the encoding.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function importTable($name, $optParams = array())
|
||||
{
|
||||
$params = array('name' => $name);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('importTable', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
/**
|
||||
* Creates a new table. (table.insert)
|
||||
*
|
||||
* @param Google_Service_Fusiontables_Table $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function insert(Google_Service_Fusiontables_Table $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of tables a user owns. (table.listTable)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of tables to return. Default is
|
||||
* 5.
|
||||
* @opt_param string pageToken Continuation token specifying which result page
|
||||
* to return.
|
||||
* @return Google_Service_Fusiontables_TableList
|
||||
*/
|
||||
public function listTable($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Fusiontables_TableList");
|
||||
}
|
||||
/**
|
||||
* Updates an existing table. Unless explicitly requested, only the name,
|
||||
* description, and attribution will be updated. This method supports patch
|
||||
* semantics. (table.patch)
|
||||
*
|
||||
* @param string $tableId ID of the table that is being updated.
|
||||
* @param Google_Service_Fusiontables_Table $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool replaceViewDefinition Whether the view definition is also
|
||||
* updated. The specified view definition replaces the existing one. Only a view
|
||||
* can be updated with a new definition.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function patch($tableId, Google_Service_Fusiontables_Table $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
/**
|
||||
* Replaces rows of an existing table. Current rows remain visible until all
|
||||
* replacement rows are ready. (table.replaceRows)
|
||||
*
|
||||
* @param string $tableId Table whose rows will be replaced.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string delimiter The delimiter used to separate cell values. This
|
||||
* can only consist of a single character. Default is ,.
|
||||
* @opt_param string encoding The encoding of the content. Default is UTF-8. Use
|
||||
* 'auto-detect' if you are unsure of the encoding.
|
||||
* @opt_param int endLine The index of the line up to which data will be
|
||||
* imported. Default is to import the entire file. If endLine is negative, it is
|
||||
* an offset from the end of the file; the imported content will exclude the
|
||||
* last endLine lines.
|
||||
* @opt_param bool isStrict Whether the imported CSV must have the same number
|
||||
* of column values for each row. If true, throws an exception if the CSV does
|
||||
* not have the same number of columns. If false, rows with fewer column values
|
||||
* will be padded with empty values. Default is true.
|
||||
* @opt_param int startLine The index of the first line from which to start
|
||||
* importing, inclusive. Default is 0.
|
||||
* @return Google_Service_Fusiontables_Task
|
||||
*/
|
||||
public function replaceRows($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('replaceRows', array($params), "Google_Service_Fusiontables_Task");
|
||||
}
|
||||
/**
|
||||
* Updates an existing table. Unless explicitly requested, only the name,
|
||||
* description, and attribution will be updated. (table.update)
|
||||
*
|
||||
* @param string $tableId ID of the table that is being updated.
|
||||
* @param Google_Service_Fusiontables_Table $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool replaceViewDefinition Whether the view definition is also
|
||||
* updated. The specified view definition replaces the existing one. Only a view
|
||||
* can be updated with a new definition.
|
||||
* @return Google_Service_Fusiontables_Table
|
||||
*/
|
||||
public function update($tableId, Google_Service_Fusiontables_Table $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Fusiontables_Table");
|
||||
}
|
||||
}
|
||||
75
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Task.php
vendored
Normal file
75
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Task.php
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "task" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $task = $fusiontablesService->task;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Task extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes a specific task by its ID, unless that task has already started
|
||||
* running. (task.delete)
|
||||
*
|
||||
* @param string $tableId Table from which the task is being deleted.
|
||||
* @param string $taskId The identifier of the task to delete.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($tableId, $taskId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'taskId' => $taskId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Retrieves a specific task by its ID. (task.get)
|
||||
*
|
||||
* @param string $tableId Table to which the task belongs.
|
||||
* @param string $taskId The identifier of the task to get.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Task
|
||||
*/
|
||||
public function get($tableId, $taskId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'taskId' => $taskId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Fusiontables_Task");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of tasks. (task.listTask)
|
||||
*
|
||||
* @param string $tableId Table whose tasks are being listed.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of tasks to return. Default is 5.
|
||||
* @opt_param string pageToken Continuation token specifying which result page
|
||||
* to return.
|
||||
* @opt_param string startIndex Index of the first result returned in the
|
||||
* current page.
|
||||
* @return Google_Service_Fusiontables_TaskList
|
||||
*/
|
||||
public function listTask($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Fusiontables_TaskList");
|
||||
}
|
||||
}
|
||||
119
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Template.php
vendored
Normal file
119
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Resource/Template.php
vendored
Normal file
@@ -0,0 +1,119 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "template" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $fusiontablesService = new Google_Service_Fusiontables(...);
|
||||
* $template = $fusiontablesService->template;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Fusiontables_Resource_Template extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes a template (template.delete)
|
||||
*
|
||||
* @param string $tableId Table from which the template is being deleted
|
||||
* @param int $templateId Identifier for the template which is being deleted
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($tableId, $templateId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'templateId' => $templateId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Retrieves a specific template by its id (template.get)
|
||||
*
|
||||
* @param string $tableId Table to which the template belongs
|
||||
* @param int $templateId Identifier for the template that is being requested
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Template
|
||||
*/
|
||||
public function get($tableId, $templateId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'templateId' => $templateId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Fusiontables_Template");
|
||||
}
|
||||
/**
|
||||
* Creates a new template for the table. (template.insert)
|
||||
*
|
||||
* @param string $tableId Table for which a new template is being created
|
||||
* @param Google_Service_Fusiontables_Template $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Template
|
||||
*/
|
||||
public function insert($tableId, Google_Service_Fusiontables_Template $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Fusiontables_Template");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of templates. (template.listTemplate)
|
||||
*
|
||||
* @param string $tableId Identifier for the table whose templates are being
|
||||
* requested
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults Maximum number of templates to return. Optional.
|
||||
* Default is 5.
|
||||
* @opt_param string pageToken Continuation token specifying which results page
|
||||
* to return. Optional.
|
||||
* @return Google_Service_Fusiontables_TemplateList
|
||||
*/
|
||||
public function listTemplate($tableId, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Fusiontables_TemplateList");
|
||||
}
|
||||
/**
|
||||
* Updates an existing template. This method supports patch semantics.
|
||||
* (template.patch)
|
||||
*
|
||||
* @param string $tableId Table to which the updated template belongs
|
||||
* @param int $templateId Identifier for the template that is being updated
|
||||
* @param Google_Service_Fusiontables_Template $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Template
|
||||
*/
|
||||
public function patch($tableId, $templateId, Google_Service_Fusiontables_Template $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Fusiontables_Template");
|
||||
}
|
||||
/**
|
||||
* Updates an existing template (template.update)
|
||||
*
|
||||
* @param string $tableId Table to which the updated template belongs
|
||||
* @param int $templateId Identifier for the template that is being updated
|
||||
* @param Google_Service_Fusiontables_Template $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Fusiontables_Template
|
||||
*/
|
||||
public function update($tableId, $templateId, Google_Service_Fusiontables_Template $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('tableId' => $tableId, 'templateId' => $templateId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Fusiontables_Template");
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Sqlresponse.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Sqlresponse.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Sqlresponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'rows';
|
||||
public $columns;
|
||||
public $kind;
|
||||
public $rows;
|
||||
|
||||
public function setColumns($columns)
|
||||
{
|
||||
$this->columns = $columns;
|
||||
}
|
||||
public function getColumns()
|
||||
{
|
||||
return $this->columns;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setRows($rows)
|
||||
{
|
||||
$this->rows = $rows;
|
||||
}
|
||||
public function getRows()
|
||||
{
|
||||
return $this->rows;
|
||||
}
|
||||
}
|
||||
60
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunction.php
vendored
Normal file
60
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunction.php
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_StyleFunction extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'buckets';
|
||||
protected $bucketsType = 'Google_Service_Fusiontables_Bucket';
|
||||
protected $bucketsDataType = 'array';
|
||||
public $columnName;
|
||||
protected $gradientType = 'Google_Service_Fusiontables_StyleFunctionGradient';
|
||||
protected $gradientDataType = '';
|
||||
public $kind;
|
||||
|
||||
public function setBuckets($buckets)
|
||||
{
|
||||
$this->buckets = $buckets;
|
||||
}
|
||||
public function getBuckets()
|
||||
{
|
||||
return $this->buckets;
|
||||
}
|
||||
public function setColumnName($columnName)
|
||||
{
|
||||
$this->columnName = $columnName;
|
||||
}
|
||||
public function getColumnName()
|
||||
{
|
||||
return $this->columnName;
|
||||
}
|
||||
public function setGradient(Google_Service_Fusiontables_StyleFunctionGradient $gradient)
|
||||
{
|
||||
$this->gradient = $gradient;
|
||||
}
|
||||
public function getGradient()
|
||||
{
|
||||
return $this->gradient;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
50
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradient.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradient.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_StyleFunctionGradient extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'colors';
|
||||
protected $colorsType = 'Google_Service_Fusiontables_StyleFunctionGradientColors';
|
||||
protected $colorsDataType = 'array';
|
||||
public $max;
|
||||
public $min;
|
||||
|
||||
public function setColors($colors)
|
||||
{
|
||||
$this->colors = $colors;
|
||||
}
|
||||
public function getColors()
|
||||
{
|
||||
return $this->colors;
|
||||
}
|
||||
public function setMax($max)
|
||||
{
|
||||
$this->max = $max;
|
||||
}
|
||||
public function getMax()
|
||||
{
|
||||
return $this->max;
|
||||
}
|
||||
public function setMin($min)
|
||||
{
|
||||
$this->min = $min;
|
||||
}
|
||||
public function getMin()
|
||||
{
|
||||
return $this->min;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradientColors.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleFunctionGradientColors.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_StyleFunctionGradientColors extends Google_Model
|
||||
{
|
||||
public $color;
|
||||
public $opacity;
|
||||
|
||||
public function setColor($color)
|
||||
{
|
||||
$this->color = $color;
|
||||
}
|
||||
public function getColor()
|
||||
{
|
||||
return $this->color;
|
||||
}
|
||||
public function setOpacity($opacity)
|
||||
{
|
||||
$this->opacity = $opacity;
|
||||
}
|
||||
public function getOpacity()
|
||||
{
|
||||
return $this->opacity;
|
||||
}
|
||||
}
|
||||
87
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSetting.php
vendored
Normal file
87
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSetting.php
vendored
Normal file
@@ -0,0 +1,87 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_StyleSetting extends Google_Model
|
||||
{
|
||||
public $kind;
|
||||
protected $markerOptionsType = 'Google_Service_Fusiontables_PointStyle';
|
||||
protected $markerOptionsDataType = '';
|
||||
public $name;
|
||||
protected $polygonOptionsType = 'Google_Service_Fusiontables_PolygonStyle';
|
||||
protected $polygonOptionsDataType = '';
|
||||
protected $polylineOptionsType = 'Google_Service_Fusiontables_LineStyle';
|
||||
protected $polylineOptionsDataType = '';
|
||||
public $styleId;
|
||||
public $tableId;
|
||||
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setMarkerOptions(Google_Service_Fusiontables_PointStyle $markerOptions)
|
||||
{
|
||||
$this->markerOptions = $markerOptions;
|
||||
}
|
||||
public function getMarkerOptions()
|
||||
{
|
||||
return $this->markerOptions;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setPolygonOptions(Google_Service_Fusiontables_PolygonStyle $polygonOptions)
|
||||
{
|
||||
$this->polygonOptions = $polygonOptions;
|
||||
}
|
||||
public function getPolygonOptions()
|
||||
{
|
||||
return $this->polygonOptions;
|
||||
}
|
||||
public function setPolylineOptions(Google_Service_Fusiontables_LineStyle $polylineOptions)
|
||||
{
|
||||
$this->polylineOptions = $polylineOptions;
|
||||
}
|
||||
public function getPolylineOptions()
|
||||
{
|
||||
return $this->polylineOptions;
|
||||
}
|
||||
public function setStyleId($styleId)
|
||||
{
|
||||
$this->styleId = $styleId;
|
||||
}
|
||||
public function getStyleId()
|
||||
{
|
||||
return $this->styleId;
|
||||
}
|
||||
public function setTableId($tableId)
|
||||
{
|
||||
$this->tableId = $tableId;
|
||||
}
|
||||
public function getTableId()
|
||||
{
|
||||
return $this->tableId;
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSettingList.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/StyleSettingList.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_StyleSettingList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Fusiontables_StyleSetting';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
public $totalItems;
|
||||
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
140
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Table.php
vendored
Normal file
140
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Table.php
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Table extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'columns';
|
||||
public $attribution;
|
||||
public $attributionLink;
|
||||
public $baseTableIds;
|
||||
public $columnPropertiesJsonSchema;
|
||||
protected $columnsType = 'Google_Service_Fusiontables_Column';
|
||||
protected $columnsDataType = 'array';
|
||||
public $description;
|
||||
public $isExportable;
|
||||
public $kind;
|
||||
public $name;
|
||||
public $sql;
|
||||
public $tableId;
|
||||
public $tablePropertiesJson;
|
||||
public $tablePropertiesJsonSchema;
|
||||
|
||||
public function setAttribution($attribution)
|
||||
{
|
||||
$this->attribution = $attribution;
|
||||
}
|
||||
public function getAttribution()
|
||||
{
|
||||
return $this->attribution;
|
||||
}
|
||||
public function setAttributionLink($attributionLink)
|
||||
{
|
||||
$this->attributionLink = $attributionLink;
|
||||
}
|
||||
public function getAttributionLink()
|
||||
{
|
||||
return $this->attributionLink;
|
||||
}
|
||||
public function setBaseTableIds($baseTableIds)
|
||||
{
|
||||
$this->baseTableIds = $baseTableIds;
|
||||
}
|
||||
public function getBaseTableIds()
|
||||
{
|
||||
return $this->baseTableIds;
|
||||
}
|
||||
public function setColumnPropertiesJsonSchema($columnPropertiesJsonSchema)
|
||||
{
|
||||
$this->columnPropertiesJsonSchema = $columnPropertiesJsonSchema;
|
||||
}
|
||||
public function getColumnPropertiesJsonSchema()
|
||||
{
|
||||
return $this->columnPropertiesJsonSchema;
|
||||
}
|
||||
public function setColumns($columns)
|
||||
{
|
||||
$this->columns = $columns;
|
||||
}
|
||||
public function getColumns()
|
||||
{
|
||||
return $this->columns;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setIsExportable($isExportable)
|
||||
{
|
||||
$this->isExportable = $isExportable;
|
||||
}
|
||||
public function getIsExportable()
|
||||
{
|
||||
return $this->isExportable;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setSql($sql)
|
||||
{
|
||||
$this->sql = $sql;
|
||||
}
|
||||
public function getSql()
|
||||
{
|
||||
return $this->sql;
|
||||
}
|
||||
public function setTableId($tableId)
|
||||
{
|
||||
$this->tableId = $tableId;
|
||||
}
|
||||
public function getTableId()
|
||||
{
|
||||
return $this->tableId;
|
||||
}
|
||||
public function setTablePropertiesJson($tablePropertiesJson)
|
||||
{
|
||||
$this->tablePropertiesJson = $tablePropertiesJson;
|
||||
}
|
||||
public function getTablePropertiesJson()
|
||||
{
|
||||
return $this->tablePropertiesJson;
|
||||
}
|
||||
public function setTablePropertiesJsonSchema($tablePropertiesJsonSchema)
|
||||
{
|
||||
$this->tablePropertiesJsonSchema = $tablePropertiesJsonSchema;
|
||||
}
|
||||
public function getTablePropertiesJsonSchema()
|
||||
{
|
||||
return $this->tablePropertiesJsonSchema;
|
||||
}
|
||||
}
|
||||
50
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TableList.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TableList.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_TableList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Fusiontables_Table';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
}
|
||||
66
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Task.php
vendored
Normal file
66
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Task.php
vendored
Normal file
@@ -0,0 +1,66 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Task extends Google_Model
|
||||
{
|
||||
public $kind;
|
||||
public $progress;
|
||||
public $started;
|
||||
public $taskId;
|
||||
public $type;
|
||||
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setProgress($progress)
|
||||
{
|
||||
$this->progress = $progress;
|
||||
}
|
||||
public function getProgress()
|
||||
{
|
||||
return $this->progress;
|
||||
}
|
||||
public function setStarted($started)
|
||||
{
|
||||
$this->started = $started;
|
||||
}
|
||||
public function getStarted()
|
||||
{
|
||||
return $this->started;
|
||||
}
|
||||
public function setTaskId($taskId)
|
||||
{
|
||||
$this->taskId = $taskId;
|
||||
}
|
||||
public function getTaskId()
|
||||
{
|
||||
return $this->taskId;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TaskList.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TaskList.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_TaskList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Fusiontables_Task';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
public $totalItems;
|
||||
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
76
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Template.php
vendored
Normal file
76
vendor/google/apiclient-services/src/Google/Service/Fusiontables/Template.php
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_Template extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'automaticColumnNames';
|
||||
public $automaticColumnNames;
|
||||
public $body;
|
||||
public $kind;
|
||||
public $name;
|
||||
public $tableId;
|
||||
public $templateId;
|
||||
|
||||
public function setAutomaticColumnNames($automaticColumnNames)
|
||||
{
|
||||
$this->automaticColumnNames = $automaticColumnNames;
|
||||
}
|
||||
public function getAutomaticColumnNames()
|
||||
{
|
||||
return $this->automaticColumnNames;
|
||||
}
|
||||
public function setBody($body)
|
||||
{
|
||||
$this->body = $body;
|
||||
}
|
||||
public function getBody()
|
||||
{
|
||||
return $this->body;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setTableId($tableId)
|
||||
{
|
||||
$this->tableId = $tableId;
|
||||
}
|
||||
public function getTableId()
|
||||
{
|
||||
return $this->tableId;
|
||||
}
|
||||
public function setTemplateId($templateId)
|
||||
{
|
||||
$this->templateId = $templateId;
|
||||
}
|
||||
public function getTemplateId()
|
||||
{
|
||||
return $this->templateId;
|
||||
}
|
||||
}
|
||||
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TemplateList.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/Fusiontables/TemplateList.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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_Fusiontables_TemplateList extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Fusiontables_Template';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
public $totalItems;
|
||||
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user