Class: Google::Apis::DeploymentmanagerAlpha::Manifest

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) ⇒ Manifest

Returns a new instance of Manifest



1196
1197
1198
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1196

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

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerAlpha::ConfigFile

Corresponds to the JSON property config



1157
1158
1159
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1157

def config
  @config
end

#expanded_configString

Output only. The fully-expanded configuration file, including any templates and references. Corresponds to the JSON property expandedConfig

Returns:

  • (String)


1163
1164
1165
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1163

def expanded_config
  @expanded_config
end

#idFixnum

Output only. Unique identifier for the resource; defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


1168
1169
1170
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1168

def id
  @id
end

#importsArray<Google::Apis::DeploymentmanagerAlpha::ImportFile>

Output only. The imported files for this manifest. Corresponds to the JSON property imports



1173
1174
1175
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1173

def imports
  @imports
end

#insert_timeString

Output only. Timestamp when the manifest was created, in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


1178
1179
1180
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1178

def insert_time
  @insert_time
end

#layoutString

Output only. The YAML layout for this manifest. Corresponds to the JSON property layout

Returns:

  • (String)


1183
1184
1185
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1183

def layout
  @layout
end

#nameString

Output only. The name of the manifest. Corresponds to the JSON property name

Returns:

  • (String)


1189
1190
1191
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1189

def name
  @name
end

Output only. Self link for the manifest. Corresponds to the JSON property selfLink

Returns:

  • (String)


1194
1195
1196
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1194

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1201

def update!(**args)
  @config = args[:config] if args.key?(:config)
  @expanded_config = args[:expanded_config] if args.key?(:expanded_config)
  @id = args[:id] if args.key?(:id)
  @imports = args[:imports] if args.key?(:imports)
  @insert_time = args[:insert_time] if args.key?(:insert_time)
  @layout = args[:layout] if args.key?(:layout)
  @name = args[:name] if args.key?(:name)
  @self_link = args[:self_link] if args.key?(:self_link)
end