Class: Google::Apis::MemcacheV1beta2::Node
- Inherits:
-
Object
- Object
- Google::Apis::MemcacheV1beta2::Node
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/memcache_v1beta2/classes.rb,
lib/google/apis/memcache_v1beta2/representations.rb,
lib/google/apis/memcache_v1beta2/representations.rb
Instance Attribute Summary collapse
-
#host ⇒ String
Output only.
-
#node_id ⇒ String
Output only.
-
#parameters ⇒ Google::Apis::MemcacheV1beta2::MemcacheParameters
The unique ID associated with this set of parameters.
-
#port ⇒ Fixnum
Output only.
-
#state ⇒ String
Output only.
-
#update_available ⇒ Boolean
(also: #update_available?)
Output only.
-
#zone ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Node
constructor
A new instance of Node.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Node
Returns a new instance of Node.
1173 1174 1175 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1173 def initialize(**args) update!(**args) end |
Instance Attribute Details
#host ⇒ String
Output only. Hostname or IP address of the Memcached node used by the clients
to connect to the Memcached server on this node.
Corresponds to the JSON property host
1136 1137 1138 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1136 def host @host end |
#node_id ⇒ String
Output only. Identifier of the Memcached node. The node id does not include
project or location like the Memcached instance name.
Corresponds to the JSON property nodeId
1142 1143 1144 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1142 def node_id @node_id end |
#parameters ⇒ Google::Apis::MemcacheV1beta2::MemcacheParameters
The unique ID associated with this set of parameters. Users can use this id to
determine if the parameters associated with the instance differ from the
parameters associated with the nodes. A discrepancy between parameter ids can
inform users that they may need to take action to apply parameters on nodes.
Corresponds to the JSON property parameters
1150 1151 1152 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1150 def parameters @parameters end |
#port ⇒ Fixnum
Output only. The port number of the Memcached server on this node.
Corresponds to the JSON property port
1155 1156 1157 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1155 def port @port end |
#state ⇒ String
Output only. Current state of the Memcached node.
Corresponds to the JSON property state
1160 1161 1162 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1160 def state @state end |
#update_available ⇒ Boolean Also known as: update_available?
Output only. Returns true if there is an update waiting to be applied
Corresponds to the JSON property updateAvailable
1165 1166 1167 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1165 def update_available @update_available end |
#zone ⇒ String
Output only. Location (GCP Zone) for the Memcached node.
Corresponds to the JSON property zone
1171 1172 1173 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1171 def zone @zone end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1178 1179 1180 1181 1182 1183 1184 1185 1186 |
# File 'lib/google/apis/memcache_v1beta2/classes.rb', line 1178 def update!(**args) @host = args[:host] if args.key?(:host) @node_id = args[:node_id] if args.key?(:node_id) @parameters = args[:parameters] if args.key?(:parameters) @port = args[:port] if args.key?(:port) @state = args[:state] if args.key?(:state) @update_available = args[:update_available] if args.key?(:update_available) @zone = args[:zone] if args.key?(:zone) end |