Class: Google::Apis::CloudassetV1::MoveAnalysis
- Inherits:
-
Object
- Object
- Google::Apis::CloudassetV1::MoveAnalysis
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/representations.rb
Overview
A message to group the analysis information.
Instance Attribute Summary collapse
-
#analysis ⇒ Google::Apis::CloudassetV1::MoveAnalysisResult
An analysis result including blockers and warnings.
-
#display_name ⇒ String
The user friendly display name of the analysis.
-
#error ⇒ Google::Apis::CloudassetV1::Status
The
Statustype defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MoveAnalysis
constructor
A new instance of MoveAnalysis.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MoveAnalysis
Returns a new instance of MoveAnalysis.
3352 3353 3354 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3352 def initialize(**args) update!(**args) end |
Instance Attribute Details
#analysis ⇒ Google::Apis::CloudassetV1::MoveAnalysisResult
An analysis result including blockers and warnings.
Corresponds to the JSON property analysis
3334 3335 3336 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3334 def analysis @analysis end |
#display_name ⇒ String
The user friendly display name of the analysis. E.g. IAM, Organization Policy
etc.
Corresponds to the JSON property displayName
3340 3341 3342 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3340 def display_name @display_name end |
#error ⇒ Google::Apis::CloudassetV1::Status
The Status type defines a logical error model that is suitable for different
programming environments, including REST APIs and RPC APIs. It is used by
gRPC. Each Status message contains three pieces of
data: error code, error message, and error details. You can find out more
about this error model and how to work with it in the API Design Guide.
Corresponds to the JSON property error
3350 3351 3352 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3350 def error @error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3357 3358 3359 3360 3361 |
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3357 def update!(**args) @analysis = args[:analysis] if args.key?(:analysis) @display_name = args[:display_name] if args.key?(:display_name) @error = args[:error] if args.key?(:error) end |