Class: Google::Apis::OsconfigV1::OsPolicyResourcePackageResourceMsi
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::OsPolicyResourcePackageResourceMsi
- 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
An MSI package. MSI packages only support INSTALLED state.
Instance Attribute Summary collapse
-
#properties ⇒ Array<String>
Additional properties to use during installation.
-
#source ⇒ Google::Apis::OsconfigV1::OsPolicyResourceFile
A remote or local file.
Instance Method Summary collapse
-
#initialize(**args) ⇒ OsPolicyResourcePackageResourceMsi
constructor
A new instance of OsPolicyResourcePackageResourceMsi.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ OsPolicyResourcePackageResourceMsi
Returns a new instance of OsPolicyResourcePackageResourceMsi.
2280 2281 2282 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2280 def initialize(**args) update!(**args) end |
Instance Attribute Details
#properties ⇒ Array<String>
Additional properties to use during installation. This should be in the format
of Property=Setting. Appended to the defaults of ACTION=INSTALL REBOOT=
ReallySuppress
.
Corresponds to the JSON property properties
2273 2274 2275 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2273 def properties @properties end |
#source ⇒ Google::Apis::OsconfigV1::OsPolicyResourceFile
A remote or local file.
Corresponds to the JSON property source
2278 2279 2280 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2278 def source @source end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2285 2286 2287 2288 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 2285 def update!(**args) @properties = args[:properties] if args.key?(:properties) @source = args[:source] if args.key?(:source) end |