Instance_Node constructor
Instance_Node({
- String? nodeId,
- String? zone,
- Instance_Node_State? state,
- String? host,
- int? port,
- MemcacheParameters? parameters,
Implementation
factory Instance_Node({
$core.String? nodeId,
$core.String? zone,
Instance_Node_State? state,
$core.String? host,
$core.int? port,
MemcacheParameters? parameters,
}) {
final $result = create();
if (nodeId != null) {
$result.nodeId = nodeId;
}
if (zone != null) {
$result.zone = zone;
}
if (state != null) {
$result.state = state;
}
if (host != null) {
$result.host = host;
}
if (port != null) {
$result.port = port;
}
if (parameters != null) {
$result.parameters = parameters;
}
return $result;
}