class Google::Apis::CloudassetV1::MoveAnalysisResult
An analysis result including blockers and warnings.
Attributes
blockers[RW]
Blocking information that would prevent the target resource from moving to the specified destination at runtime. Corresponds to the JSON property `blockers` @return [Array<Google::Apis::CloudassetV1::MoveImpact>]
warnings[RW]
Warning information indicating that moving the target resource to the specified destination might be unsafe. This can include important policy information and configuration changes, but will not block moves at runtime. Corresponds to the JSON property `warnings` @return [Array<Google::Apis::CloudassetV1::MoveImpact>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudasset_v1/classes.rb, line 3243 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudasset_v1/classes.rb, line 3248 def update!(**args) @blockers = args[:blockers] if args.key?(:blockers) @warnings = args[:warnings] if args.key?(:warnings) end