Class: Google::Apis::OsconfigV1::PatchJobInstanceDetails

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

Overview

Patch details for a VM instance. For more information about reviewing VM instance details, see Listing all VM instance details for a specific patch job.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PatchJobInstanceDetails

Returns a new instance of PatchJobInstanceDetails.



1224
1225
1226
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1224

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

Instance Attribute Details

#attempt_countFixnum

The number of times the agent that the agent attempts to apply the patch. Corresponds to the JSON property attemptCount

Returns:

  • (Fixnum)


1201
1202
1203
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1201

def attempt_count
  @attempt_count
end

#failure_reasonString

If the patch fails, this field provides the reason. Corresponds to the JSON property failureReason

Returns:

  • (String)


1206
1207
1208
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1206

def failure_reason
  @failure_reason
end

#instance_system_idString

The unique identifier for the instance. This identifier is defined by the server. Corresponds to the JSON property instanceSystemId

Returns:

  • (String)


1212
1213
1214
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1212

def instance_system_id
  @instance_system_id
end

#nameString

The instance name in the form projects/*/zones/*/instances/* Corresponds to the JSON property name

Returns:

  • (String)


1217
1218
1219
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1217

def name
  @name
end

#stateString

Current state of instance patch. Corresponds to the JSON property state

Returns:

  • (String)


1222
1223
1224
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1222

def state
  @state
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1229
1230
1231
1232
1233
1234
1235
# File 'generated/google/apis/osconfig_v1/classes.rb', line 1229

def update!(**args)
  @attempt_count = args[:attempt_count] if args.key?(:attempt_count)
  @failure_reason = args[:failure_reason] if args.key?(:failure_reason)
  @instance_system_id = args[:instance_system_id] if args.key?(:instance_system_id)
  @name = args[:name] if args.key?(:name)
  @state = args[:state] if args.key?(:state)
end