Class: Google::Apis::DeploymentmanagerV2::ImportFile
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerV2::ImportFile
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/deploymentmanager_v2/classes.rb,
 generated/google/apis/deploymentmanager_v2/representations.rb,
 generated/google/apis/deploymentmanager_v2/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #content  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The contents of the file. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the file. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ImportFile 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ImportFile. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ImportFile
Returns a new instance of ImportFile
| 618 619 620 | # File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 618 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#content ⇒ String
The contents of the file.
Corresponds to the JSON property content
| 611 612 613 | # File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 611 def content @content end | 
#name ⇒ String
The name of the file.
Corresponds to the JSON property name
| 616 617 618 | # File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 616 def name @name end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 623 624 625 626 | # File 'generated/google/apis/deploymentmanager_v2/classes.rb', line 623 def update!(**args) @content = args[:content] if args.key?(:content) @name = args[:name] if args.key?(:name) end |