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
-
#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.
-
#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.
3793 3794 3795 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3793 def initialize(**args) update!(**args) end |
Instance Attribute Details
#application_name ⇒ String
Installed application name.
Corresponds to the JSON property applicationName
3756 3757 3758 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3756 def application_name @application_name end |
#install_time ⇒ String
The time when the application was installed.
Corresponds to the JSON property installTime
3761 3762 3763 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3761 def install_time @install_time end |
#licenses ⇒ Array<String>
License strings associated with the installed application.
Corresponds to the JSON property licenses
3766 3767 3768 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3766 def licenses @licenses end |
#name ⇒ String
Installed application name.
Corresponds to the JSON property name
3771 3772 3773 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3771 def name @name end |
#path ⇒ String
Source path.
Corresponds to the JSON property path
3776 3777 3778 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3776 def path @path end |
#time ⇒ String
Date application was installed.
Corresponds to the JSON property time
3781 3782 3783 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3781 def time @time end |
#vendor ⇒ String
Installed application vendor.
Corresponds to the JSON property vendor
3786 3787 3788 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3786 def vendor @vendor end |
#version ⇒ String
Installed application version.
Corresponds to the JSON property version
3791 3792 3793 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3791 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 3798 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) @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 |