Class: Google::Apis::TagmanagerV2::SyncStatus
- Inherits:
-
Object
- Object
- Google::Apis::TagmanagerV2::SyncStatus
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/tagmanager_v2/classes.rb,
generated/google/apis/tagmanager_v2/representations.rb,
generated/google/apis/tagmanager_v2/representations.rb
Overview
The status of a workspace after synchronization.
Instance Attribute Summary collapse
-
#merge_conflict ⇒ Boolean
(also: #merge_conflict?)
Synchornization operation detected a merge conflict.
-
#sync_error ⇒ Boolean
(also: #sync_error?)
An error occurred during the synchronization operation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SyncStatus
constructor
A new instance of SyncStatus.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SyncStatus
Returns a new instance of SyncStatus
1476 1477 1478 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1476 def initialize(**args) update!(**args) end |
Instance Attribute Details
#merge_conflict ⇒ Boolean Also known as: merge_conflict?
Synchornization operation detected a merge conflict.
Corresponds to the JSON property mergeConflict
1467 1468 1469 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1467 def merge_conflict @merge_conflict end |
#sync_error ⇒ Boolean Also known as: sync_error?
An error occurred during the synchronization operation.
Corresponds to the JSON property syncError
1473 1474 1475 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1473 def sync_error @sync_error end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1481 1482 1483 1484 |
# File 'generated/google/apis/tagmanager_v2/classes.rb', line 1481 def update!(**args) @merge_conflict = args[:merge_conflict] if args.key?(:merge_conflict) @sync_error = args[:sync_error] if args.key?(:sync_error) end |