Class: Google::Apis::DeploymentmanagerAlpha::TargetConfiguration

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ TargetConfiguration

Returns a new instance of TargetConfiguration



2143
2144
2145
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2143

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerAlpha::ConfigFile

Corresponds to the JSON property config



2134
2135
2136
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2134

def config
  @config
end

#importsArray<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



2141
2142
2143
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2141

def imports
  @imports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2148
2149
2150
2151
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2148

def update!(**args)
  @config = args[:config] if args.key?(:config)
  @imports = args[:imports] if args.key?(:imports)
end