class Resource(__builtin__.object)
    A class for interacting with a resource.
 
  Methods defined here:
__init__(self)
delete = method(self, **kwargs)
Deletes the table specified by tableId from the dataset. If the table contains data, all the data will be deleted.
 
Args:
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the table to delete (required)
  strict: string, A parameter
  tableId: string, Table ID of the table to delete (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the table to delete (required)
get = method(self, **kwargs)
Gets the specified table resource by table ID. This method does not return the data in the table, it only returns the table resource, which describes the structure of this table.
 
Args:
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the requested table (required)
  strict: string, A parameter
  tableId: string, Table ID of the requested table (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the requested table (required)
 
Returns:
  An object of the form
 
    {
      "kind": "bigquery#table", # [Output-only] The type of the resource.
      "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
      "description": "A String", # [Optional] A user-friendly description of this table.
      "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
      "tableReference": { # [Required] Reference describing the ID of this table.
        "projectId": "A String", # [Required] ID of the project billed for storage of the table.
        "tableId": "A String", # [Required] ID of the table.
        "datasetId": "A String", # [Required] ID of the dataset containing the table.
      },
      "numRows": "A String", # [Output-only] The number of rows of data in this table.
      "numBytes": "A String", # [Output-only] The size of the table in bytes.
      "etag": "A String", # [Output-only] A hash of this resource.
      "friendlyName": "A String", # [Optional] A descriptive name for this table.
      "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
      "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
      "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
      "schema": { # [Optional] Describes the schema of this table.
        "fields": [ # Describes the fields in a table.
          {
            "fields": [ # [Optional] Describes nested fields when type is RECORD.
              # Object with schema name: TableFieldSchema
            ],
            "type": "A String", # [Required] Data type of the field.
            "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
            "name": "A String", # [Required] Name of the field.
          },
        ],
      },
    }
insert = method(self, **kwargs)
Creates a new, empty table in the dataset.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "bigquery#table", # [Output-only] The type of the resource.
    "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
    "description": "A String", # [Optional] A user-friendly description of this table.
    "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
    "tableReference": { # [Required] Reference describing the ID of this table.
      "projectId": "A String", # [Required] ID of the project billed for storage of the table.
      "tableId": "A String", # [Required] ID of the table.
      "datasetId": "A String", # [Required] ID of the dataset containing the table.
    },
    "numRows": "A String", # [Output-only] The number of rows of data in this table.
    "numBytes": "A String", # [Output-only] The size of the table in bytes.
    "etag": "A String", # [Output-only] A hash of this resource.
    "friendlyName": "A String", # [Optional] A descriptive name for this table.
    "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
    "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
    "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
    "schema": { # [Optional] Describes the schema of this table.
      "fields": [ # Describes the fields in a table.
        {
          "fields": [ # [Optional] Describes nested fields when type is RECORD.
            # Object with schema name: TableFieldSchema
          ],
          "type": "A String", # [Required] Data type of the field.
          "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
          "name": "A String", # [Required] Name of the field.
        },
      ],
    },
  }
 
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the new table (required)
  strict: string, A parameter
  userip: string, A parameter
  datasetId: string, Dataset ID of the new table (required)
 
Returns:
  An object of the form
 
    {
      "kind": "bigquery#table", # [Output-only] The type of the resource.
      "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
      "description": "A String", # [Optional] A user-friendly description of this table.
      "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
      "tableReference": { # [Required] Reference describing the ID of this table.
        "projectId": "A String", # [Required] ID of the project billed for storage of the table.
        "tableId": "A String", # [Required] ID of the table.
        "datasetId": "A String", # [Required] ID of the dataset containing the table.
      },
      "numRows": "A String", # [Output-only] The number of rows of data in this table.
      "numBytes": "A String", # [Output-only] The size of the table in bytes.
      "etag": "A String", # [Output-only] A hash of this resource.
      "friendlyName": "A String", # [Optional] A descriptive name for this table.
      "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
      "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
      "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
      "schema": { # [Optional] Describes the schema of this table.
        "fields": [ # Describes the fields in a table.
          {
            "fields": [ # [Optional] Describes nested fields when type is RECORD.
              # Object with schema name: TableFieldSchema
            ],
            "type": "A String", # [Required] Data type of the field.
            "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
            "name": "A String", # [Required] Name of the field.
          },
        ],
      },
    }
list = method(self, **kwargs)
Lists all tables in the specified dataset.
 
Args:
  pp: string, A parameter
  trace: string, A parameter
  pageToken: string, Page token, returned by a previous call, to request the next page of results
  maxResults: integer, Maximum number of results to return
  strict: string, A parameter
  projectId: string, Project ID of the tables to list (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the tables to list (required)
 
Returns:
  An object of the form
 
    {
    "nextPageToken": "A String", # A token to request the next page of results.
    "tables": [ # Tables in the requested dataset.
      {
        "friendlyName": "A String", # The user-friendly name for this table.
        "kind": "bigquery#table", # The resource type.
        "id": "A String", # An opaque ID of the table
        "tableReference": { # A reference uniquely identifying the table.
          "projectId": "A String", # [Required] ID of the project billed for storage of the table.
          "tableId": "A String", # [Required] ID of the table.
          "datasetId": "A String", # [Required] ID of the dataset containing the table.
        },
      },
    ],
    "kind": "bigquery#tableList", # The type of list.
    "etag": "A String", # A hash of this page of results.
    "totalItems": 42, # The total number of tables in the dataset.
  }
list_next = methodNext(self, previous_request, previous_response)
Retrieves the next page of results.
 
Args:
  previous_request: The request for the previous page.
  previous_response: The response from the request for the previous page.
 
Returns:
  A request object that you can call 'execute()' on to request the next
  page. Returns None if there are no more items in the collection.
patch = method(self, **kwargs)
Updates information in an existing table, specified by tableId. This method supports patch semantics.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "bigquery#table", # [Output-only] The type of the resource.
    "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
    "description": "A String", # [Optional] A user-friendly description of this table.
    "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
    "tableReference": { # [Required] Reference describing the ID of this table.
      "projectId": "A String", # [Required] ID of the project billed for storage of the table.
      "tableId": "A String", # [Required] ID of the table.
      "datasetId": "A String", # [Required] ID of the dataset containing the table.
    },
    "numRows": "A String", # [Output-only] The number of rows of data in this table.
    "numBytes": "A String", # [Output-only] The size of the table in bytes.
    "etag": "A String", # [Output-only] A hash of this resource.
    "friendlyName": "A String", # [Optional] A descriptive name for this table.
    "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
    "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
    "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
    "schema": { # [Optional] Describes the schema of this table.
      "fields": [ # Describes the fields in a table.
        {
          "fields": [ # [Optional] Describes nested fields when type is RECORD.
            # Object with schema name: TableFieldSchema
          ],
          "type": "A String", # [Required] Data type of the field.
          "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
          "name": "A String", # [Required] Name of the field.
        },
      ],
    },
  }
 
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the table to update (required)
  strict: string, A parameter
  tableId: string, Table ID of the table to update (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the table to update (required)
 
Returns:
  An object of the form
 
    {
      "kind": "bigquery#table", # [Output-only] The type of the resource.
      "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
      "description": "A String", # [Optional] A user-friendly description of this table.
      "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
      "tableReference": { # [Required] Reference describing the ID of this table.
        "projectId": "A String", # [Required] ID of the project billed for storage of the table.
        "tableId": "A String", # [Required] ID of the table.
        "datasetId": "A String", # [Required] ID of the dataset containing the table.
      },
      "numRows": "A String", # [Output-only] The number of rows of data in this table.
      "numBytes": "A String", # [Output-only] The size of the table in bytes.
      "etag": "A String", # [Output-only] A hash of this resource.
      "friendlyName": "A String", # [Optional] A descriptive name for this table.
      "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
      "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
      "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
      "schema": { # [Optional] Describes the schema of this table.
        "fields": [ # Describes the fields in a table.
          {
            "fields": [ # [Optional] Describes nested fields when type is RECORD.
              # Object with schema name: TableFieldSchema
            ],
            "type": "A String", # [Required] Data type of the field.
            "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
            "name": "A String", # [Required] Name of the field.
          },
        ],
      },
    }
update = method(self, **kwargs)
Updates information in an existing table, specified by tableId.
 
Args:
  body: object, The request body. (required)
    The object takes the form of:
 
{
    "kind": "bigquery#table", # [Output-only] The type of the resource.
    "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
    "description": "A String", # [Optional] A user-friendly description of this table.
    "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
    "tableReference": { # [Required] Reference describing the ID of this table.
      "projectId": "A String", # [Required] ID of the project billed for storage of the table.
      "tableId": "A String", # [Required] ID of the table.
      "datasetId": "A String", # [Required] ID of the dataset containing the table.
    },
    "numRows": "A String", # [Output-only] The number of rows of data in this table.
    "numBytes": "A String", # [Output-only] The size of the table in bytes.
    "etag": "A String", # [Output-only] A hash of this resource.
    "friendlyName": "A String", # [Optional] A descriptive name for this table.
    "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
    "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
    "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
    "schema": { # [Optional] Describes the schema of this table.
      "fields": [ # Describes the fields in a table.
        {
          "fields": [ # [Optional] Describes nested fields when type is RECORD.
            # Object with schema name: TableFieldSchema
          ],
          "type": "A String", # [Required] Data type of the field.
          "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
          "name": "A String", # [Required] Name of the field.
        },
      ],
    },
  }
 
  pp: string, A parameter
  trace: string, A parameter
  projectId: string, Project ID of the table to update (required)
  strict: string, A parameter
  tableId: string, Table ID of the table to update (required)
  userip: string, A parameter
  datasetId: string, Dataset ID of the table to update (required)
 
Returns:
  An object of the form
 
    {
      "kind": "bigquery#table", # [Output-only] The type of the resource.
      "lastModifiedTime": "A String", # [Output-only] The time when this table was last modified, in milliseconds since the epoch.
      "description": "A String", # [Optional] A user-friendly description of this table.
      "creationTime": "A String", # [Output-only] The time when this table was created, in milliseconds since the epoch.
      "tableReference": { # [Required] Reference describing the ID of this table.
        "projectId": "A String", # [Required] ID of the project billed for storage of the table.
        "tableId": "A String", # [Required] ID of the table.
        "datasetId": "A String", # [Required] ID of the dataset containing the table.
      },
      "numRows": "A String", # [Output-only] The number of rows of data in this table.
      "numBytes": "A String", # [Output-only] The size of the table in bytes.
      "etag": "A String", # [Output-only] A hash of this resource.
      "friendlyName": "A String", # [Optional] A descriptive name for this table.
      "expirationTime": "A String", # [Optional] The time when this table expires, in milliseconds since the epoch. If not present, the table will persist indefinitely. Expired tables will be deleted and their storage reclaimed.
      "id": "A String", # [Output-only] An opaque ID uniquely identifying the table.
      "selfLink": "A String", # [Output-only] A URL that can be used to access this resource again.
      "schema": { # [Optional] Describes the schema of this table.
        "fields": [ # Describes the fields in a table.
          {
            "fields": [ # [Optional] Describes nested fields when type is RECORD.
              # Object with schema name: TableFieldSchema
            ],
            "type": "A String", # [Required] Data type of the field.
            "mode": "A String", # [Optional] Mode of the field (whether or not it can be null. Default is NULLABLE.
            "name": "A String", # [Required] Name of the field.
          },
        ],
      },
    }

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