Class: Google::Apis::OsconfigV1::PatchJobInstanceDetails
- Inherits:
-
Object
- Object
- Google::Apis::OsconfigV1::PatchJobInstanceDetails
- 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
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
-
#attempt_count ⇒ Fixnum
The number of times the agent that the agent attempts to apply the patch.
-
#failure_reason ⇒ String
If the patch fails, this field provides the reason.
-
#instance_system_id ⇒ String
The unique identifier for the instance.
-
#name ⇒ String
The instance name in the form
projects/*/zones/*/instances/*
Corresponds to the JSON propertyname
. -
#state ⇒ String
Current state of instance patch.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PatchJobInstanceDetails
constructor
A new instance of PatchJobInstanceDetails.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PatchJobInstanceDetails
Returns a new instance of PatchJobInstanceDetails.
3041 3042 3043 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3041 def initialize(**args) update!(**args) end |
Instance Attribute Details
#attempt_count ⇒ Fixnum
The number of times the agent that the agent attempts to apply the patch.
Corresponds to the JSON property attemptCount
3018 3019 3020 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3018 def attempt_count @attempt_count end |
#failure_reason ⇒ String
If the patch fails, this field provides the reason.
Corresponds to the JSON property failureReason
3023 3024 3025 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3023 def failure_reason @failure_reason end |
#instance_system_id ⇒ String
The unique identifier for the instance. This identifier is defined by the
server.
Corresponds to the JSON property instanceSystemId
3029 3030 3031 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3029 def instance_system_id @instance_system_id end |
#name ⇒ String
The instance name in the form projects/*/zones/*/instances/*
Corresponds to the JSON property name
3034 3035 3036 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3034 def name @name end |
#state ⇒ String
Current state of instance patch.
Corresponds to the JSON property state
3039 3040 3041 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3039 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3046 3047 3048 3049 3050 3051 3052 |
# File 'lib/google/apis/osconfig_v1/classes.rb', line 3046 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 |