Class: SDM::Memcached
- Inherits:
-
Object
- Object
- SDM::Memcached
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#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_override ⇒ Object
Returns the value of attribute port_override.
-
#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.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, port_override: nil, port: nil) ⇒ Memcached
constructor
A new instance of Memcached.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, port_override: nil, port: nil) ⇒ Memcached
Returns a new instance of Memcached.
3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 |
# File 'lib/models/porcelain.rb', line 3041 def initialize( id: nil, name: nil, healthy: nil, tags: nil, secret_store_id: nil, egress_filter: nil, hostname: nil, port_override: nil, port: 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 port_override != nil @port_override = port_override end if port != nil @port = port end end |
Instance Attribute Details
#egress_filter ⇒ Object
A filter applied to the routing logic to pin datasource to nodes.
3033 3034 3035 |
# File 'lib/models/porcelain.rb', line 3033 def egress_filter @egress_filter end |
#healthy ⇒ Object
True if the datasource is reachable and the credentials are valid.
3027 3028 3029 |
# File 'lib/models/porcelain.rb', line 3027 def healthy @healthy end |
#hostname ⇒ Object
Returns the value of attribute hostname.
3035 3036 3037 |
# File 'lib/models/porcelain.rb', line 3035 def hostname @hostname end |
#id ⇒ Object
Unique identifier of the Resource.
3023 3024 3025 |
# File 'lib/models/porcelain.rb', line 3023 def id @id end |
#name ⇒ Object
Unique human-readable name of the Resource.
3025 3026 3027 |
# File 'lib/models/porcelain.rb', line 3025 def name @name end |
#port ⇒ Object
Returns the value of attribute port.
3039 3040 3041 |
# File 'lib/models/porcelain.rb', line 3039 def port @port end |
#port_override ⇒ Object
Returns the value of attribute port_override.
3037 3038 3039 |
# File 'lib/models/porcelain.rb', line 3037 def port_override @port_override end |
#secret_store_id ⇒ Object
ID of the secret store containing credentials for this resource, if any.
3031 3032 3033 |
# File 'lib/models/porcelain.rb', line 3031 def secret_store_id @secret_store_id end |
#tags ⇒ Object
Tags is a map of key, value pairs.
3029 3030 3031 |
# File 'lib/models/porcelain.rb', line 3029 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
3081 3082 3083 3084 3085 3086 3087 |
# File 'lib/models/porcelain.rb', line 3081 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 |