class Google::Apis::OsconfigV1beta::SoftwareRecipeStepInstallMsi
Installs an MSI file.
Attributes
allowed_exit_codes[RW]
Return codes that indicate that the software installed or updated successfully. Behaviour defaults to [0] Corresponds to the JSON property `allowedExitCodes` @return [Array<Fixnum>]
artifact_id[RW]
Required. The id of the relevant artifact in the recipe. Corresponds to the JSON property `artifactId` @return [String]
flags[RW]
The flags to use when installing the MSI defaults to [ā/iā] (i.e. the install flag). Corresponds to the JSON property `flags` @return [Array<String>]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/osconfig_v1beta/classes.rb, line 2005 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/osconfig_v1beta/classes.rb, line 2010 def update!(**args) @allowed_exit_codes = args[:allowed_exit_codes] if args.key?(:allowed_exit_codes) @artifact_id = args[:artifact_id] if args.key?(:artifact_id) @flags = args[:flags] if args.key?(:flags) end