Class: Google::Apis::VmmigrationV1alpha1::ImageImportStep
- Inherits:
-
Object
- Object
- Google::Apis::VmmigrationV1alpha1::ImageImportStep
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vmmigration_v1alpha1/classes.rb,
lib/google/apis/vmmigration_v1alpha1/representations.rb,
lib/google/apis/vmmigration_v1alpha1/representations.rb
Overview
ImageImportStep holds information about the image import step progress.
Instance Attribute Summary collapse
-
#adapting_os ⇒ Google::Apis::VmmigrationV1alpha1::AdaptingOsStep
AdaptingOSStep contains specific step details.
-
#creating_image ⇒ Google::Apis::VmmigrationV1alpha1::CreatingImageStep
CreatingImageStep contains specific step details.
-
#end_time ⇒ String
Output only.
-
#initializing ⇒ Google::Apis::VmmigrationV1alpha1::InitializingImageImportStep
InitializingImageImportStep contains specific step details.
-
#loading_source_files ⇒ Google::Apis::VmmigrationV1alpha1::LoadingImageSourceFilesStep
LoadingImageSourceFilesStep contains specific step details.
-
#start_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ImageImportStep
constructor
A new instance of ImageImportStep.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ImageImportStep
Returns a new instance of ImageImportStep.
2367 2368 2369 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2367 def initialize(**args) update!(**args) end |
Instance Attribute Details
#adapting_os ⇒ Google::Apis::VmmigrationV1alpha1::AdaptingOsStep
AdaptingOSStep contains specific step details.
Corresponds to the JSON property adaptingOs
2340 2341 2342 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2340 def adapting_os @adapting_os end |
#creating_image ⇒ Google::Apis::VmmigrationV1alpha1::CreatingImageStep
CreatingImageStep contains specific step details.
Corresponds to the JSON property creatingImage
2345 2346 2347 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2345 def creating_image @creating_image end |
#end_time ⇒ String
Output only. The time the step has ended.
Corresponds to the JSON property endTime
2350 2351 2352 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2350 def end_time @end_time end |
#initializing ⇒ Google::Apis::VmmigrationV1alpha1::InitializingImageImportStep
InitializingImageImportStep contains specific step details.
Corresponds to the JSON property initializing
2355 2356 2357 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2355 def initializing @initializing end |
#loading_source_files ⇒ Google::Apis::VmmigrationV1alpha1::LoadingImageSourceFilesStep
LoadingImageSourceFilesStep contains specific step details.
Corresponds to the JSON property loadingSourceFiles
2360 2361 2362 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2360 def loading_source_files @loading_source_files end |
#start_time ⇒ String
Output only. The time the step has started.
Corresponds to the JSON property startTime
2365 2366 2367 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2365 def start_time @start_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2372 2373 2374 2375 2376 2377 2378 2379 |
# File 'lib/google/apis/vmmigration_v1alpha1/classes.rb', line 2372 def update!(**args) @adapting_os = args[:adapting_os] if args.key?(:adapting_os) @creating_image = args[:creating_image] if args.key?(:creating_image) @end_time = args[:end_time] if args.key?(:end_time) @initializing = args[:initializing] if args.key?(:initializing) @loading_source_files = args[:loading_source_files] if args.key?(:loading_source_files) @start_time = args[:start_time] if args.key?(:start_time) end |