Class: Google::Apis::OsconfigV1beta::InventoryWindowsQuickFixEngineeringPackage

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

Overview

Information related to a Quick Fix Engineering package. Fields are taken from Windows QuickFixEngineering Interface and match the source names: https://docs. microsoft.com/en-us/windows/win32/cimwin32prov/win32-quickfixengineering

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InventoryWindowsQuickFixEngineeringPackage

Returns a new instance of InventoryWindowsQuickFixEngineeringPackage.



954
955
956
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 954

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

Instance Attribute Details

#captionString

A short textual description of the QFE update. Corresponds to the JSON property caption

Returns:

  • (String)


937
938
939
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 937

def caption
  @caption
end

#descriptionString

A textual description of the QFE update. Corresponds to the JSON property description

Returns:

  • (String)


942
943
944
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 942

def description
  @description
end

#hot_fix_idString

Unique identifier associated with a particular QFE update. Corresponds to the JSON property hotFixId

Returns:

  • (String)


947
948
949
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 947

def hot_fix_id
  @hot_fix_id
end

#install_timeString

Date that the QFE update was installed. Mapped from installed_on field. Corresponds to the JSON property installTime

Returns:

  • (String)


952
953
954
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 952

def install_time
  @install_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



959
960
961
962
963
964
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 959

def update!(**args)
  @caption = args[:caption] if args.key?(:caption)
  @description = args[:description] if args.key?(:description)
  @hot_fix_id = args[:hot_fix_id] if args.key?(:hot_fix_id)
  @install_time = args[:install_time] if args.key?(:install_time)
end