Class: SDM::AWSStore
- Inherits:
- 
      Object
      
        - Object
- SDM::AWSStore
 
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
- 
  
    
      #id  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique identifier of the SecretStore. 
- 
  
    
      #name  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Unique human-readable name of the SecretStore. 
- 
  
    
      #region  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The AWS region to target e.g. 
- 
  
    
      #tags  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Tags is a map of key, value pairs. 
Instance Method Summary collapse
- 
  
    
      #initialize(id: nil, name: nil, region: nil, tags: nil)  ⇒ AWSStore 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AWSStore. 
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, region: nil, tags: nil) ⇒ AWSStore
Returns a new instance of AWSStore.
| 812 813 814 815 816 817 818 819 820 821 822 | # File 'lib/models/porcelain.rb', line 812 def initialize( id: nil, name: nil, region: nil, tags: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name @region = region == nil ? "" : region @tags = == nil ? SDM::() : end | 
Instance Attribute Details
#id ⇒ Object
Unique identifier of the SecretStore.
| 804 805 806 | # File 'lib/models/porcelain.rb', line 804 def id @id end | 
#name ⇒ Object
Unique human-readable name of the SecretStore.
| 806 807 808 | # File 'lib/models/porcelain.rb', line 806 def name @name end | 
#region ⇒ Object
The AWS region to target e.g. us-east-1
| 808 809 810 | # File 'lib/models/porcelain.rb', line 808 def region @region end | 
#tags ⇒ Object
Tags is a map of key, value pairs.
| 810 811 812 | # File 'lib/models/porcelain.rb', line 810 def @tags end | 
Instance Method Details
#to_json(options = {}) ⇒ Object
| 824 825 826 827 828 829 830 | # File 'lib/models/porcelain.rb', line 824 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |