class Google::Apis::OsconfigV1alpha::InventoryWindowsApplication
Contains information about a Windows application as retrieved from the Windows Registry. For more information about these fields, see [Windows Installer Properties for the Uninstall Registry](docs.microsoft.com/en-us/ windows/win32/msi/uninstall-registry-key)`: class=“external” `
Attributes
The name of the application or product. Corresponds to the JSON property `displayName` @return [String]
The version of the product or application in string format. Corresponds to the JSON property `displayVersion` @return [String]
The internet address for technical support. Corresponds to the JSON property `helpLink` @return [String]
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` @return [Google::Apis::OsconfigV1alpha::Date]
The name of the manufacturer for the product or application. Corresponds to the JSON property `publisher` @return [String]
Public Class Methods
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 647 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 652 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