Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.BuildsResource.ListRequest

Lists previously requested builds. Previously requested builds may still be in-progress, or may have finished successfully or unsuccessfully.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<ListBuildsResponse>
CloudBuildBaseServiceRequest<ListBuildsResponse>
ProjectsResource.LocationsResource.BuildsResource.ListRequest
Implements
Google.Apis.Requests.IClientServiceRequest<ListBuildsResponse>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
CloudBuildBaseServiceRequest<ListBuildsResponse>.Xgafv
CloudBuildBaseServiceRequest<ListBuildsResponse>.AccessToken
CloudBuildBaseServiceRequest<ListBuildsResponse>.Alt
CloudBuildBaseServiceRequest<ListBuildsResponse>.Callback
CloudBuildBaseServiceRequest<ListBuildsResponse>.Fields
CloudBuildBaseServiceRequest<ListBuildsResponse>.Key
CloudBuildBaseServiceRequest<ListBuildsResponse>.OauthToken
CloudBuildBaseServiceRequest<ListBuildsResponse>.PrettyPrint
CloudBuildBaseServiceRequest<ListBuildsResponse>.QuotaUser
CloudBuildBaseServiceRequest<ListBuildsResponse>.UploadType
CloudBuildBaseServiceRequest<ListBuildsResponse>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.GetBody()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.Service
Google.Apis.Requests.ClientServiceRequest._unsuccessfulResponseHandlers
Google.Apis.Requests.ClientServiceRequest._exceptionHandlers
Google.Apis.Requests.ClientServiceRequest._executeInterceptors
Google.Apis.Requests.ClientServiceRequest.AddUnsuccessfulResponseHandler(Google.Apis.Http.IHttpUnsuccessfulResponseHandler)
Google.Apis.Requests.ClientServiceRequest.AddExceptionHandler(Google.Apis.Http.IHttpExceptionHandler)
Google.Apis.Requests.ClientServiceRequest.AddExecuteInterceptor(Google.Apis.Http.IHttpExecuteInterceptor)
Google.Apis.Requests.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.CloudBuild.v1
Assembly: Google.Apis.CloudBuild.v1.dll
Syntax
public class ListRequest : CloudBuildBaseServiceRequest<ListBuildsResponse>, IClientServiceRequest<ListBuildsResponse>, IClientServiceRequest

Constructors

ListRequest(IClientService, String)

Constructs a new List request.

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

Properties

Filter

The raw filter text to constrain the results.

Declaration
[RequestParameter("filter", RequestParameterType.Query)]
public virtual string Filter { get; set; }
Property Value
Type Description
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.CloudBuild.v1.Data.ListBuildsResponse>.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.CloudBuild.v1.Data.ListBuildsResponse>.MethodName

PageSize

Number of results to return in the list.

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

PageToken

The page token for the next page of Builds. If unspecified, the first page of results is returned. If the token is rejected for any reason, INVALID_ARGUMENT will be thrown. In this case, the token should be discarded, and pagination should be restarted from the first page of results. See https://google.aip.dev/158 for more.

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

Parent

The parent of the collection of Builds. Format: projects/{project}/locations/location

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

ProjectId

Required. ID of the project.

Declaration
[RequestParameter("projectId", RequestParameterType.Query)]
public virtual string ProjectId { get; set; }
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.CloudBuild.v1.Data.ListBuildsResponse>.RestPath

Methods

InitParameters()

Initializes List parameter list.

Declaration
protected override void InitParameters()
Overrides
Google.Apis.CloudBuild.v1.CloudBuildBaseServiceRequest<Google.Apis.CloudBuild.v1.Data.ListBuildsResponse>.InitParameters()

Implements

Google.Apis.Requests.IClientServiceRequest<TResponse>
Google.Apis.Requests.IClientServiceRequest
In This Article
Back to top