Class: Google::Apis::OsconfigV1::InventoryWindowsApplication
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::InventoryWindowsApplication
- 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: https://docs. microsoft.com/en-us/windows/win32/msi/uninstall-registry-key
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of the application or product.
-
#display_version ⇒ String
The version of the product or application in string format.
-
#help_link ⇒ String
The internet address for technical support.
-
#install_date ⇒ Google::Apis::OsconfigV1::Date
Represents a whole or partial calendar date, such as a birthday.
-
#publisher ⇒ String
The name of the manufacturer for the product or application.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InventoryWindowsApplication
constructor
A new instance of InventoryWindowsApplication.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InventoryWindowsApplication
Returns a new instance of InventoryWindowsApplication.
849 850 851 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 849 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
The name of the application or product.
Corresponds to the JSON property displayName
820 821 822 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 820 def display_name @display_name end |
#display_version ⇒ String
The version of the product or application in string format.
Corresponds to the JSON property displayVersion
825 826 827 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 825 def display_version @display_version end |
#help_link ⇒ String
The internet address for technical support.
Corresponds to the JSON property helpLink
830 831 832 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 830 def help_link @help_link end |
#install_date ⇒ Google::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, with a zero year (for example, an anniversary). * A year on its own,
with a zero month and a zero day. * A year and month, with a zero day (for
example, a credit card expiration date). Related types: * google.type.
TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
Corresponds to the JSON property installDate
842 843 844 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 842 def install_date @install_date end |
#publisher ⇒ String
The name of the manufacturer for the product or application.
Corresponds to the JSON property publisher
847 848 849 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 847 def publisher @publisher end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
854 855 856 857 858 859 860 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 854 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 |