Class: SDM::SSHCert
- Inherits:
-
Object
- Object
- SDM::SSHCert
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#allow_deprecated_key_exchanges ⇒ Object
Returns the value of attribute allow_deprecated_key_exchanges.
-
#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.
-
#port ⇒ Object
Returns the value of attribute port.
-
#port_forwarding ⇒ Object
Returns the value of attribute port_forwarding.
-
#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.
-
#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, username: nil, port: nil, port_forwarding: nil, allow_deprecated_key_exchanges: nil) ⇒ SSHCert
constructor
A new instance of SSHCert.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, username: nil, port: nil, port_forwarding: nil, allow_deprecated_key_exchanges: nil) ⇒ SSHCert
Returns a new instance of SSHCert.
5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 |
# File 'lib/models/porcelain.rb', line 5205 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, username: nil, port: nil, port_forwarding: nil, allow_deprecated_key_exchanges: 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 username != nil @username = username end if port != nil @port = port end if port_forwarding != nil @port_forwarding = port_forwarding end if allow_deprecated_key_exchanges != nil @allow_deprecated_key_exchanges = allow_deprecated_key_exchanges end end |
Instance Attribute Details
#allow_deprecated_key_exchanges ⇒ Object
Returns the value of attribute allow_deprecated_key_exchanges.
5203 5204 5205 |
# File 'lib/models/porcelain.rb', line 5203 def allow_deprecated_key_exchanges @allow_deprecated_key_exchanges end |
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
5193 5194 5195 |
# File 'lib/models/porcelain.rb', line 5193 def egress_filter @egress_filter end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
5187 5188 5189 |
# File 'lib/models/porcelain.rb', line 5187 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
5195 5196 5197 |
# File 'lib/models/porcelain.rb', line 5195 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
5183 5184 5185 |
# File 'lib/models/porcelain.rb', line 5183 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
5185 5186 5187 |
# File 'lib/models/porcelain.rb', line 5185 def name @name end |
#port ⇒ Object
Returns the value of attribute port.
5199 5200 5201 |
# File 'lib/models/porcelain.rb', line 5199 def port @port end |
#port_forwarding ⇒ Object
Returns the value of attribute port_forwarding.
5201 5202 5203 |
# File 'lib/models/porcelain.rb', line 5201 def port_forwarding @port_forwarding end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
5191 5192 5193 |
# File 'lib/models/porcelain.rb', line 5191 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
5189 5190 5191 |
# File 'lib/models/porcelain.rb', line 5189 def @tags end |
#username ⇒ Object
Returns the value of attribute username.
5197 5198 5199 |
# File 'lib/models/porcelain.rb', line 5197 def username @username end |
Instance Method Details
#to_json(options = {}) ⇒ Object
5253 5254 5255 5256 5257 5258 5259 |
# File 'lib/models/porcelain.rb', line 5253 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 |