Update docs.
diff --git a/docs/dyn/mapsengine_v1.tables.features.html b/docs/dyn/mapsengine_v1.tables.features.html
index 1a3871f..f5368a6 100644
--- a/docs/dyn/mapsengine_v1.tables.features.html
+++ b/docs/dyn/mapsengine_v1.tables.features.html
@@ -134,11 +134,11 @@
{ # The request sent to features.Insert.
"features": [
{ # A feature within a table.
- "geometry": { # A geometry object # The geometry member of this Feature.
+ "geometry": { # The geometry member of this Feature.
},
"type": "Feature", # Identifies this object as a feature.
"properties": { # The properties associated with a feature. # Key/value pairs of this Feature.
- "a_key": "",
+ "a_key": "", # An arbitrary key-value pair. The key must be the name of a column in the table's schema, and the type of the value must correspond to the type specified in the schema.
},
},
],
@@ -173,11 +173,11 @@
{ # The request sent to features.BatchPatch.
"features": [
{ # A feature within a table.
- "geometry": { # A geometry object # The geometry member of this Feature.
+ "geometry": { # The geometry member of this Feature.
},
"type": "Feature", # Identifies this object as a feature.
"properties": { # The properties associated with a feature. # Key/value pairs of this Feature.
- "a_key": "",
+ "a_key": "", # An arbitrary key-value pair. The key must be the name of a column in the table's schema, and the type of the value must correspond to the type specified in the schema.
},
},
],
@@ -203,11 +203,11 @@
An object of the form:
{ # A feature within a table.
- "geometry": { # A geometry object # The geometry member of this Feature.
+ "geometry": { # The geometry member of this Feature.
},
"type": "Feature", # Identifies this object as a feature.
"properties": { # The properties associated with a feature. # Key/value pairs of this Feature.
- "a_key": "",
+ "a_key": "", # An arbitrary key-value pair. The key must be the name of a column in the table's schema, and the type of the value must correspond to the type specified in the schema.
},
}</pre>
</div>
@@ -221,7 +221,7 @@
orderBy: string, An SQL-like order by clause used to sort results. If this parameter is not included, the order of features is undefined.
intersects: string, A geometry literal that specifies the spatial restriction of the query.
pageToken: string, The continuation token, used to page through large result sets. To get the next page of results, set this parameter to the value of nextPageToken from the previous response.
- maxResults: integer, The maximum number of items to include in the response, used for paging.
+ maxResults: integer, The maximum number of items to include in the response, used for paging. The maximum supported value is 1000.
version: string, The table version to access. See Accessing Public Data for information.
Allowed values
draft - The draft version.
@@ -240,29 +240,20 @@
"type": "FeatureCollection",
"features": [ # Resources returned.
{ # A feature within a table.
- "geometry": { # A geometry object # The geometry member of this Feature.
+ "geometry": { # The geometry member of this Feature.
},
"type": "Feature", # Identifies this object as a feature.
"properties": { # The properties associated with a feature. # Key/value pairs of this Feature.
- "a_key": "",
+ "a_key": "", # An arbitrary key-value pair. The key must be the name of a column in the table's schema, and the type of the value must correspond to the type specified in the schema.
},
},
],
"schema": { # A schema indicating the properties which may be associated with features within a Table, and the types of those properties. # The feature schema.
"primaryGeometry": "A String", # The name of the column that contains a feature's geometry. This field can be omitted during table create; Google Maps Engine supports only a single geometry column, which must be named geometry and be the first object in the columns array.
"primaryKey": "A String", # The name of the column that contains the unique identifier of a Feature.
- "columns": [ # An array of column objects. The first object in the array must be named geometry and be of type points, lineStrings, polygons, or mixedGeometry.
+ "columns": [ # An array of TableColumn objects. The first object in the array must be named geometry and be of type points, lineStrings, polygons, or mixedGeometry.
{
- "type": "A String", # The type of data stored in this column. Accepted values are:
- #
- # - integer
- # - double
- # - boolean
- # - string
- # - mixedGeometry
- # - points
- # - lineStrings
- # - polygons
+ "type": "A String", # The type of data stored in this column.
"name": "A String", # The column name.
},
],