Class: Google::Apis::PrivatecaV1::ReconciliationOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1::ReconciliationOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1/classes.rb,
lib/google/apis/privateca_v1/representations.rb,
lib/google/apis/privateca_v1/representations.rb
Overview
Operation metadata returned by the CLH during resource state reconciliation.
Instance Attribute Summary collapse
-
#delete_resource ⇒ Boolean
(also: #delete_resource?)
DEPRECATED.
-
#exclusive_action ⇒ String
Corresponds to the JSON property
exclusiveAction.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReconciliationOperationMetadata
constructor
A new instance of ReconciliationOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReconciliationOperationMetadata
Returns a new instance of ReconciliationOperationMetadata.
2083 2084 2085 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2083 def initialize(**args) update!(**args) end |
Instance Attribute Details
#delete_resource ⇒ Boolean Also known as: delete_resource?
DEPRECATED. Use exclusive_action instead.
Corresponds to the JSON property deleteResource
2075 2076 2077 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2075 def delete_resource @delete_resource end |
#exclusive_action ⇒ String
Corresponds to the JSON property exclusiveAction
2081 2082 2083 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2081 def exclusive_action @exclusive_action end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2088 2089 2090 2091 |
# File 'lib/google/apis/privateca_v1/classes.rb', line 2088 def update!(**args) @delete_resource = args[:delete_resource] if args.key?(:delete_resource) @exclusive_action = args[:exclusive_action] if args.key?(:exclusive_action) end |