class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
list = method(self, **kwargs)
Retrieves table data from a specified set of rows.
 
Args:
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the table to read (required)
  maxResults: integer, Maximum number of results to return
  strict: string, A parameter
  startIndex: string, Zero-based index of the starting row to read
  tableId: string, Table ID of the table to read (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the table to read (required)
 
Returns:
  An object of the form
 
    {
    "rows": [ # Rows of results.
      {
        "f": [ # Represents a single row in the result set, consisting of one or more fields.
          {
            "v": "A String", # Contains the field value in this row, as a string.
          },
        ],
      },
    ],
    "kind": "bigquery#tableDataList", # The resource type of the response.
    "etag": "A String", # A hash of this page of results.
    "totalRows": "A String", # The total number of rows in the complete table.
  }

Data descriptors defined here:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)