class Google::Apis::BinaryauthorizationV1::ValidateAttestationOccurrenceResponse
Response message for ValidationHelperV1.ValidateAttestationOccurrence.
Attributes
denial_reason[RW]
The reason for denial if the Attestation couldn't be validated. Corresponds to the JSON property `denialReason` @return [String]
result[RW]
The result of the Attestation validation. Corresponds to the JSON property `result` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/binaryauthorization_v1/classes.rb, line 860 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/binaryauthorization_v1/classes.rb, line 865 def update!(**args) @denial_reason = args[:denial_reason] if args.key?(:denial_reason) @result = args[:result] if args.key?(:result) end