Class: Google::Apis::DeploymentmanagerAlpha::Manifest
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerAlpha::Manifest
- 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
-
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
Output only.
-
#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.
-
#manifest_size_bytes ⇒ Fixnum
Output only.
-
#manifest_size_limit_bytes ⇒ Fixnum
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.
Constructor Details
#initialize(**args) ⇒ Manifest
Returns a new instance of Manifest.
1387 1388 1389 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1387 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerAlpha::ConfigFile
Output only. The YAML configuration for this manifest.
Corresponds to the JSON property config
1339 1340 1341 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1339 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
1345 1346 1347 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1345 def @expanded_config end |
#id ⇒ Fixnum
Corresponds to the JSON property id
1350 1351 1352 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1350 def id @id end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerAlpha::ImportFile>
Output only. The imported files for this manifest.
Corresponds to the JSON property imports
1355 1356 1357 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1355 def imports @imports end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
1360 1361 1362 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1360 def insert_time @insert_time end |
#layout ⇒ String
Output only. The YAML layout for this manifest.
Corresponds to the JSON property layout
1365 1366 1367 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1365 def layout @layout end |
#manifest_size_bytes ⇒ Fixnum
Output only. The computed size of the fully expanded manifest.
Corresponds to the JSON property manifestSizeBytes
1370 1371 1372 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1370 def manifest_size_bytes @manifest_size_bytes end |
#manifest_size_limit_bytes ⇒ Fixnum
Output only. The size limit for expanded manifests in the project.
Corresponds to the JSON property manifestSizeLimitBytes
1375 1376 1377 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1375 def manifest_size_limit_bytes @manifest_size_limit_bytes end |
#name ⇒ String
Output only. The name of the manifest.
Corresponds to the JSON property name
1380 1381 1382 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1380 def name @name end |
#self_link ⇒ String
Output only. Self link for the manifest.
Corresponds to the JSON property selfLink
1385 1386 1387 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1385 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 |
# File 'lib/google/apis/deploymentmanager_alpha/classes.rb', line 1392 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) @manifest_size_bytes = args[:manifest_size_bytes] if args.key?(:manifest_size_bytes) @manifest_size_limit_bytes = args[:manifest_size_limit_bytes] if args.key?(:manifest_size_limit_bytes) @name = args[:name] if args.key?(:name) @self_link = args[:self_link] if args.key?(:self_link) end |