Show / Hide Table of Contents

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
object
ClientServiceRequest
ClientServiceRequest<Table>
BigqueryBaseServiceRequest<Table>
TablesResource.GetRequest
Implements
IClientServiceRequest<Table>
IClientServiceRequest
Inherited Members
BigqueryBaseServiceRequest<Table>.Xgafv
BigqueryBaseServiceRequest<Table>.AccessToken
BigqueryBaseServiceRequest<Table>.Alt
BigqueryBaseServiceRequest<Table>.Callback
BigqueryBaseServiceRequest<Table>.Fields
BigqueryBaseServiceRequest<Table>.Key
BigqueryBaseServiceRequest<Table>.OauthToken
BigqueryBaseServiceRequest<Table>.PrettyPrint
BigqueryBaseServiceRequest<Table>.QuotaUser
BigqueryBaseServiceRequest<Table>.UploadType
BigqueryBaseServiceRequest<Table>.UploadProtocol
ClientServiceRequest<Table>.Execute()
ClientServiceRequest<Table>.ExecuteAsStream()
ClientServiceRequest<Table>.ExecuteAsync()
ClientServiceRequest<Table>.ExecuteAsync(CancellationToken)
ClientServiceRequest<Table>.ExecuteAsStreamAsync()
ClientServiceRequest<Table>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<Table>.CreateRequest(bool?)
ClientServiceRequest<Table>.GenerateRequestUri()
ClientServiceRequest<Table>.GetBody()
ClientServiceRequest<Table>.GetDefaultETagAction(string)
ClientServiceRequest<Table>.ETagAction
ClientServiceRequest<Table>.ModifyRequest
ClientServiceRequest<Table>.ValidateParameters
ClientServiceRequest<Table>.ApiVersion
ClientServiceRequest<Table>.RequestParameters
ClientServiceRequest<Table>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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
ClientServiceRequest<Table>.HttpMethod

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
string
Overrides
ClientServiceRequest<Table>.MethodName

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
ClientServiceRequest<Table>.RestPath

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()
Overrides
BigqueryBaseServiceRequest<Table>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In this article
Back to top Generated by DocFX
OSZAR »