Class: Google::Apis::PrivatecaV1beta1::ReconciliationOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::PrivatecaV1beta1::ReconciliationOperationMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/privateca_v1beta1/classes.rb,
lib/google/apis/privateca_v1beta1/representations.rb,
lib/google/apis/privateca_v1beta1/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.
1790 1791 1792 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1790 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
1782 1783 1784 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1782 def delete_resource @delete_resource end |
#exclusive_action ⇒ String
Corresponds to the JSON property exclusiveAction
1788 1789 1790 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1788 def exclusive_action @exclusive_action end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1795 1796 1797 1798 |
# File 'lib/google/apis/privateca_v1beta1/classes.rb', line 1795 def update!(**args) @delete_resource = args[:delete_resource] if args.key?(:delete_resource) @exclusive_action = args[:exclusive_action] if args.key?(:exclusive_action) end |