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.
-
#licenses ⇒ Array<String>
License strings associated with the installed application.
-
#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.
2252 2253 2254 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2252 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_name ⇒ String
Installed application name.
Corresponds to the JSON property applicationName
2225 2226 2227 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2225 def application_name @application_name end |
#install_time ⇒ String
The time when the application was installed.
Corresponds to the JSON property installTime
2230 2231 2232 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2230 def install_time @install_time end |
#licenses ⇒ Array<String>
License strings associated with the installed application.
Corresponds to the JSON property licenses
2235 2236 2237 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2235 def licenses @licenses end |
#path ⇒ String
Source path.
Corresponds to the JSON property path
2240 2241 2242 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2240 def path @path end |
#vendor ⇒ String
Installed application vendor.
Corresponds to the JSON property vendor
2245 2246 2247 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2245 def vendor @vendor end |
#version ⇒ String
Installed application version.
Corresponds to the JSON property version
2250 2251 2252 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2250 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2257 2258 2259 2260 2261 2262 2263 2264 |
# File 'lib/google/apis/migrationcenter_v1/classes.rb', line 2257 def update!(**args) @application_name = args[:application_name] if args.key?(:application_name) @install_time = args[:install_time] if args.key?(:install_time) @licenses = args[:licenses] if args.key?(:licenses) @path = args[:path] if args.key?(:path) @vendor = args[:vendor] if args.key?(:vendor) @version = args[:version] if args.key?(:version) end |