Show / Hide Table of Contents

Class ProjectsResource.LocationsResource.BuildsResource.RetryRequest

Creates a new build based on the specified build. This method creates a new build using the original build request, which may or may not result in an identical build. For triggered builds: * Triggered builds resolve to a precise revision; therefore a retry of a triggered build will result in a build that uses the same revision. For non-triggered builds that specify RepoSource: * If the original build built from the tip of a branch, the retried build will build from the tip of that branch, which may not be the same revision as the original build. * If the original build specified a commit sha or revision ID, the retried build will use the identical source. For builds that specify StorageSource: * If the original build pulled source from Google Cloud Storage without specifying the generation of the object, the new build will use the current object, which may be different from the original build source. * If the original build pulled source from Cloud Storage and specified the generation of the object, the new build will attempt to use the same object, which may or may not be available depending on the bucket's lifecycle management settings.

Inheritance
System.Object
Google.Apis.Requests.ClientServiceRequest
Google.Apis.Requests.ClientServiceRequest<Operation>
CloudBuildBaseServiceRequest<Operation>
ProjectsResource.LocationsResource.BuildsResource.RetryRequest
Implements
Google.Apis.Requests.IClientServiceRequest<Operation>
Google.Apis.Requests.IClientServiceRequest
Inherited Members
CloudBuildBaseServiceRequest<Operation>.Xgafv
CloudBuildBaseServiceRequest<Operation>.AccessToken
CloudBuildBaseServiceRequest<Operation>.Alt
CloudBuildBaseServiceRequest<Operation>.Callback
CloudBuildBaseServiceRequest<Operation>.Fields
CloudBuildBaseServiceRequest<Operation>.Key
CloudBuildBaseServiceRequest<Operation>.OauthToken
CloudBuildBaseServiceRequest<Operation>.PrettyPrint
CloudBuildBaseServiceRequest<Operation>.QuotaUser
CloudBuildBaseServiceRequest<Operation>.UploadType
CloudBuildBaseServiceRequest<Operation>.UploadProtocol
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.Execute()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ExecuteAsStream()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ExecuteAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ExecuteAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ExecuteAsStreamAsync()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ExecuteAsStreamAsync(System.Threading.CancellationToken)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.CreateRequest(System.Nullable<System.Boolean>)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.GenerateRequestUri()
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.GetDefaultETagAction(System.String)
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ETagAction
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ModifyRequest
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.ValidateParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.RequestParameters
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.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 RetryRequest : CloudBuildBaseServiceRequest<Operation>, IClientServiceRequest<Operation>, IClientServiceRequest

Constructors

RetryRequest(IClientService, RetryBuildRequest, String)

Constructs a new Retry request.

Declaration
public RetryRequest(IClientService service, RetryBuildRequest body, string name)
Parameters
Type Name Description
Google.Apis.Services.IClientService service
RetryBuildRequest body
System.String name

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.CloudBuild.v1.Data.Operation>.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.Operation>.MethodName

Name

The name of the Build to retry. Format: projects/{project}/locations/{location}/builds/{build}

Declaration
[RequestParameter("name", RequestParameterType.Path)]
public virtual string Name { 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.CloudBuild.v1.Data.Operation>.RestPath

Methods

GetBody()

Returns the body of the request.

Declaration
protected override object GetBody()
Returns
Type Description
System.Object
Overrides
Google.Apis.Requests.ClientServiceRequest<Google.Apis.CloudBuild.v1.Data.Operation>.GetBody()

InitParameters()

Initializes Retry parameter list.

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

Implements

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