Class: Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1MoveAnalysisResult

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/assuredworkloads_v1/classes.rb,
lib/google/apis/assuredworkloads_v1/representations.rb,
lib/google/apis/assuredworkloads_v1/representations.rb

Overview

Represents the successful move analysis results for a group.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAssuredworkloadsV1MoveAnalysisResult

Returns a new instance of GoogleCloudAssuredworkloadsV1MoveAnalysisResult.



269
270
271
# File 'lib/google/apis/assuredworkloads_v1/classes.rb', line 269

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#blockersArray<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1MoveImpact>

List of blockers. If not resolved, these will result in compliance violations in the target. Corresponds to the JSON property blockers



261
262
263
# File 'lib/google/apis/assuredworkloads_v1/classes.rb', line 261

def blockers
  @blockers
end

#warningsArray<Google::Apis::AssuredworkloadsV1::GoogleCloudAssuredworkloadsV1MoveImpact>

List of warnings. These are risks that may or may not result in compliance violations. Corresponds to the JSON property warnings



267
268
269
# File 'lib/google/apis/assuredworkloads_v1/classes.rb', line 267

def warnings
  @warnings
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



274
275
276
277
# File 'lib/google/apis/assuredworkloads_v1/classes.rb', line 274

def update!(**args)
  @blockers = args[:blockers] if args.key?(:blockers)
  @warnings = args[:warnings] if args.key?(:warnings)
end