Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type OperationResult ¶
type OperationResult string
OperationResult is the action result of a CreateOrUpdate call.
const ( // OperationResultNone means that the resource has not been changed. OperationResultNone OperationResult = "unchanged" // OperationResultCreated means that a new resource is created. OperationResultCreated OperationResult = "created" // OperationResultUpdated means that an existing resource is updated. OperationResultUpdated OperationResult = "updated" // OperationResultUpdatedStatus means that an existing resource and its status is updated. OperationResultUpdatedStatus OperationResult = "updatedStatus" // OperationResultUpdatedStatusOnly means that only an existing status is updated. OperationResultUpdatedStatusOnly OperationResult = "updatedStatusOnly" )
Click to show internal directories.
Click to hide internal directories.