class Google::Apis::DeploymentmanagerV2::Manifest

Attributes

config[RW]

Output only. The YAML configuration for this manifest. Corresponds to the JSON property `config` @return [Google::Apis::DeploymentmanagerV2::ConfigFile]

expanded_config[RW]

Output only. The fully-expanded configuration file, including any templates and references. Corresponds to the JSON property `expandedConfig` @return [String]

id[RW]

Corresponds to the JSON property `id` @return [Fixnum]

imports[RW]

Output only. The imported files for this manifest. Corresponds to the JSON property `imports` @return [Array<Google::Apis::DeploymentmanagerV2::ImportFile>]

insert_time[RW]

Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property `insertTime` @return [String]

layout[RW]

Output only. The YAML layout for this manifest. Corresponds to the JSON property `layout` @return [String]

manifest_size_bytes[RW]

Output only. The computed size of the fully expanded manifest. Corresponds to the JSON property `manifestSizeBytes` @return [Fixnum]

manifest_size_limit_bytes[RW]

Output only. The size limit for expanded manifests in the project. Corresponds to the JSON property `manifestSizeLimitBytes` @return [Fixnum]

name[RW]

Output only. The name of the manifest. Corresponds to the JSON property `name` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/deploymentmanager_v2/classes.rb, line 663
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/deploymentmanager_v2/classes.rb, line 668
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