Class: Google::Apis::NotebooksV1::PreMigrationCheck
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::PreMigrationCheck
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/notebooks_v1/classes.rb,
lib/google/apis/notebooks_v1/representations.rb,
lib/google/apis/notebooks_v1/representations.rb
Overview
PreMigrationCheck checks how feasible a migration from UmN is.
Instance Attribute Summary collapse
-
#message ⇒ String
Message provides a summary or workaround.
-
#result ⇒ String
Result returns the result of the check.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreMigrationCheck
constructor
A new instance of PreMigrationCheck.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreMigrationCheck
Returns a new instance of PreMigrationCheck.
1852 1853 1854 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1852 def initialize(**args) update!(**args) end |
Instance Attribute Details
#message ⇒ String
Message provides a summary or workaround.
Corresponds to the JSON property message
1845 1846 1847 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1845 def @message end |
#result ⇒ String
Result returns the result of the check.
Corresponds to the JSON property result
1850 1851 1852 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1850 def result @result end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1857 1858 1859 1860 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1857 def update!(**args) @message = args[:message] if args.key?(:message) @result = args[:result] if args.key?(:result) end |