Show / Hide Table of Contents

Class ProjectsResource.TransferConfigsResource.ListRequest

Returns information about all data transfers in the project.

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

DataSourceIds

When specified, only configurations of requested data sources are returned.

Declaration
[RequestParameter("dataSourceIds", RequestParameterType.Query)]
public virtual Repeatable<string> DataSourceIds { get; set; }
Property Value
Type Description
Repeatable<System.String>

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.ListTransferConfigsResponse>.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.ListTransferConfigsResponse>.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 ListTransfersRequest list results. For multiple-page results, ListTransfersResponse 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. The BigQuery project id for which data sources should be returned: projects/{project_id} or projects/{project_id}/locations/{location_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.ListTransferConfigsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

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

Implements

IClientServiceRequest<TResponse>
IClientServiceRequest
In This Article
Back to top