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

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ TargetConfiguration

Returns a new instance of TargetConfiguration.



2315
2316
2317
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2315

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

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerAlpha::ConfigFile

The configuration to use for this deployment. Corresponds to the JSON property config



2306
2307
2308
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2306

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



2313
2314
2315
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2313

def imports
  @imports
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2320
2321
2322
2323
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 2320

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