Class: Google::Apis::MigrationcenterV1alpha1::GuestRuntimeDetails
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::GuestRuntimeDetails
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/migrationcenter_v1alpha1/classes.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb,
lib/google/apis/migrationcenter_v1alpha1/representations.rb
Overview
Guest OS runtime information.
Instance Attribute Summary collapse
-
#domain ⇒ String
Domain, e.g.
-
#installed_apps ⇒ Google::Apis::MigrationcenterV1alpha1::GuestInstalledApplicationList
Guest installed application list.
-
#last_uptime ⇒ Google::Apis::MigrationcenterV1alpha1::Date
Represents a whole or partial calendar date, such as a birthday.
-
#machine_name ⇒ String
Machine name.
-
#network_info ⇒ Google::Apis::MigrationcenterV1alpha1::RuntimeNetworkInfo
Runtime networking information.
-
#open_file_list ⇒ Google::Apis::MigrationcenterV1alpha1::OpenFileList
Open file list.
-
#processes ⇒ Google::Apis::MigrationcenterV1alpha1::RunningProcessList
List of running guest OS processes.
-
#services ⇒ Google::Apis::MigrationcenterV1alpha1::RunningServiceList
List of running guest OS services.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GuestRuntimeDetails
constructor
A new instance of GuestRuntimeDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GuestRuntimeDetails
Returns a new instance of GuestRuntimeDetails.
2881 2882 2883 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2881 def initialize(**args) update!(**args) end |
Instance Attribute Details
#domain ⇒ String
Domain, e.g. c.stratozone-development.internal.
Corresponds to the JSON property domain
2837 2838 2839 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2837 def domain @domain end |
#installed_apps ⇒ Google::Apis::MigrationcenterV1alpha1::GuestInstalledApplicationList
Guest installed application list.
Corresponds to the JSON property installedApps
2842 2843 2844 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2842 def installed_apps @installed_apps end |
#last_uptime ⇒ Google::Apis::MigrationcenterV1alpha1::Date
Represents a whole or partial calendar date, such as a birthday. The time of
day and time zone are either specified elsewhere or are insignificant. The
date is relative to the Gregorian Calendar. This can represent one of the
following: * A full date, with non-zero year, month, and day values. * A month
and day, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property lastUptime
2854 2855 2856 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2854 def last_uptime @last_uptime end |
#machine_name ⇒ String
Machine name.
Corresponds to the JSON property machineName
2859 2860 2861 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2859 def machine_name @machine_name end |
#network_info ⇒ Google::Apis::MigrationcenterV1alpha1::RuntimeNetworkInfo
Runtime networking information.
Corresponds to the JSON property networkInfo
2864 2865 2866 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2864 def network_info @network_info end |
#open_file_list ⇒ Google::Apis::MigrationcenterV1alpha1::OpenFileList
Open file list.
Corresponds to the JSON property openFileList
2869 2870 2871 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2869 def open_file_list @open_file_list end |
#processes ⇒ Google::Apis::MigrationcenterV1alpha1::RunningProcessList
List of running guest OS processes.
Corresponds to the JSON property processes
2874 2875 2876 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2874 def processes @processes end |
#services ⇒ Google::Apis::MigrationcenterV1alpha1::RunningServiceList
List of running guest OS services.
Corresponds to the JSON property services
2879 2880 2881 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2879 def services @services end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2886 def update!(**args) @domain = args[:domain] if args.key?(:domain) @installed_apps = args[:installed_apps] if args.key?(:installed_apps) @last_uptime = args[:last_uptime] if args.key?(:last_uptime) @machine_name = args[:machine_name] if args.key?(:machine_name) @network_info = args[:network_info] if args.key?(:network_info) @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 |