Class: Google::Apis::MigrationcenterV1::GuestInstalledApplication
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1::GuestInstalledApplication
- 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 installed application information.
Instance Attribute Summary collapse
-
#application_name ⇒ String
Installed application name.
-
#install_time ⇒ String
The time when the application was installed.
-
#path ⇒ String
Source path.
-
#vendor ⇒ String
Installed application vendor.
-
#version ⇒ String
Installed application version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GuestInstalledApplication
constructor
A new instance of GuestInstalledApplication.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GuestInstalledApplication
Returns a new instance of GuestInstalledApplication.
1660 1661 1662 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1660 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_name ⇒ String
Installed application name.
Corresponds to the JSON property applicationName
1638 1639 1640 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1638 def application_name @application_name end |
#install_time ⇒ String
The time when the application was installed.
Corresponds to the JSON property installTime
1643 1644 1645 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1643 def install_time @install_time end |
#path ⇒ String
Source path.
Corresponds to the JSON property path
1648 1649 1650 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1648 def path @path end |
#vendor ⇒ String
Installed application vendor.
Corresponds to the JSON property vendor
1653 1654 1655 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1653 def vendor @vendor end |
#version ⇒ String
Installed application version.
Corresponds to the JSON property version
1658 1659 1660 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1658 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1665 1666 1667 1668 1669 1670 1671 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 1665 def update!(**args) @application_name = args[:application_name] if args.key?(:application_name) @install_time = args[:install_time] if args.key?(:install_time) @path = args[:path] if args.key?(:path) @vendor = args[:vendor] if args.key?(:vendor) @version = args[:version] if args.key?(:version) end |