public static interface SystemInfo.Builder extends SdkPojo, CopyableBuilder<SystemInfo.Builder,SystemInfo>
| Modifier and Type | Method and Description |
|---|---|
SystemInfo.Builder |
cpuArchitecture(String cpuArchitecture)
CPU architecture type for the server.
|
SystemInfo.Builder |
fileSystemType(String fileSystemType)
File system type for the server.
|
SystemInfo.Builder |
networkInfoList(Collection<NetworkInfo> networkInfoList)
Networking information related to a server.
|
SystemInfo.Builder |
networkInfoList(Consumer<NetworkInfo.Builder>... networkInfoList)
Networking information related to a server.
|
SystemInfo.Builder |
networkInfoList(NetworkInfo... networkInfoList)
Networking information related to a server.
|
default SystemInfo.Builder |
osInfo(Consumer<OSInfo.Builder> osInfo)
Operating system corresponding to a server.
|
SystemInfo.Builder |
osInfo(OSInfo osInfo)
Operating system corresponding to a server.
|
equalsBySdkFields, sdkFieldscopyapplyMutation, buildSystemInfo.Builder cpuArchitecture(String cpuArchitecture)
CPU architecture type for the server.
cpuArchitecture - CPU architecture type for the server.SystemInfo.Builder fileSystemType(String fileSystemType)
File system type for the server.
fileSystemType - File system type for the server.SystemInfo.Builder networkInfoList(Collection<NetworkInfo> networkInfoList)
Networking information related to a server.
networkInfoList - Networking information related to a server.SystemInfo.Builder networkInfoList(NetworkInfo... networkInfoList)
Networking information related to a server.
networkInfoList - Networking information related to a server.SystemInfo.Builder networkInfoList(Consumer<NetworkInfo.Builder>... networkInfoList)
Networking information related to a server.
This is a convenience method that creates an instance of theNetworkInfo.Builder avoiding the need to
create one manually via
NetworkInfo.builder().
When the Consumer completes,
SdkBuilder.build() is called
immediately and its result is passed to #networkInfoList(List.
networkInfoList - a consumer that will call methods on
NetworkInfo.Builder#networkInfoList(java.util.Collection) SystemInfo.Builder osInfo(OSInfo osInfo)
Operating system corresponding to a server.
osInfo - Operating system corresponding to a server.default SystemInfo.Builder osInfo(Consumer<OSInfo.Builder> osInfo)
Operating system corresponding to a server.
This is a convenience method that creates an instance of theOSInfo.Builder avoiding the need to
create one manually via OSInfo.builder().
When the Consumer completes, SdkBuilder.build() is called immediately and its result is
passed to osInfo(OSInfo).
osInfo - a consumer that will call methods on OSInfo.BuilderosInfo(OSInfo)Copyright © 2022. All rights reserved.