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.
10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 |
# File 'lib/models/porcelain.rb', line 10963 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 |