Class TablesResource.GetRequest
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.
Inheritance
Inherited Members
Namespace: Google.Apis.Bigquery.v2
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class TablesResource.GetRequest : BigqueryBaseServiceRequest<Table>, IClientServiceRequest<Table>, IClientServiceRequest
Constructors
GetRequest(IClientService, string, string, string)
Constructs a new Get request.
Declaration
public GetRequest(IClientService service, string projectId, string datasetId, string tableId)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | projectId | |
string | datasetId | |
string | tableId |
Properties
DatasetId
Required. Dataset ID of the requested table
Declaration
[RequestParameter("datasetId", RequestParameterType.Path)]
public virtual string DatasetId { get; }
Property Value
Type | Description |
---|---|
string |
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
ProjectId
Required. Project ID of the requested table
Declaration
[RequestParameter("projectId", RequestParameterType.Path)]
public virtual string ProjectId { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
SelectedFields
List of table schema fields to return (comma-separated). If unspecified, all fields are returned. A fieldMask cannot be used here because the fields will automatically be converted from camelCase to snake_case and the conversion will fail if there are underscores. Since these are fields in BigQuery table schemas, underscores are allowed.
Declaration
[RequestParameter("selectedFields", RequestParameterType.Query)]
public virtual string SelectedFields { get; set; }
Property Value
Type | Description |
---|---|
string |
TableId
Required. Table ID of the requested table
Declaration
[RequestParameter("tableId", RequestParameterType.Path)]
public virtual string TableId { get; }
Property Value
Type | Description |
---|---|
string |
View
Optional. Specifies the view that determines which table information is returned. By default, basic table information and storage statistics (STORAGE_STATS) are returned.
Declaration
[RequestParameter("view", RequestParameterType.Query)]
public virtual TablesResource.GetRequest.ViewEnum? View { get; set; }
Property Value
Type | Description |
---|---|
TablesResource.GetRequest.ViewEnum? |
Methods
InitParameters()
Initializes Get parameter list.
Declaration
protected override void InitParameters()