Class: Google::Apis::CloudassetV1::WindowsQuickFixEngineeringPackage

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudasset_v1/classes.rb,
lib/google/apis/cloudasset_v1/representations.rb,
lib/google/apis/cloudasset_v1/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) ⇒ WindowsQuickFixEngineeringPackage

Returns a new instance of WindowsQuickFixEngineeringPackage.



3554
3555
3556
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3554

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)


3537
3538
3539
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3537

def caption
  @caption
end

#descriptionString

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

Returns:

  • (String)


3542
3543
3544
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3542

def description
  @description
end

#hot_fix_idString

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

Returns:

  • (String)


3547
3548
3549
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3547

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)


3552
3553
3554
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3552

def install_time
  @install_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3559
3560
3561
3562
3563
3564
# File 'lib/google/apis/cloudasset_v1/classes.rb', line 3559

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