Class: Google::Apis::TagmanagerV2::CreateContainerVersionResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::TagmanagerV2::CreateContainerVersionResponse
 
- 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
Create container versions response.
Instance Attribute Summary collapse
- 
  
    
      #compiler_error  ⇒ Boolean 
    
    
      (also: #compiler_error?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    Compiler errors or not. 
- 
  
    
      #container_version  ⇒ Google::Apis::TagmanagerV2::ContainerVersion 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Represents a Google Tag Manager Container Version. 
- 
  
    
      #new_workspace_path  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Auto generated workspace path created as a result of version creation. 
- 
  
    
      #sync_status  ⇒ Google::Apis::TagmanagerV2::SyncStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of a workspace after synchronization. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ CreateContainerVersionResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of CreateContainerVersionResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ CreateContainerVersionResponse
Returns a new instance of CreateContainerVersionResponse
| 554 555 556 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 554 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#compiler_error ⇒ Boolean Also known as: compiler_error?
Compiler errors or not.
Corresponds to the JSON property compilerError
| 535 536 537 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 535 def compiler_error @compiler_error end | 
#container_version ⇒ Google::Apis::TagmanagerV2::ContainerVersion
Represents a Google Tag Manager Container Version.
Corresponds to the JSON property containerVersion
| 541 542 543 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 541 def container_version @container_version end | 
#new_workspace_path ⇒ String
Auto generated workspace path created as a result of version creation. This
field should only be populated if the created version was not a quick preview.
Corresponds to the JSON property newWorkspacePath
| 547 548 549 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 547 def new_workspace_path @new_workspace_path end | 
#sync_status ⇒ Google::Apis::TagmanagerV2::SyncStatus
The status of a workspace after synchronization.
Corresponds to the JSON property syncStatus
| 552 553 554 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 552 def sync_status @sync_status end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 559 560 561 562 563 564 | # File 'generated/google/apis/tagmanager_v2/classes.rb', line 559 def update!(**args) @compiler_error = args[:compiler_error] if args.key?(:compiler_error) @container_version = args[:container_version] if args.key?(:container_version) @new_workspace_path = args[:new_workspace_path] if args.key?(:new_workspace_path) @sync_status = args[:sync_status] if args.key?(:sync_status) end |