Class: Google::Apis::DeploymentmanagerV2beta::TargetConfiguration
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerV2beta::TargetConfiguration
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2beta/classes.rb,
 generated/google/apis/deploymentmanager_v2beta/representations.rb,
 generated/google/apis/deploymentmanager_v2beta/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #config  ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Corresponds to the JSON property config.
- 
  
    
      #imports  ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies any files to import for this configuration. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TargetConfiguration 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TargetConfiguration. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TargetConfiguration
Returns a new instance of TargetConfiguration
| 2159 2160 2161 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2159 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile
Corresponds to the JSON property config
| 2150 2151 2152 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2150 def config @config end | 
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>
Specifies any files to import for this configuration. This can be used to
import templates or other files. For example, you might import a text file in
order to use the file in a template.
Corresponds to the JSON property imports
| 2157 2158 2159 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2157 def imports @imports end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 2164 2165 2166 2167 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 2164 def update!(**args) @config = args[:config] if args.key?(:config) @imports = args[:imports] if args.key?(:imports) end |