Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Result ¶ added in v1.3.0
type Result string
Result represents a result of an operation that can either: - create a resource - update a resource - do nothing
const ( // Created indicates that an operation resulted in creation of a resource. Created Result = "created" // Updated indicates that an operation resulted in an update of a resource. Updated Result = "updated" // Deleted indicates that an operation resulted in a delete of a resource. Deleted Result = "deleted" // Noop indicated that an operation did not perform any actions. Noop Result = "noop" )
Click to show internal directories.
Click to hide internal directories.