Class: Google::Apis::NotebooksV1::PreMigrationCheck

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

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

#messageString

Message provides a summary or workaround. Corresponds to the JSON property message

Returns:

  • (String)


1845
1846
1847
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1845

def message
  @message
end

#resultString

Result returns the result of the check. Corresponds to the JSON property result

Returns:

  • (String)


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