Class: Google::Apis::DeploymentmanagerV2beta::Manifest
- Inherits:
-
Object
- Object
- Google::Apis::DeploymentmanagerV2beta::Manifest
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2beta/classes.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb,
generated/google/apis/deploymentmanager_v2beta/representations.rb
Instance Attribute Summary collapse
-
#config ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile
Output only.
-
#expanded_config ⇒ String
Output only.
-
#id ⇒ Fixnum
Corresponds to the JSON property
id
. -
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::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.
999 1000 1001 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 999 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile
Output only. The YAML configuration for this manifest.
Corresponds to the JSON property config
961 962 963 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 961 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
967 968 969 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 967 def @expanded_config end |
#id ⇒ Fixnum
Corresponds to the JSON property id
972 973 974 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 972 def id @id end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>
Output only. The imported files for this manifest.
Corresponds to the JSON property imports
977 978 979 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 977 def imports @imports end |
#insert_time ⇒ String
Output only. Creation timestamp in RFC3339 text format.
Corresponds to the JSON property insertTime
982 983 984 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 982 def insert_time @insert_time end |
#layout ⇒ String
Output only. The YAML layout for this manifest.
Corresponds to the JSON property layout
987 988 989 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 987 def layout @layout end |
#name ⇒ String
Output only. The name of the manifest.
Corresponds to the JSON property name
992 993 994 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 992 def name @name end |
#self_link ⇒ String
Output only. Self link for the manifest.
Corresponds to the JSON property selfLink
997 998 999 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 997 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1004 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 |