Class: Google::Apis::TagmanagerV2::GetWorkspaceStatusResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TagmanagerV2::GetWorkspaceStatusResponse
 
- 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 changes that have occurred in the workspace since the base container version.
Instance Attribute Summary collapse
- 
  
    
      #merge_conflict  ⇒ Array<Google::Apis::TagmanagerV2::MergeConflict> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The merge conflict after sync. 
- 
  
    
      #workspace_change  ⇒ Array<Google::Apis::TagmanagerV2::Entity> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Entities that have been changed in the workspace. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ GetWorkspaceStatusResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of GetWorkspaceStatusResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GetWorkspaceStatusResponse
Returns a new instance of GetWorkspaceStatusResponse
| 914 915 916 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 914 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#merge_conflict ⇒ Array<Google::Apis::TagmanagerV2::MergeConflict>
The merge conflict after sync.
Corresponds to the JSON property mergeConflict
| 907 908 909 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 907 def merge_conflict @merge_conflict end | 
#workspace_change ⇒ Array<Google::Apis::TagmanagerV2::Entity>
Entities that have been changed in the workspace.
Corresponds to the JSON property workspaceChange
| 912 913 914 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 912 def workspace_change @workspace_change end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 919 920 921 922 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 919 def update!(**args) @merge_conflict = args[:merge_conflict] if args.key?(:merge_conflict) @workspace_change = args[:workspace_change] if args.key?(:workspace_change) end |