Home | History | Annotate | Download | only in dyn
      1 <html><body>
      2 <style>
      3 
      4 body, 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 
     15 body {
     16   font-size: 13px;
     17   padding: 1em;
     18 }
     19 
     20 h1 {
     21   font-size: 26px;
     22   margin-bottom: 1em;
     23 }
     24 
     25 h2 {
     26   font-size: 24px;
     27   margin-bottom: 1em;
     28 }
     29 
     30 h3 {
     31   font-size: 20px;
     32   margin-bottom: 1em;
     33   margin-top: 1em;
     34 }
     35 
     36 pre, code {
     37   line-height: 1.5;
     38   font-family: Monaco, 'DejaVu Sans Mono', 'Bitstream Vera Sans Mono', 'Lucida Console', monospace;
     39 }
     40 
     41 pre {
     42   margin-top: 0.5em;
     43 }
     44 
     45 h1, h2, h3, p {
     46   font-family: Arial, sans serif;
     47 }
     48 
     49 h1, 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="fusiontables_v1.html">Fusion Tables API</a> . <a href="fusiontables_v1.task.html">task</a></h1>
     76 <h2>Instance Methods</h2>
     77 <p class="toc_element">
     78   <code><a href="#delete">delete(tableId, taskId)</a></code></p>
     79 <p class="firstline">Deletes the task, unless already started.</p>
     80 <p class="toc_element">
     81   <code><a href="#get">get(tableId, taskId)</a></code></p>
     82 <p class="firstline">Retrieves a specific task by its id.</p>
     83 <p class="toc_element">
     84   <code><a href="#list">list(tableId, pageToken=None, maxResults=None, startIndex=None)</a></code></p>
     85 <p class="firstline">Retrieves a list of tasks.</p>
     86 <p class="toc_element">
     87   <code><a href="#list_next">list_next(previous_request, previous_response)</a></code></p>
     88 <p class="firstline">Retrieves the next page of results.</p>
     89 <h3>Method Details</h3>
     90 <div class="method">
     91     <code class="details" id="delete">delete(tableId, taskId)</code>
     92   <pre>Deletes the task, unless already started.
     93 
     94 Args:
     95   tableId: string, Table from which the task is being deleted. (required)
     96   taskId: string, A parameter (required)
     97 </pre>
     98 </div>
     99 
    100 <div class="method">
    101     <code class="details" id="get">get(tableId, taskId)</code>
    102   <pre>Retrieves a specific task by its id.
    103 
    104 Args:
    105   tableId: string, Table to which the task belongs. (required)
    106   taskId: string, A parameter (required)
    107 
    108 Returns:
    109   An object of the form:
    110 
    111     { # Specifies the identifier, name, and type of a task in a table.
    112     "started": True or False, # false while the table is busy with some other task. true if this background task is currently running.
    113     "progress": "A String", # An indication of task progress.
    114     "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
    115     "type": "A String", # Type of background task. One of  DELETE_ROWS Deletes one or more rows from the table. ADD_ROWS "Adds one or more rows to a table. Includes importing data into a new table and importing more rows into an existing table. ADD_COLUMN Adds a new column to the table. CHANGE_TYPE Changes the type of a column.
    116     "taskId": "A String", # Identifier for the task.
    117   }</pre>
    118 </div>
    119 
    120 <div class="method">
    121     <code class="details" id="list">list(tableId, pageToken=None, maxResults=None, startIndex=None)</code>
    122   <pre>Retrieves a list of tasks.
    123 
    124 Args:
    125   tableId: string, Table whose tasks are being listed. (required)
    126   pageToken: string, A parameter
    127   maxResults: integer, Maximum number of columns to return. Optional. Default is 5.
    128   startIndex: integer, A parameter
    129 
    130 Returns:
    131   An object of the form:
    132 
    133     { # Represents a list of tasks for a table.
    134     "nextPageToken": "A String", # Token used to access the next page of this result. No token is displayed if there are no more pages left.
    135     "items": [ # List of all requested tasks.
    136       { # Specifies the identifier, name, and type of a task in a table.
    137         "started": True or False, # false while the table is busy with some other task. true if this background task is currently running.
    138         "progress": "A String", # An indication of task progress.
    139         "kind": "fusiontables#task", # Type of the resource. This is always "fusiontables#task".
    140         "type": "A String", # Type of background task. One of  DELETE_ROWS Deletes one or more rows from the table. ADD_ROWS "Adds one or more rows to a table. Includes importing data into a new table and importing more rows into an existing table. ADD_COLUMN Adds a new column to the table. CHANGE_TYPE Changes the type of a column.
    141         "taskId": "A String", # Identifier for the task.
    142       },
    143     ],
    144     "kind": "fusiontables#taskList", # Type of the resource. This is always "fusiontables#taskList".
    145     "totalItems": 42, # Total number of tasks for the table.
    146   }</pre>
    147 </div>
    148 
    149 <div class="method">
    150     <code class="details" id="list_next">list_next(previous_request, previous_response)</code>
    151   <pre>Retrieves the next page of results.
    152 
    153 Args:
    154   previous_request: The request for the previous page. (required)
    155   previous_response: The response from the request for the previous page. (required)
    156 
    157 Returns:
    158   A request object that you can call 'execute()' on to request the next
    159   page. Returns None if there are no more items in the collection.
    160     </pre>
    161 </div>
    162 
    163 </body></html>