Class: Google::Apis::OsconfigV1::InventoryWindowsApplication

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/osconfig_v1/classes.rb,
lib/google/apis/osconfig_v1/representations.rb,
lib/google/apis/osconfig_v1/representations.rb

Overview

Contains information about a Windows application that is retrieved from the Windows Registry. For more information about these fields, see Windows Installer Properties for the Uninstall Registry.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InventoryWindowsApplication

Returns a new instance of InventoryWindowsApplication.



745
746
747
# File 'lib/google/apis/osconfig_v1/classes.rb', line 745

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

Instance Attribute Details

#display_nameString

The name of the application or product. Corresponds to the JSON property displayName

Returns:

  • (String)


716
717
718
# File 'lib/google/apis/osconfig_v1/classes.rb', line 716

def display_name
  @display_name
end

#display_versionString

The version of the product or application in string format. Corresponds to the JSON property displayVersion

Returns:

  • (String)


721
722
723
# File 'lib/google/apis/osconfig_v1/classes.rb', line 721

def display_version
  @display_version
end

The internet address for technical support. Corresponds to the JSON property helpLink

Returns:

  • (String)


726
727
728
# File 'lib/google/apis/osconfig_v1/classes.rb', line 726

def help_link
  @help_link
end

#install_dateGoogle::Apis::OsconfigV1::Date

Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day value, with a zero year, such as an anniversary * A year on its own, with zero month and day values * A year and month value, with a zero day, such as a credit card expiration date Related types are google.type.TimeOfDay and google.protobuf.Timestamp. Corresponds to the JSON property installDate



738
739
740
# File 'lib/google/apis/osconfig_v1/classes.rb', line 738

def install_date
  @install_date
end

#publisherString

The name of the manufacturer for the product or application. Corresponds to the JSON property publisher

Returns:

  • (String)


743
744
745
# File 'lib/google/apis/osconfig_v1/classes.rb', line 743

def publisher
  @publisher
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



750
751
752
753
754
755
756
# File 'lib/google/apis/osconfig_v1/classes.rb', line 750

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @display_version = args[:display_version] if args.key?(:display_version)
  @help_link = args[:help_link] if args.key?(:help_link)
  @install_date = args[:install_date] if args.key?(:install_date)
  @publisher = args[:publisher] if args.key?(:publisher)
end