in java-client/src/main/java/org/opensearch/client/opensearch/cat/nodes/NodesRecord.java [342:441]
protected NodesRecord(Builder builder) {
this.id = builder.id;
this.pid = builder.pid;
this.ip = builder.ip;
this.port = builder.port;
this.httpAddress = builder.httpAddress;
this.version = builder.version;
this.flavor = builder.flavor;
this.type = builder.type;
this.build = builder.build;
this.jdk = builder.jdk;
this.disk_total = builder.disk_total;
this.disk_used = builder.disk_used;
this.disk_avail = builder.disk_avail;
this.disk_usedPercent = builder.disk_usedPercent;
this.heap_current = builder.heap_current;
this.heap_percent = builder.heap_percent;
this.heap_max = builder.heap_max;
this.ram_current = builder.ram_current;
this.ram_percent = builder.ram_percent;
this.ram_max = builder.ram_max;
this.fileDesc_current = builder.fileDesc_current;
this.fileDesc_percent = builder.fileDesc_percent;
this.fileDesc_max = builder.fileDesc_max;
this.cpu = builder.cpu;
this.load1m = builder.load1m;
this.load5m = builder.load5m;
this.load15m = builder.load15m;
this.uptime = builder.uptime;
this.node_role = builder.node_role;
this.master = builder.master;
this.name = builder.name;
this.completion_size = builder.completion_size;
this.fielddata_memorySize = builder.fielddata_memorySize;
this.fielddata_evictions = builder.fielddata_evictions;
this.queryCache_memorySize = builder.queryCache_memorySize;
this.queryCache_evictions = builder.queryCache_evictions;
this.queryCache_hitCount = builder.queryCache_hitCount;
this.queryCache_missCount = builder.queryCache_missCount;
this.requestCache_memorySize = builder.requestCache_memorySize;
this.requestCache_evictions = builder.requestCache_evictions;
this.requestCache_hitCount = builder.requestCache_hitCount;
this.requestCache_missCount = builder.requestCache_missCount;
this.flush_total = builder.flush_total;
this.flush_totalTime = builder.flush_totalTime;
this.get_current = builder.get_current;
this.get_time = builder.get_time;
this.get_total = builder.get_total;
this.get_existsTime = builder.get_existsTime;
this.get_existsTotal = builder.get_existsTotal;
this.get_missingTime = builder.get_missingTime;
this.get_missingTotal = builder.get_missingTotal;
this.indexing_deleteCurrent = builder.indexing_deleteCurrent;
this.indexing_deleteTime = builder.indexing_deleteTime;
this.indexing_deleteTotal = builder.indexing_deleteTotal;
this.indexing_indexCurrent = builder.indexing_indexCurrent;
this.indexing_indexTime = builder.indexing_indexTime;
this.indexing_indexTotal = builder.indexing_indexTotal;
this.indexing_indexFailed = builder.indexing_indexFailed;
this.merges_current = builder.merges_current;
this.merges_currentDocs = builder.merges_currentDocs;
this.merges_currentSize = builder.merges_currentSize;
this.merges_total = builder.merges_total;
this.merges_totalDocs = builder.merges_totalDocs;
this.merges_totalSize = builder.merges_totalSize;
this.merges_totalTime = builder.merges_totalTime;
this.refresh_total = builder.refresh_total;
this.refresh_time = builder.refresh_time;
this.refresh_externalTotal = builder.refresh_externalTotal;
this.refresh_externalTime = builder.refresh_externalTime;
this.refresh_listeners = builder.refresh_listeners;
this.script_compilations = builder.script_compilations;
this.script_cacheEvictions = builder.script_cacheEvictions;
this.script_compilationLimitTriggered = builder.script_compilationLimitTriggered;
this.search_fetchCurrent = builder.search_fetchCurrent;
this.search_fetchTime = builder.search_fetchTime;
this.search_fetchTotal = builder.search_fetchTotal;
this.search_openContexts = builder.search_openContexts;
this.search_queryCurrent = builder.search_queryCurrent;
this.search_queryTime = builder.search_queryTime;
this.search_queryTotal = builder.search_queryTotal;
this.search_scrollCurrent = builder.search_scrollCurrent;
this.search_scrollTime = builder.search_scrollTime;
this.search_scrollTotal = builder.search_scrollTotal;
this.segments_count = builder.segments_count;
this.segments_memory = builder.segments_memory;
this.segments_indexWriterMemory = builder.segments_indexWriterMemory;
this.segments_versionMapMemory = builder.segments_versionMapMemory;
this.segments_fixedBitsetMemory = builder.segments_fixedBitsetMemory;
this.suggest_current = builder.suggest_current;
this.suggest_time = builder.suggest_time;
this.suggest_total = builder.suggest_total;
this.bulk_totalOperations = builder.bulk_totalOperations;
this.bulk_totalTime = builder.bulk_totalTime;
this.bulk_totalSizeInBytes = builder.bulk_totalSizeInBytes;
this.bulk_avgTime = builder.bulk_avgTime;
this.bulk_avgSizeInBytes = builder.bulk_avgSizeInBytes;
}