SecretSyncConditionResponse

data class SecretSyncConditionResponse(val lastTransitionTime: String, val message: String, val observedGeneration: Double, val reason: String, val status: String, val type: String)

A condition represents the status of the secret create and update processes.

Constructors

Link copied to clipboard
constructor(lastTransitionTime: String, message: String, observedGeneration: Double, reason: String, status: String, type: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

LastTransitionTime is the last time the condition transitioned from one status to another. This should be when the underlying condition changed. If that is not known, then using the time when the API field changed is acceptable.

Link copied to clipboard

Message is a human readable message indicating details about the transition. This may be an empty string.

Link copied to clipboard

ObservedGeneration represents the .metadata.generation that the condition was set based upon. For instance, if .metadata.generation is currently 12, but the .status.conditionsx.observedGeneration is 9, the condition is out of date with respect to the current state of the instance.

Link copied to clipboard

Reason contains a programmatic identifier indicating the reason for the condition's last transition. Producers of specific condition types may define expected values and meanings for this field, and whether the values are considered a guaranteed API. The value should be a CamelCase string. This field may not be empty.

Link copied to clipboard

Status of the condition, one of True, False, Unknown.

Link copied to clipboard

Type of condition in CamelCase or in foo.example.com/CamelCase. Many .condition.type values are consistent across resources like Available, but because arbitrary conditions can be useful (see .node.status.conditions), the ability to de-conflict is important. The regex it matches is (dns1123SubdomainFmt/)?(qualifiedNameFmt)