Class: Google::Apis::DeploymentmanagerV2::Manifest
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2::Manifest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2/classes.rb,
generated/google/apis/deploymentmanager_v2/representations.rb,
generated/google/apis/deploymentmanager_v2/representations.rb
Instance Attribute Summary collapse
-
#config ⇒ Google::Apis::DeploymentmanagerV2::ConfigFile
Output only.
-
#expanded_config ⇒ String
Output only.
-
#id ⇒ Fixnum
Corresponds to the JSON property
id
. -
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2::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.
Constructor Details
#initialize(**args) ⇒ Manifest
Returns a new instance of Manifest.
653 654 655 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 653 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerV2::ConfigFile
Output only. The YAML configuration for this manifest.
Corresponds to the JSON property config
615 616 617 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 615 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
621 622 623 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 621 def @expanded_config end |
#id ⇒ Fixnum
Corresponds to the JSON property id
626 627 628 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 626 def id @id end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2::ImportFile>
Output only. The imported files for this manifest.
Corresponds to the JSON property imports
631 632 633 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 631 def imports @imports end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
636 637 638 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 636 def insert_time @insert_time end |
#layout ⇒ String
Output only. The YAML layout for this manifest.
Corresponds to the JSON property layout
641 642 643 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 641 def layout @layout end |
#name ⇒ String
Output only. The name of the manifest.
Corresponds to the JSON property name
646 647 648 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 646 def name @name end |
#self_link ⇒ String
Output only. Self link for the manifest.
Corresponds to the JSON property selfLink
651 652 653 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 651 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
658 659 660 661 662 663 664 665 666 667 |
# File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 658 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 |