github.com/ablease/cli@v6.37.1-0.20180613014814-3adbb7d7fb19+incompatible/api/cloudcontroller/ccv2/last_operation.go (about)

     1  package ccv2
     2  
     3  // LastOperation is the status of the last operation requested on a service
     4  // instance.
     5  type LastOperation struct {
     6  	// Type is the type of operation that was last performed or currently being
     7  	// performed on the service instance.
     8  	Type string
     9  
    10  	// State is the status of the last operation or current operation being
    11  	// performed on the service instance.
    12  	State string
    13  
    14  	// Description is the service broker-provided description of the operation.
    15  	Description string
    16  
    17  	// UpdatedAt is the timestamp that the Cloud Controller last checked the
    18  	// service instance state from the broker.
    19  	UpdatedAt string
    20  
    21  	// CreatedAt is the timestamp that the Cloud Controller created the service
    22  	// instance from the broker.
    23  	CreatedAt string
    24  }