Class: Google::Apis::NotebooksV1::InstanceMigrationEligibility
- Inherits:
-
Object
- Object
- Google::Apis::NotebooksV1::InstanceMigrationEligibility
- 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 more...
Overview
InstanceMigrationEligibility represents the feasibility information of a migration from UmN to WbI.
Instance Attribute Summary collapse
-
#errors ⇒ Array<String>
Output only.
-
#warnings ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstanceMigrationEligibility
constructor
A new instance of InstanceMigrationEligibility.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstanceMigrationEligibility
Returns a new instance of InstanceMigrationEligibility.
1218 1219 1220 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1218 def initialize(**args) update!(**args) end |
Instance Attribute Details
#errors ⇒ Array<String>
Output only. Certain configurations make the UmN ineligible for an automatic
migration. A manual migration is required.
Corresponds to the JSON property errors
1211 1212 1213 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1211 def errors @errors end |
#warnings ⇒ Array<String>
Output only. Certain configurations will be defaulted during the migration.
Corresponds to the JSON property warnings
1216 1217 1218 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1216 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1223 1224 1225 1226 |
# File 'lib/google/apis/notebooks_v1/classes.rb', line 1223 def update!(**args) @errors = args[:errors] if args.key?(:errors) @warnings = args[:warnings] if args.key?(:warnings) end |