class Google::Apis::ApigeeV1::EdgeConfigstoreBundleBadBundleViolation
A message type used to describe a single bundle validation error.
Attributes
description[RW]
A description of why the bundle is invalid and how to fix it. Corresponds to the JSON property `description` @return [String]
filename[RW]
The filename (including relative path from the bundle root) in which the error occurred. Corresponds to the JSON property `filename` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/apigee_v1/classes.rb, line 59 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/apigee_v1/classes.rb, line 64 def update!(**args) @description = args[:description] if args.key?(:description) @filename = args[:filename] if args.key?(:filename) end