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
Corresponds to the JSON property
config
. -
#expanded_config ⇒ String
[Output Only] The fully-expanded configuration file, including any templates and references.
-
#id ⇒ Fixnum
[Output Only] Unique identifier for the resource; defined by the server.
-
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>
[Output Only] The imported files for this manifest.
-
#insert_time ⇒ String
[Output Only] Timestamp when the manifest was created, in RFC3339 text format.
-
#layout ⇒ String
[Output Only] The YAML layout for this manifest.
-
#name ⇒ String
[Output Only] The name of the manifest.
-
#self_link ⇒ String
[Output Only] Self link for the manifest.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Manifest
constructor
A new instance of Manifest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Manifest
Returns a new instance of Manifest
1033 1034 1035 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1033 def initialize(**args) update!(**args) end |
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile
Corresponds to the JSON property config
995 996 997 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 995 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
1001 1002 1003 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1001 def @expanded_config end |
#id ⇒ Fixnum
[Output Only] Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
1006 1007 1008 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1006 def id @id end |
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>
[Output Only] The imported files for this manifest.
Corresponds to the JSON property imports
1011 1012 1013 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1011 def imports @imports end |
#insert_time ⇒ String
[Output Only] Timestamp when the manifest was created, in RFC3339 text format.
Corresponds to the JSON property insertTime
1016 1017 1018 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1016 def insert_time @insert_time end |
#layout ⇒ String
[Output Only] The YAML layout for this manifest.
Corresponds to the JSON property layout
1021 1022 1023 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1021 def layout @layout end |
#name ⇒ String
[Output Only] The name of the manifest.
Corresponds to the JSON property name
1026 1027 1028 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1026 def name @name end |
#self_link ⇒ String
[Output Only] Self link for the manifest.
Corresponds to the JSON property selfLink
1031 1032 1033 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1031 def self_link @self_link end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 |
# File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1038 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 |