Class: SDM::MongoReplicaSet
- Inherits:
-
Object
- Object
- SDM::MongoReplicaSet
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#auth_database ⇒ Object
Returns the value of attribute auth_database.
-
#connect_to_replica ⇒ Object
Returns the value of attribute connect_to_replica.
-
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
-
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
-
#hostname ⇒ Object
Returns the value of attribute hostname.
-
#id ⇒ Object
Unique identifier of the Resource.
-
#name ⇒ Object
Unique human-readable name of the Resource.
-
#password ⇒ Object
Returns the value of attribute password.
-
#port ⇒ Object
Returns the value of attribute port.
-
#port_override ⇒ Object
Returns the value of attribute port_override.
-
#replica_set ⇒ Object
Returns the value of attribute replica_set.
-
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
-
#tags ⇒ Object
Tags is a map of key, value pairs.
-
#tls_required ⇒ Object
Returns the value of attribute tls_required.
-
#username ⇒ Object
Returns the value of attribute username.
Instance Method Summary collapse
-
#initialize(auth_database: nil, connect_to_replica: nil, egress_filter: nil, healthy: nil, hostname: nil, id: nil, name: nil, password: nil, port: nil, port_override: nil, replica_set: nil, secret_store_id: nil, tags: nil, tls_required: nil, username: nil) ⇒ MongoReplicaSet
constructor
A new instance of MongoReplicaSet.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(auth_database: nil, connect_to_replica: nil, egress_filter: nil, healthy: nil, hostname: nil, id: nil, name: nil, password: nil, port: nil, port_override: nil, replica_set: nil, secret_store_id: nil, tags: nil, tls_required: nil, username: nil) ⇒ MongoReplicaSet
Returns a new instance of MongoReplicaSet.
4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 |
# File 'lib/models/porcelain.rb', line 4202 def initialize( auth_database: nil, connect_to_replica: nil, egress_filter: nil, healthy: nil, hostname: nil, id: nil, name: nil, password: nil, port: nil, port_override: nil, replica_set: nil, secret_store_id: nil, tags: nil, tls_required: nil, username: nil ) if auth_database != nil @auth_database = auth_database end if connect_to_replica != nil @connect_to_replica = connect_to_replica end if egress_filter != nil @egress_filter = egress_filter end if healthy != nil @healthy = healthy end if hostname != nil @hostname = hostname end if id != nil @id = id end if name != nil @name = name end if password != nil @password = password end if port != nil @port = port end if port_override != nil @port_override = port_override end if replica_set != nil @replica_set = replica_set end if secret_store_id != nil @secret_store_id = secret_store_id end if != nil @tags = end if tls_required != nil @tls_required = tls_required end if username != nil @username = username end end |
Instance Attribute Details
#auth_database ⇒ Object
Returns the value of attribute auth_database.
4172 4173 4174 |
# File 'lib/models/porcelain.rb', line 4172 def auth_database @auth_database end |
#connect_to_replica ⇒ Object
Returns the value of attribute connect_to_replica.
4174 4175 4176 |
# File 'lib/models/porcelain.rb', line 4174 def connect_to_replica @connect_to_replica end |
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
4176 4177 4178 |
# File 'lib/models/porcelain.rb', line 4176 def egress_filter @egress_filter end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
4178 4179 4180 |
# File 'lib/models/porcelain.rb', line 4178 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
4180 4181 4182 |
# File 'lib/models/porcelain.rb', line 4180 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
4182 4183 4184 |
# File 'lib/models/porcelain.rb', line 4182 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
4184 4185 4186 |
# File 'lib/models/porcelain.rb', line 4184 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
4186 4187 4188 |
# File 'lib/models/porcelain.rb', line 4186 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
4188 4189 4190 |
# File 'lib/models/porcelain.rb', line 4188 def port @port end |
#port_override ⇒ Object
Returns the value of attribute port_override.
4190 4191 4192 |
# File 'lib/models/porcelain.rb', line 4190 def port_override @port_override end |
#replica_set ⇒ Object
Returns the value of attribute replica_set.
4192 4193 4194 |
# File 'lib/models/porcelain.rb', line 4192 def replica_set @replica_set end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
4194 4195 4196 |
# File 'lib/models/porcelain.rb', line 4194 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
4196 4197 4198 |
# File 'lib/models/porcelain.rb', line 4196 def @tags end |
#tls_required ⇒ Object
Returns the value of attribute tls_required.
4198 4199 4200 |
# File 'lib/models/porcelain.rb', line 4198 def tls_required @tls_required end |
#username ⇒ Object
Returns the value of attribute username.
4200 4201 4202 |
# File 'lib/models/porcelain.rb', line 4200 def username @username end |
Instance Method Details
#to_json(options = {}) ⇒ Object
4266 4267 4268 4269 4270 4271 4272 |
# File 'lib/models/porcelain.rb', line 4266 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 |