class Google::Apis::DeploymentmanagerV2::ImportFile

Attributes

content[RW]

The contents of the file. Corresponds to the JSON property `content` @return [String]

name[RW]

The name of the file. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_v2/classes.rb, line 597
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_v2/classes.rb, line 602
def update!(**args)
  @content = args[:content] if args.key?(:content)
  @name = args[:name] if args.key?(:name)
end