Class: Google::Apis::DeploymentmanagerAlpha::Manifest
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::Manifest
- 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
-
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
Corresponds to the JSON property
config
. -
#expanded_config ⇒ String
Output only.
-
#id ⇒ Fixnum
Corresponds to the JSON property
id
. -
#imports ⇒ Array<Google::Apis::DeploymentmanagerAlpha::ImportFile>
Output only.
-
#insert_time ⇒ String
Output only.
-
#layout ⇒ String
Output only.
-
#name ⇒ String
Output only.
-
#self_link ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Manifest
constructor
A new instance of Manifest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Manifest
Returns a new instance of Manifest
1206 1207 1208 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1206 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
Corresponds to the JSON property config
1167 1168 1169 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1167 def config @config end |
#expanded_config ⇒ String
Output only. The fully-expanded configuration file, including any templates
and references.
Corresponds to the JSON property expandedConfig
1173 1174 1175 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1173 def @expanded_config end |
#id ⇒ Fixnum
Corresponds to the JSON property id
1178 1179 1180 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1178 def id @id end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerAlpha::ImportFile>
Output only. The imported files for this manifest.
Corresponds to the JSON property imports
1183 1184 1185 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1183 def imports @imports end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
1188 1189 1190 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1188 def insert_time @insert_time end |
#layout ⇒ String
Output only. The YAML layout for this manifest.
Corresponds to the JSON property layout
1193 1194 1195 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1193 def layout @layout end |
#name ⇒ String
Output only.
The name of the manifest.
Corresponds to the JSON property name
1199 1200 1201 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1199 def name @name end |
#self_link ⇒ String
Output only. Self link for the manifest.
Corresponds to the JSON property selfLink
1204 1205 1206 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1204 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 |
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1211 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 |