blob: e37aa597081ef10fb53e57c00ae91a8b74e6d1b1 [file] [log] [blame]
Bu Sun Kim673ec5c2020-11-16 11:05:03 -07001<html><body>
2<style>
3
4body, h1, h2, h3, div, span, p, pre, a {
5 margin: 0;
6 padding: 0;
7 border: 0;
8 font-weight: inherit;
9 font-style: inherit;
10 font-size: 100%;
11 font-family: inherit;
12 vertical-align: baseline;
13}
14
15body {
16 font-size: 13px;
17 padding: 1em;
18}
19
20h1 {
21 font-size: 26px;
22 margin-bottom: 1em;
23}
24
25h2 {
26 font-size: 24px;
27 margin-bottom: 1em;
28}
29
30h3 {
31 font-size: 20px;
32 margin-bottom: 1em;
33 margin-top: 1em;
34}
35
36pre, code {
37 line-height: 1.5;
38 font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
39}
40
41pre {
42 margin-top: 0.5em;
43}
44
45h1, h2, h3, p {
46 font-family: Arial, sans serif;
47}
48
49h1, h2, h3 {
50 border-bottom: solid #CCC 1px;
51}
52
53.toc_element {
54 margin-top: 0.5em;
55}
56
57.firstline {
58 margin-left: 2 em;
59}
60
61.method {
62 margin-top: 1em;
63 border: solid 1px #CCC;
64 padding: 1em;
65 background: #EEE;
66}
67
68.details {
69 font-weight: bold;
70 font-size: 14px;
71}
72
73</style>
74
75<h1><a href="area120tables_v1alpha1.html">Area120 Tables API</a> . <a href="area120tables_v1alpha1.tables.html">tables</a></h1>
76<h2>Instance Methods</h2>
77<p class="toc_element">
78 <code><a href="area120tables_v1alpha1.tables.rows.html">rows()</a></code>
79</p>
80<p class="firstline">Returns the rows Resource.</p>
81
82<p class="toc_element">
83 <code><a href="#close">close()</a></code></p>
84<p class="firstline">Close httplib2 connections.</p>
85<p class="toc_element">
86 <code><a href="#get">get(name, x__xgafv=None)</a></code></p>
87<p class="firstline">Gets a table. Returns NOT_FOUND if the table does not exist.</p>
88<p class="toc_element">
yoshi-code-bot3dd15272021-04-21 15:07:48 -070089 <code><a href="#list">list(orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</a></code></p>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -070090<p class="firstline">Lists tables for the user.</p>
91<p class="toc_element">
92 <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
93<p class="firstline">Retrieves the next page of results.</p>
94<h3>Method Details</h3>
95<div class="method">
96 <code class="details" id="close">close()</code>
97 <pre>Close httplib2 connections.</pre>
98</div>
99
100<div class="method">
101 <code class="details" id="get">get(name, x__xgafv=None)</code>
102 <pre>Gets a table. Returns NOT_FOUND if the table does not exist.
103
104Args:
105 name: string, Required. The name of the table to retrieve. Format: tables/{table} (required)
106 x__xgafv: string, V1 error format.
107 Allowed values
108 1 - v1 error format
109 2 - v2 error format
110
111Returns:
112 An object of the form:
113
Anthonios Partheniou10f4b672021-04-13 14:47:53 -0400114 { # A single table. NextId: 7
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800115 &quot;columns&quot;: [ # List of columns in this table. Order of columns matches the display order.
116 { # Details on a column in the table.
117 &quot;dataType&quot;: &quot;A String&quot;, # Data type of the column Supported types are auto_id, boolean, boolean_list, creator, create_timestamp, date, dropdown, location, integer, integer_list, number, number_list, person, person_list, tags, check_list, text, text_list, update_timestamp, updater, relationship, file_attachment_list. These types directly map to the column types supported on Tables website.
118 &quot;id&quot;: &quot;A String&quot;, # Internal id for a column.
119 &quot;labels&quot;: [ # Optional. Range of labeled values for the column. Some columns like tags and drop-downs limit the values to a set of possible values. We return the range of values in such cases to help clients implement better user data validation.
120 { # A single item in a labeled column.
121 &quot;id&quot;: &quot;A String&quot;, # Internal id associated with the item.
122 &quot;name&quot;: &quot;A String&quot;, # Display string as entered by user.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800123 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800124 ],
125 &quot;lookupDetails&quot;: { # Details about a lookup column whose value comes from the associated relationship. # Optional. Indicates that this is a lookup column whose value is derived from the relationship column specified in the details. Lookup columns can not be updated directly. To change the value you must update the associated relationship column.
126 &quot;relationshipColumn&quot;: &quot;A String&quot;, # The name of the relationship column associated with the lookup.
127 &quot;relationshipColumnId&quot;: &quot;A String&quot;, # The id of the relationship column.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700128 },
yoshi-code-bot3dd15272021-04-21 15:07:48 -0700129 &quot;multipleValuesDisallowed&quot;: True or False, # Optional. Indicates whether or not multiple values are allowed for array types where such a restriction is possible.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800130 &quot;name&quot;: &quot;A String&quot;, # column name
131 &quot;relationshipDetails&quot;: { # Details about a relationship column. # Optional. Additional details about a relationship column. Specified when data_type is relationship.
132 &quot;linkedTable&quot;: &quot;A String&quot;, # The name of the table this relationship is linked to.
133 },
134 },
135 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800136 &quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800137 &quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
138 &quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
Anthonios Partheniou10f4b672021-04-13 14:47:53 -0400139 &quot;savedViews&quot;: [ # Saved views for this table.
140 { # A saved view of a table. NextId: 3
141 &quot;id&quot;: &quot;A String&quot;, # Internal id associated with the saved view.
142 &quot;name&quot;: &quot;A String&quot;, # Display name of the saved view.
143 },
144 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800145 &quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800146}</pre>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700147</div>
148
149<div class="method">
yoshi-code-bot3dd15272021-04-21 15:07:48 -0700150 <code class="details" id="list">list(orderBy=None, pageSize=None, pageToken=None, x__xgafv=None)</code>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700151 <pre>Lists tables for the user.
152
153Args:
yoshi-code-bot3dd15272021-04-21 15:07:48 -0700154 orderBy: string, Optional. Sorting order for the list of tables on createTime/updateTime.
Yoshi Automation Botc2228be2020-11-24 15:48:03 -0800155 pageSize: integer, The maximum number of tables to return. The service may return fewer than this value. If unspecified, at most 20 tables are returned. The maximum value is 100; values above 100 are coerced to 100.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800156 pageToken: string, A page token, received from a previous `ListTables` call. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `ListTables` must match the call that provided the page token.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700157 x__xgafv: string, V1 error format.
158 Allowed values
159 1 - v1 error format
160 2 - v2 error format
161
162Returns:
163 An object of the form:
164
165 { # Response message for TablesService.ListTables.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800166 &quot;nextPageToken&quot;: &quot;A String&quot;, # A token, which can be sent as `page_token` to retrieve the next page. If this field is empty, there are no subsequent pages.
167 &quot;tables&quot;: [ # The list of tables.
Anthonios Partheniou10f4b672021-04-13 14:47:53 -0400168 { # A single table. NextId: 7
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800169 &quot;columns&quot;: [ # List of columns in this table. Order of columns matches the display order.
170 { # Details on a column in the table.
171 &quot;dataType&quot;: &quot;A String&quot;, # Data type of the column Supported types are auto_id, boolean, boolean_list, creator, create_timestamp, date, dropdown, location, integer, integer_list, number, number_list, person, person_list, tags, check_list, text, text_list, update_timestamp, updater, relationship, file_attachment_list. These types directly map to the column types supported on Tables website.
172 &quot;id&quot;: &quot;A String&quot;, # Internal id for a column.
173 &quot;labels&quot;: [ # Optional. Range of labeled values for the column. Some columns like tags and drop-downs limit the values to a set of possible values. We return the range of values in such cases to help clients implement better user data validation.
174 { # A single item in a labeled column.
175 &quot;id&quot;: &quot;A String&quot;, # Internal id associated with the item.
176 &quot;name&quot;: &quot;A String&quot;, # Display string as entered by user.
Yoshi Automation Bot0d561ef2020-11-25 07:50:41 -0800177 },
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800178 ],
179 &quot;lookupDetails&quot;: { # Details about a lookup column whose value comes from the associated relationship. # Optional. Indicates that this is a lookup column whose value is derived from the relationship column specified in the details. Lookup columns can not be updated directly. To change the value you must update the associated relationship column.
180 &quot;relationshipColumn&quot;: &quot;A String&quot;, # The name of the relationship column associated with the lookup.
181 &quot;relationshipColumnId&quot;: &quot;A String&quot;, # The id of the relationship column.
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700182 },
yoshi-code-bot3dd15272021-04-21 15:07:48 -0700183 &quot;multipleValuesDisallowed&quot;: True or False, # Optional. Indicates whether or not multiple values are allowed for array types where such a restriction is possible.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800184 &quot;name&quot;: &quot;A String&quot;, # column name
185 &quot;relationshipDetails&quot;: { # Details about a relationship column. # Optional. Additional details about a relationship column. Specified when data_type is relationship.
186 &quot;linkedTable&quot;: &quot;A String&quot;, # The name of the table this relationship is linked to.
187 },
188 },
189 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800190 &quot;createTime&quot;: &quot;A String&quot;, # Time when the table was created.
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800191 &quot;displayName&quot;: &quot;A String&quot;, # The human readable title of the table.
192 &quot;name&quot;: &quot;A String&quot;, # The resource name of the table. Table names have the form `tables/{table}`.
Anthonios Partheniou10f4b672021-04-13 14:47:53 -0400193 &quot;savedViews&quot;: [ # Saved views for this table.
194 { # A saved view of a table. NextId: 3
195 &quot;id&quot;: &quot;A String&quot;, # Internal id associated with the saved view.
196 &quot;name&quot;: &quot;A String&quot;, # Display name of the saved view.
197 },
198 ],
yoshi-code-botb6dc1b92021-03-02 11:49:08 -0800199 &quot;updateTime&quot;: &quot;A String&quot;, # Time when the table was last updated excluding updates to individual rows
Yoshi Automation Botcc94ec82021-01-15 07:10:04 -0800200 },
201 ],
202}</pre>
Bu Sun Kim673ec5c2020-11-16 11:05:03 -0700203</div>
204
205<div class="method">
206 <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
207 <pre>Retrieves the next page of results.
208
209Args:
210 previous_request: The request for the previous page. (required)
211 previous_response: The response from the request for the previous page. (required)
212
213Returns:
214 A request object that you can call &#x27;execute()&#x27; on to request the next
215 page. Returns None if there are no more items in the collection.
216 </pre>
217</div>
218
219</body></html>