Class: Google::Apis::DeploymentmanagerAlpha::TargetConfiguration
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::TargetConfiguration
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/deploymentmanager_alpha/classes.rb,
lib/google/apis/deploymentmanager_alpha/representations.rb,
lib/google/apis/deploymentmanager_alpha/representations.rb
Instance Attribute Summary collapse
-
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
The configuration to use for this deployment.
-
#imports ⇒ Array<Google::Apis::DeploymentmanagerAlpha::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.
Constructor Details
#initialize(**args) ⇒ TargetConfiguration
Returns a new instance of TargetConfiguration.
2114 2115 2116 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2114 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
The configuration to use for this deployment.
Corresponds to the JSON property config
2105 2106 2107 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2105 def config @config end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerAlpha::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
2112 2113 2114 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2112 def imports @imports end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2119 2120 2121 2122 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2119 def update!(**args) @config = args[:config] if args.key?(:config) @imports = args[:imports] if args.key?(:imports) end |