Class: Google::Apis::NotebooksV1::RuntimeMigrationEligibility
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::RuntimeMigrationEligibility
- 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
RuntimeMigrationEligibility represents the feasibility information of a migration from GmN to WbI.
Instance Attribute Summary collapse
-
#errors ⇒ Array<String>
Output only.
-
#warnings ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RuntimeMigrationEligibility
constructor
A new instance of RuntimeMigrationEligibility.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RuntimeMigrationEligibility
Returns a new instance of RuntimeMigrationEligibility.
2411 2412 2413 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2411 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<String>
Output only. Certain configurations make the GmN ineligible for an automatic
migration. A manual migration is required.
Corresponds to the JSON property errors
2404 2405 2406 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2404 def errors @errors end |
#warnings ⇒ Array<String>
Output only. Certain configurations will be defaulted during the migration.
Corresponds to the JSON property warnings
2409 2410 2411 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2409 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2416 2417 2418 2419 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 2416 def update!(**args) @errors = args[:errors] if args.key?(:errors) @warnings = args[:warnings] if args.key?(:warnings) end |