Class: Google::Apis::MigrationcenterV1::GuestRuntimeDetails

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/migrationcenter_v1/classes.rb,
lib/google/apis/migrationcenter_v1/representations.rb,
lib/google/apis/migrationcenter_v1/representations.rb

Overview

Guest OS runtime information.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GuestRuntimeDetails

Returns a new instance of GuestRuntimeDetails.



2373
2374
2375
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2373

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#domainString

Domain, e.g. c.stratozone-development.internal. Corresponds to the JSON property domain

Returns:

  • (String)


2336
2337
2338
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2336

def domain
  @domain
end

#installed_appsGoogle::Apis::MigrationcenterV1::GuestInstalledApplicationList

Guest installed application list. Corresponds to the JSON property installedApps



2341
2342
2343
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2341

def installed_apps
  @installed_apps
end

#last_boot_timeString

Last time the OS was booted. Corresponds to the JSON property lastBootTime

Returns:

  • (String)


2346
2347
2348
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2346

def last_boot_time
  @last_boot_time
end

#machine_nameString

Machine name. Corresponds to the JSON property machineName

Returns:

  • (String)


2351
2352
2353
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2351

def machine_name
  @machine_name
end

#networkGoogle::Apis::MigrationcenterV1::RuntimeNetworkInfo

Runtime networking information. Corresponds to the JSON property network



2356
2357
2358
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2356

def network
  @network
end

#open_file_listGoogle::Apis::MigrationcenterV1::OpenFileList

Open file list. Corresponds to the JSON property openFileList



2361
2362
2363
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2361

def open_file_list
  @open_file_list
end

#processesGoogle::Apis::MigrationcenterV1::RunningProcessList

List of running guest OS processes. Corresponds to the JSON property processes



2366
2367
2368
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2366

def processes
  @processes
end

#servicesGoogle::Apis::MigrationcenterV1::RunningServiceList

List of running guest OS services. Corresponds to the JSON property services



2371
2372
2373
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2371

def services
  @services
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2378

def update!(**args)
  @domain = args[:domain] if args.key?(:domain)
  @installed_apps = args[:installed_apps] if args.key?(:installed_apps)
  @last_boot_time = args[:last_boot_time] if args.key?(:last_boot_time)
  @machine_name = args[:machine_name] if args.key?(:machine_name)
  @network = args[:network] if args.key?(:network)
  @open_file_list = args[:open_file_list] if args.key?(:open_file_list)
  @processes = args[:processes] if args.key?(:processes)
  @services = args[:services] if args.key?(:services)
end