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. 
- 
  
    
      #id  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Output only. 
- 
  
    
      #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. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Manifest
Returns a new instance of Manifest
| 1144 1145 1146 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1144 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#config ⇒ Google::Apis::DeploymentmanagerV2beta::ConfigFile
Corresponds to the JSON property config
| 1105 1106 1107 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1105 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
| 1111 1112 1113 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1111 def @expanded_config end | 
#id ⇒ Fixnum
Output only. Unique identifier for the resource; defined by the server.
Corresponds to the JSON property id
| 1116 1117 1118 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1116 def id @id end | 
#imports ⇒ Array<Google::Apis::DeploymentmanagerV2beta::ImportFile>
Output only. The imported files for this manifest.
Corresponds to the JSON property imports
| 1121 1122 1123 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1121 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
| 1126 1127 1128 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1126 def insert_time @insert_time end | 
#layout ⇒ String
Output only. The YAML layout for this manifest.
Corresponds to the JSON property layout
| 1131 1132 1133 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1131 def layout @layout end | 
#name ⇒ String
Output only.
The name of the manifest.
Corresponds to the JSON property name
| 1137 1138 1139 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1137 def name @name end | 
#self_link ⇒ String
Output only. Self link for the manifest.
Corresponds to the JSON property selfLink
| 1142 1143 1144 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1142 def self_link @self_link end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 | # File 'generated/google/apis/deploymentmanager_v2beta/classes.rb', line 1149 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 |