Class: Google::Apis::MigrationcenterV1alpha1::GuestInstalledApplication

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GuestInstalledApplication

Returns a new instance of GuestInstalledApplication.



4199
4200
4201
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4199

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#application_nameString

Installed application name. Corresponds to the JSON property applicationName

Returns:

  • (String)


4162
4163
4164
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4162

def application_name
  @application_name
end

#install_timeString

The time when the application was installed. Corresponds to the JSON property installTime

Returns:

  • (String)


4167
4168
4169
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4167

def install_time
  @install_time
end

#licensesArray<String>

License strings associated with the installed application. Corresponds to the JSON property licenses

Returns:

  • (Array<String>)


4172
4173
4174
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4172

def licenses
  @licenses
end

#nameString

Installed application name. Corresponds to the JSON property name

Returns:

  • (String)


4177
4178
4179
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4177

def name
  @name
end

#pathString

Source path. Corresponds to the JSON property path

Returns:

  • (String)


4182
4183
4184
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4182

def path
  @path
end

#timeString

Date application was installed. Corresponds to the JSON property time

Returns:

  • (String)


4187
4188
4189
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4187

def time
  @time
end

#vendorString

Installed application vendor. Corresponds to the JSON property vendor

Returns:

  • (String)


4192
4193
4194
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4192

def vendor
  @vendor
end

#versionString

Installed application version. Corresponds to the JSON property version

Returns:

  • (String)


4197
4198
4199
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4197

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4204
4205
4206
4207
4208
4209
4210
4211
4212
4213
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 4204

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