Class: Google::Apis::VmmigrationV1::MigrationWarning
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1::MigrationWarning
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1/classes.rb,
lib/google/apis/vmmigration_v1/representations.rb,
lib/google/apis/vmmigration_v1/representations.rb
Overview
Represents migration resource warning information that can be used with google. rpc.Status message. MigrationWarning is used to present the user with warning information in migration operations.
Instance Attribute Summary collapse
-
#action_item ⇒ Google::Apis::VmmigrationV1::LocalizedMessage
Provides a localized error message that is safe to return to the user which can be attached to an RPC error.
-
#code ⇒ String
The warning code.
-
#help_links ⇒ Array<Google::Apis::VmmigrationV1::Link>
Output only.
-
#warning_message ⇒ Google::Apis::VmmigrationV1::LocalizedMessage
Provides a localized error message that is safe to return to the user which can be attached to an RPC error.
-
#warning_time ⇒ String
The time the warning occurred.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MigrationWarning
constructor
A new instance of MigrationWarning.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MigrationWarning
Returns a new instance of MigrationWarning.
3376 3377 3378 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3376 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action_item ⇒ Google::Apis::VmmigrationV1::LocalizedMessage
Provides a localized error message that is safe to return to the user which
can be attached to an RPC error.
Corresponds to the JSON property actionItem
3352 3353 3354 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3352 def action_item @action_item end |
#code ⇒ String
The warning code.
Corresponds to the JSON property code
3357 3358 3359 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3357 def code @code end |
#help_links ⇒ Array<Google::Apis::VmmigrationV1::Link>
Output only. URL(s) pointing to additional information on handling the current
warning.
Corresponds to the JSON property helpLinks
3363 3364 3365 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3363 def help_links @help_links end |
#warning_message ⇒ Google::Apis::VmmigrationV1::LocalizedMessage
Provides a localized error message that is safe to return to the user which
can be attached to an RPC error.
Corresponds to the JSON property warningMessage
3369 3370 3371 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3369 def @warning_message end |
#warning_time ⇒ String
The time the warning occurred.
Corresponds to the JSON property warningTime
3374 3375 3376 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3374 def warning_time @warning_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3381 3382 3383 3384 3385 3386 3387 |
# File 'lib/google/apis/vmmigration_v1/classes.rb', line 3381 def update!(**args) @action_item = args[:action_item] if args.key?(:action_item) @code = args[:code] if args.key?(:code) @help_links = args[:help_links] if args.key?(:help_links) @warning_message = args[:warning_message] if args.key?(:warning_message) @warning_time = args[:warning_time] if args.key?(:warning_time) end |