Method: SDM::ProxyCluster#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(address: nil, id: nil, maintenance_windows: nil, name: nil, tags: nil) ⇒ ProxyCluster
Returns a new instance of ProxyCluster.
9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 |
# File 'lib/models/porcelain.rb', line 9806 def initialize( address: nil, id: nil, maintenance_windows: nil, name: nil, tags: nil ) @address = address == nil ? "" : address @id = id == nil ? "" : id @maintenance_windows = maintenance_windows == nil ? [] : maintenance_windows @name = name == nil ? "" : name @tags = == nil ? SDM::() : end |