class Google::Apis::DeploymentmanagerV2::Manifest
Attributes
Corresponds to the JSON property `config` @return [Google::Apis::DeploymentmanagerV2::ConfigFile]
- Output Only
-
The fully-expanded configuration file, including any templates
and references. Corresponds to the JSON property `expandedConfig` @return [String]
- Output Only
-
Unique identifier for the resource; defined by the server.
Corresponds to the JSON property `id` @return [String]
- Output Only
-
The imported files for this manifest.
Corresponds to the JSON property `imports` @return [Array<Google::Apis::DeploymentmanagerV2::ImportFile>]
- Output Only
-
Timestamp when the manifest was created, in RFC3339 text format.
Corresponds to the JSON property `insertTime` @return [String]
- Output Only
-
The YAML layout for this manifest.
Corresponds to the JSON property `layout` @return [String]
- Output Only
-
The name of the manifest.
Corresponds to the JSON property `name` @return [String]
- Output Only
-
Self link for the manifest.
Corresponds to the JSON property `selfLink` @return [String]
Public Class Methods
# File generated/google/apis/deploymentmanager_v2/classes.rb, line 371 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File generated/google/apis/deploymentmanager_v2/classes.rb, line 376 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