Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion src/SaaSServiceManagement/UnitOperationCondition.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,14 @@ class UnitOperationCondition extends \Google\Model
* Condition type is cancelled.
*/
public const TYPE_TYPE_CANCELLED = 'TYPE_CANCELLED';
/**
* Indicates if AppHub app has been created.
*/
public const TYPE_TYPE_APP_CREATED = 'TYPE_APP_CREATED';
/**
* Indicates if services and workloads have been registered with AppHub.
*/
public const TYPE_TYPE_APP_COMPONENTS_REGISTERED = 'TYPE_APP_COMPONENTS_REGISTERED';
/**
* Required. Last time the condition transited from one status to another.
*
Expand Down Expand Up @@ -159,7 +167,8 @@ public function getStatus()
* Required. Type of the condition.
*
* Accepted values: TYPE_UNSPECIFIED, TYPE_SCHEDULED, TYPE_RUNNING,
* TYPE_SUCCEEDED, TYPE_CANCELLED
* TYPE_SUCCEEDED, TYPE_CANCELLED, TYPE_APP_CREATED,
* TYPE_APP_COMPONENTS_REGISTERED
*
* @param self::TYPE_* $type
*/
Expand Down
Loading