class Google::Apis::BinaryauthorizationV1beta1::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_v1beta1/classes.rb, line 862
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_v1beta1/classes.rb, line 867
def update!(**args)
  @denial_reason = args[:denial_reason] if args.key?(:denial_reason)
  @result = args[:result] if args.key?(:result)
end