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
-
#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.
2979 2980 2981 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2979 def initialize(**args) update!(**args) end |
Instance Attribute Details
#licenses ⇒ Array<String>
License strings associated with the installed application.
Corresponds to the JSON property licenses
2952 2953 2954 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2952 def licenses @licenses end |
#name ⇒ String
Installed application name.
Corresponds to the JSON property name
2957 2958 2959 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2957 def name @name end |
#path ⇒ String
Source path.
Corresponds to the JSON property path
2962 2963 2964 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2962 def path @path end |
#time ⇒ String
Date application was installed.
Corresponds to the JSON property time
2967 2968 2969 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2967 def time @time end |
#vendor ⇒ String
Installed application vendor.
Corresponds to the JSON property vendor
2972 2973 2974 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2972 def vendor @vendor end |
#version ⇒ String
Installed application version.
Corresponds to the JSON property version
2977 2978 2979 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2977 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2984 2985 2986 2987 2988 2989 2990 2991 |
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 2984 def update!(**args) @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 |