Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest

Returns information about running and completed jobs.

Inheritance
System.Object
ClientServiceRequest
ClientServiceRequest<ListTransferRunsResponse>
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>
ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest
Implements
IClientServiceRequest<ListTransferRunsResponse>
IClientServiceRequest
Inherited Members
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.Xgafv
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.AccessToken
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.Alt
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.Callback
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.Fields
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.Key
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.OauthToken
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.PrettyPrint
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.QuotaUser
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.UploadType
BigQueryDataTransferBaseServiceRequest<ListTransferRunsResponse>.UploadProtocol
ClientServiceRequest<ListTransferRunsResponse>.Execute()
ClientServiceRequest<ListTransferRunsResponse>.ExecuteAsStream()
ClientServiceRequest<ListTransferRunsResponse>.ExecuteAsync()
ClientServiceRequest<ListTransferRunsResponse>.ExecuteAsync(CancellationToken)
ClientServiceRequest<ListTransferRunsResponse>.ExecuteAsStreamAsync()
ClientServiceRequest<ListTransferRunsResponse>.ExecuteAsStreamAsync(CancellationToken)
ClientServiceRequest<ListTransferRunsResponse>.CreateRequest(Nullable<Boolean>)
ClientServiceRequest<ListTransferRunsResponse>.GenerateRequestUri()
ClientServiceRequest<ListTransferRunsResponse>.GetBody()
ClientServiceRequest<ListTransferRunsResponse>.GetDefaultETagAction(String)
ClientServiceRequest<ListTransferRunsResponse>.ETagAction
ClientServiceRequest<ListTransferRunsResponse>.ModifyRequest
ClientServiceRequest<ListTransferRunsResponse>.ValidateParameters
ClientServiceRequest<ListTransferRunsResponse>.RequestParameters
ClientServiceRequest<ListTransferRunsResponse>.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<ListTransferRunsResponse>, IClientServiceRequest<ListTransferRunsResponse>, 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.ListTransferRunsResponse>.HttpMethod

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.ListTransferRunsResponse>.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 ListTransferRunsRequest list results. For multiple-page results, ListTransferRunsResponse 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. Name of transfer configuration for which transfer runs should be retrieved. Format of transfer configuration resource name is: projects/{project_id}/transferConfigs/{config_id} or projects/{project_id}/locations/{location_id}/transferConfigs/{config_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.ListTransferRunsResponse>.RestPath

RunAttempt

Indicates how run attempts are to be pulled.

Declaration
[RequestParameter("runAttempt", RequestParameterType.Query)]
public virtual ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest.RunAttemptEnum? RunAttempt { get; set; }
Property Value
Type Description
System.Nullable<ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest.RunAttemptEnum>

States

When specified, only transfer runs with requested states are returned.

Declaration
[RequestParameter("states", RequestParameterType.Query)]
public virtual ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest.StatesEnum? States { get; set; }
Property Value
Type Description
System.Nullable<ProjectsResource.LocationsResource.TransferConfigsResource.RunsResource.ListRequest.StatesEnum>

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top