class Google::Apis::DeploymentmanagerAlpha::Manifest
Attributes
Output only. The YAML configuration for this manifest. Corresponds to the JSON property `config` @return [Google::Apis::DeploymentmanagerAlpha::ConfigFile]
Output only. The fully-expanded configuration file, including any templates and references. Corresponds to the JSON property `expandedConfig` @return [String]
Corresponds to the JSON property `id` @return [Fixnum]
Output only. The imported files for this manifest. Corresponds to the JSON property `imports` @return [Array<Google::Apis::DeploymentmanagerAlpha::ImportFile>]
Output only. Creation timestamp 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 computed size of the fully expanded manifest. Corresponds to the JSON property `manifestSizeBytes` @return [Fixnum]
Output only. The size limit for expanded manifests in the project. Corresponds to the JSON property `manifestSizeLimitBytes` @return [Fixnum]
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 lib/google/apis/deploymentmanager_alpha/classes.rb, line 1061 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/deploymentmanager_alpha/classes.rb, line 1066 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