Show / Hide Table of Contents

Class ProjectsResource.TransferConfigsResource.RunsResource.TransferLogsResource.ListRequest

Returns user facing log messages for the data transfer run.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListTransferLogsResponse>
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>
ProjectsResource.TransferConfigsResource.RunsResource.TransferLogsResource.ListRequest
Implements
IClientServiceRequest<ListTransferLogsResponse>
IClientServiceRequest
Inherited Members
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.Xgafv
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.AccessToken
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.Alt
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.Callback
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.Fields
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.Key
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.OauthToken
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.PrettyPrint
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.QuotaUser
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.UploadType
BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>.UploadProtocol
ClientServiceRequest<ListTransferLogsResponse>.Execute()
ClientServiceRequest<ListTransferLogsResponse>.ExecuteAsStream()
ClientServiceRequest<ListTransferLogsResponse>.ExecuteAsync()
ClientServiceRequest<ListTransferLogsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListTransferLogsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListTransferLogsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListTransferLogsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListTransferLogsResponse>.GenerateRequestUri()
ClientServiceRequest<ListTransferLogsResponse>.GetBody()
ClientServiceRequest<ListTransferLogsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListTransferLogsResponse>.ETagAction
ClientServiceRequest<ListTransferLogsResponse>.ModifyRequest
ClientServiceRequest<ListTransferLogsResponse>.ValidateParameters
ClientServiceRequest<ListTransferLogsResponse>.RequestParameters
ClientServiceRequest<ListTransferLogsResponse>.Service
ClientServiceRequest._unsuccessfulResponseHandlers
ClientServiceRequest._exceptionHandlers
ClientServiceRequest._executeInterceptors
ClientServiceRequest.AddUnsuccessfulResponseHandler(IHttpUnsuccessfulResponseHandler)
ClientServiceRequest.AddExceptionHandler(IHttpExceptionHandler)
ClientServiceRequest.AddExecuteInterceptor(IHttpExecuteInterceptor)
ClientServiceRequest.Credential
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.BigQueryDataTransfer.v1
Assembly: Google.Apis.BigQueryDataTransfer.v1.dll
Syntax
public class ListRequest : BigQueryDataTransferBaseServiceRequest<ListTransferLogsResponse>, IClientServiceRequest<ListTransferLogsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

Declaration
public ListRequest(IClientService service, string parent)
Parameters
Type Name Description
IClientService service
System.String parent

Properties

HttpMethod

Gets the HTTP method.

Declaration
public override string HttpMethod { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.BigQueryDataTransfer.v1.Data.ListTransferLogsResponse>.HttpMethod

MessageTypes

Message types to return. If not populated - INFO, WARNING and ERROR messages are returned.

Declaration
[RequestParameter("messageTypes", RequestParameterType.Query)]
public virtual ProjectsResource.TransferConfigsResource.RunsResource.TransferLogsResource.ListRequest.MessageTypesEnum? MessageTypes { get; set; }
Property Value
Type Description
System.Nullable<ProjectsResource.TransferConfigsResource.RunsResource.TransferLogsResource.ListRequest.MessageTypesEnum>

MethodName

Gets the method name.

Declaration
public override string MethodName { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.BigQueryDataTransfer.v1.Data.ListTransferLogsResponse>.MethodName

PageSize

Page size. The default page size is the maximum value of 1000 results.

Declaration
[RequestParameter("pageSize", RequestParameterType.Query)]
public virtual int? PageSize { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

PageToken

Pagination token, which can be used to request a specific page of ListTransferLogsRequest list results. For multiple-page results, ListTransferLogsResponse outputs a next_page token, which can be used as the page_token value to request the next page of list results.

Declaration
[RequestParameter("pageToken", RequestParameterType.Query)]
public virtual string PageToken { get; set; }
Property Value
Type Description
System.String

Parent

Required. Transfer run name in the form: projects/{project_id}/transferConfigs/{config_id}/runs/{run_id} or projects/{project_id}/locations/{location_id}/transferConfigs/{config_id}/runs/{run_id}

Declaration
[RequestParameter("parent", RequestParameterType.Path)]
public virtual string Parent { get; }
Property Value
Type Description
System.String

RestPath

Gets the REST path.

Declaration
public override string RestPath { get; }
Property Value
Type Description
System.String
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.BigQueryDataTransfer.v1.Data.ListTransferLogsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.BigQueryDataTransfer.v1.BigQueryDataTransferBaseServiceRequest<Google.Apis.BigQueryDataTransfer.v1.Data.ListTransferLogsResponse>.InitParameters()

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top