Class: Google::Apis::DeploymentmanagerAlpha::Manifest

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Manifest

Returns a new instance of Manifest.



1051
1052
1053
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1051

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#configGoogle::Apis::DeploymentmanagerAlpha::ConfigFile

Output only. The YAML configuration for this manifest. Corresponds to the JSON property config



1013
1014
1015
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1013

def config
  @config
end

#expanded_configString

Output only. The fully-expanded configuration file, including any templates and references. Corresponds to the JSON property expandedConfig

Returns:

  • (String)


1019
1020
1021
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1019

def expanded_config
  @expanded_config
end

#idFixnum

Corresponds to the JSON property id

Returns:

  • (Fixnum)


1024
1025
1026
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1024

def id
  @id
end

#importsArray<Google::Apis::DeploymentmanagerAlpha::ImportFile>

Output only. The imported files for this manifest. Corresponds to the JSON property imports



1029
1030
1031
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1029

def imports
  @imports
end

#insert_timeString

Output only. Creation timestamp in RFC3339 text format. Corresponds to the JSON property insertTime

Returns:

  • (String)


1034
1035
1036
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1034

def insert_time
  @insert_time
end

#layoutString

Output only. The YAML layout for this manifest. Corresponds to the JSON property layout

Returns:

  • (String)


1039
1040
1041
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1039

def layout
  @layout
end

#nameString

Output only. The name of the manifest. Corresponds to the JSON property name

Returns:

  • (String)


1044
1045
1046
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1044

def name
  @name
end

Output only. Self link for the manifest. Corresponds to the JSON property selfLink

Returns:

  • (String)


1049
1050
1051
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1049

def self_link
  @self_link
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
# File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 1056

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