REST Resource: customers.tables
Resource: Table
Defines a table that can be queried.
JSON representation |
{
"name": string,
"tablePath": string,
"columns": [
{
object (Column )
}
]
} |
Fields |
name |
string
Name that uniquely identifies a table. It has the form customers/[customerId]/tables/[tablePath], e.g. 'customers/123/tables/adh.google_ads_impressions'.
|
tablePath |
string
Fully qualified table path, e.g. 'adh.google_ads_impressions'.
|
columns[] |
object (Column )
A list of table columns.
|
Methods |
|
Retrieves the requested Ads Data Hub table. |
|
Lists the Ads Data Hub tables to which the specified customer has access. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[null,null,["Last updated 2024-09-18 UTC."],[[["Ads Data Hub (ADH) Table resource defines a queryable table with a unique name, a fully qualified path, and a list of columns."],["The Table resource can be represented in JSON format including its name, path, and column details."],["ADH provides methods to retrieve a specific table and list all accessible tables for a customer."]]],["The content describes a table resource within Ads Data Hub, accessible via API methods. A table is uniquely identified by a name and `tablePath`, containing a list of columns. The table's JSON representation includes these fields. Available actions include retrieving a specific table using the `get` method or listing accessible tables via the `list` method, allowing users to access and explore table structures within their customer context.\n"]]