class Google::Apis::OsconfigV1alpha::OsPolicyResourceConfigStep

Step performed by the OS Config agent for configuring an `OSPolicyResource` to its desired state.

Attributes

error_message[RW]

An error message recorded during the execution of this step. Only populated when outcome is FAILED. Corresponds to the JSON property `errorMessage` @return [String]

outcome[RW]

Outcome of the configuration step. Corresponds to the JSON property `outcome` @return [String]

type[RW]

Configuration step type. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/osconfig_v1alpha/classes.rb, line 1515
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_v1alpha/classes.rb, line 1520
def update!(**args)
  @error_message = args[:error_message] if args.key?(:error_message)
  @outcome = args[:outcome] if args.key?(:outcome)
  @type = args[:type] if args.key?(:type)
end