class Google::Apis::DeploymentmanagerV2beta::TargetConfiguration

Attributes

config[RW]

The configuration to use for this deployment. Corresponds to the JSON property `config` @return [Google::Apis::DeploymentmanagerV2beta::ConfigFile]

imports[RW]

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` @return [Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1983
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/deploymentmanager_v2beta/classes.rb, line 1988
def update!(**args)
  @config = args[:config] if args.key?(:config)
  @imports = args[:imports] if args.key?(:imports)
end