Class: SDM::MongoLegacyHost
- Inherits:
-
Object
- Object
- SDM::MongoLegacyHost
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#auth_database ⇒ Object
Returns the value of attribute auth_database.
-
#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(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, tls_required: nil) ⇒ MongoLegacyHost
constructor
A new instance of MongoLegacyHost.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, tls_required: nil) ⇒ MongoLegacyHost
Returns a new instance of MongoLegacyHost.
3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 |
# File 'lib/models/porcelain.rb', line 3120 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, auth_database: nil, port_override: nil, username: nil, password: nil, port: nil, replica_set: nil, tls_required: nil ) if id != nil @id = id end if name != nil @name = name end if healthy != nil @healthy = healthy end if != nil @tags = end if secret_store_id != nil @secret_store_id = secret_store_id end if egress_filter != nil @egress_filter = egress_filter end if hostname != nil @hostname = hostname end if auth_database != nil @auth_database = auth_database end if port_override != nil @port_override = port_override end if username != nil @username = username end if password != nil @password = password end if port != nil @port = port end if replica_set != nil @replica_set = replica_set end if tls_required != nil @tls_required = tls_required end end |
Instance Attribute Details
#auth_database ⇒ Object
Returns the value of attribute auth_database.
3106 3107 3108 |
# File 'lib/models/porcelain.rb', line 3106 def auth_database @auth_database end |
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
3102 3103 3104 |
# File 'lib/models/porcelain.rb', line 3102 def egress_filter @egress_filter end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
3096 3097 3098 |
# File 'lib/models/porcelain.rb', line 3096 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
3104 3105 3106 |
# File 'lib/models/porcelain.rb', line 3104 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
3092 3093 3094 |
# File 'lib/models/porcelain.rb', line 3092 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
3094 3095 3096 |
# File 'lib/models/porcelain.rb', line 3094 def name @name end |
#password ⇒ Object
Returns the value of attribute password.
3112 3113 3114 |
# File 'lib/models/porcelain.rb', line 3112 def password @password end |
#port ⇒ Object
Returns the value of attribute port.
3114 3115 3116 |
# File 'lib/models/porcelain.rb', line 3114 def port @port end |
#port_override ⇒ Object
Returns the value of attribute port_override.
3108 3109 3110 |
# File 'lib/models/porcelain.rb', line 3108 def port_override @port_override end |
#replica_set ⇒ Object
Returns the value of attribute replica_set.
3116 3117 3118 |
# File 'lib/models/porcelain.rb', line 3116 def replica_set @replica_set end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
3100 3101 3102 |
# File 'lib/models/porcelain.rb', line 3100 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
3098 3099 3100 |
# File 'lib/models/porcelain.rb', line 3098 def @tags end |
#tls_required ⇒ Object
Returns the value of attribute tls_required.
3118 3119 3120 |
# File 'lib/models/porcelain.rb', line 3118 def tls_required @tls_required end |
#username ⇒ Object
Returns the value of attribute username.
3110 3111 3112 |
# File 'lib/models/porcelain.rb', line 3110 def username @username end |
Instance Method Details
#to_json(options = {}) ⇒ Object
3180 3181 3182 3183 3184 3185 3186 |
# File 'lib/models/porcelain.rb', line 3180 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 |