Class Operation
java.lang.Object
org.jclouds.googlecomputeengine.domain.Operation
-
Nested Class Summary
Nested Classes -
Method Summary
Modifier and TypeMethodDescriptionabstract String
Identifier specified by the client when the mutation was initiated.static Operation
create
(String id, Date creationTimestamp, URI selfLink, String name, String description, URI targetLink, String targetId, String clientOperationId, Operation.Status status, String statusMessage, String user, Integer progress, Date insertTime, Date startTime, Date endTime, Integer httpErrorStatusCode, String httpErrorMessage, String operationType, Operation.Error error, List<Warning> warnings, URI region, URI zone) abstract Date
abstract String
abstract Date
endTime()
abstract Operation.Error
error()
abstract String
abstract Integer
abstract String
id()
abstract Date
The time that this operation was requested.abstract String
name()
abstract String
Examples include insert, update, and delete.abstract Integer
progress()
A progress indicator that ranges from 0 to 100.abstract URI
region()
abstract URI
selfLink()
abstract Date
abstract Operation.Status
status()
abstract String
Textual description of the current status of the operation.abstract String
targetId()
Target id which identifies a particular incarnation of the target.abstract URI
URL of the resource the operation is mutating.abstract String
user()
User who requested the operation, for exampleuser@example.com
.warnings()
abstract URI
zone()
-
Method Details
-
id
-
creationTimestamp
-
selfLink
-
name
-
description
-
targetLink
URL of the resource the operation is mutating. -
targetId
Target id which identifies a particular incarnation of the target. -
clientOperationId
Identifier specified by the client when the mutation was initiated. Must be unique for all operation resources in the project. -
status
-
statusMessage
Textual description of the current status of the operation. -
user
User who requested the operation, for exampleuser@example.com
. -
progress
A progress indicator that ranges from 0 to 100. This should not be used to guess at when the operation will be complete. This number should be monotonically increasing as the operation progresses. -
insertTime
The time that this operation was requested. -
startTime
-
endTime
-
httpErrorStatusCode
-
httpErrorMessage
-
operationType
Examples include insert, update, and delete. -
error
-
warnings
-
region
-
zone
-
create
public static Operation create(String id, Date creationTimestamp, URI selfLink, String name, String description, URI targetLink, String targetId, String clientOperationId, Operation.Status status, String statusMessage, String user, Integer progress, Date insertTime, Date startTime, Date endTime, Integer httpErrorStatusCode, String httpErrorMessage, String operationType, Operation.Error error, List<Warning> warnings, URI region, URI zone)
-