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.



1831
1832
1833
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1831

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

Instance Attribute Details

#nameString

Installed application name. Corresponds to the JSON property name

Returns:

  • (String)


1809
1810
1811
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1809

def name
  @name
end

#pathString

Source path. Corresponds to the JSON property path

Returns:

  • (String)


1814
1815
1816
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1814

def path
  @path
end

#timeString

Date application was installed. Corresponds to the JSON property time

Returns:

  • (String)


1819
1820
1821
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1819

def time
  @time
end

#vendorString

Installed application vendor. Corresponds to the JSON property vendor

Returns:

  • (String)


1824
1825
1826
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1824

def vendor
  @vendor
end

#versionString

Installed application version. Corresponds to the JSON property version

Returns:

  • (String)


1829
1830
1831
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1829

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1836
1837
1838
1839
1840
1841
1842
# File 'lib/google/apis/migrationcenter_v1alpha1/classes.rb', line 1836

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