Class: Google::Apis::MigrationcenterV1alpha1::GuestInstalledApplication
- Inherits:
-
Object
- Object
- Google::Apis::MigrationcenterV1alpha1::GuestInstalledApplication
- 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 installed application information.
Instance Attribute Summary collapse
-
#name ⇒ String
Installed application name.
-
#path ⇒ String
Source path.
-
#time ⇒ String
Date application was installed.
-
#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.
1794 1795 1796 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1794 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Installed application name.
Corresponds to the JSON property name
1772 1773 1774 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1772 def name @name end |
#path ⇒ String
Source path.
Corresponds to the JSON property path
1777 1778 1779 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1777 def path @path end |
#time ⇒ String
Date application was installed.
Corresponds to the JSON property time
1782 1783 1784 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1782 def time @time end |
#vendor ⇒ String
Installed application vendor.
Corresponds to the JSON property vendor
1787 1788 1789 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1787 def vendor @vendor end |
#version ⇒ String
Installed application version.
Corresponds to the JSON property version
1792 1793 1794 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1792 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1799 1800 1801 1802 1803 1804 1805 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1799 def update!(**args) @name = args[:name] if args.key?(:name) @path = args[:path] if args.key?(:path) @time = args[:time] if args.key?(:time) @vendor = args[:vendor] if args.key?(:vendor) @version = args[:version] if args.key?(:version) end |