Class GlobalOperationsResource.WaitRequest
Waits for the specified Operation resource to return as DONE
or for the request to approach the 2 minute
deadline, and retrieves the specified Operation resource. This method differs from the GET
method in that
it waits for no more than the default deadline (2 minutes) and then returns the current state of the
operation, which might be DONE
or still in progress. This method is called on a best-effort basis.
Specifically: - In uncommon cases, when the server is overloaded, the request might return before the
default deadline is reached, or might return after zero seconds. - If the default deadline is reached, there
is no guarantee that the operation is actually done when the method returns. Be prepared to retry if the
operation is not DONE
.
Inheritance
Inherited Members
Namespace: Google.Apis.Compute.v1
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class GlobalOperationsResource.WaitRequest : ComputeBaseServiceRequest<Operation>, IClientServiceRequest<Operation>, IClientServiceRequest
Constructors
WaitRequest(IClientService, string, string)
Constructs a new Wait request.
Declaration
public WaitRequest(IClientService service, string project, string operation)
Parameters
Type | Name | Description |
---|---|---|
IClientService | service | |
string | project | |
string | operation |
Properties
HttpMethod
Gets the HTTP method.
Declaration
public override string HttpMethod { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
MethodName
Gets the method name.
Declaration
public override string MethodName { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Operation
Name of the Operations resource to return, or its unique numeric identifier.
Declaration
[RequestParameter("operation", RequestParameterType.Path)]
public virtual string Operation { get; }
Property Value
Type | Description |
---|---|
string |
Project
Project ID for this request.
Declaration
[RequestParameter("project", RequestParameterType.Path)]
public virtual string Project { get; }
Property Value
Type | Description |
---|---|
string |
RestPath
Gets the REST path.
Declaration
public override string RestPath { get; }
Property Value
Type | Description |
---|---|
string |
Overrides
Methods
InitParameters()
Initializes Wait parameter list.
Declaration
protected override void InitParameters()