@Generated(value="OracleSDKGenerator", comments="API Version: 20190531") public final class Node extends Object
Details about a node.
Note: Objects should always be created or deserialized using the Node.Builder
. This model distinguishes fields
that are null
because they are unset from fields that are explicitly set to null
. This is done in
the setter methods of the Node.Builder
, which maintain a set of all explicitly set fields called
__explicitlySet__
. The hashCode()
and equals(Object)
methods are implemented to take
__explicitlySet__
into account. The constructor, on the other hand, does not set __explicitlySet__
(since the constructor cannot distinguish explicit null
from unset null
).
Modifier and Type | Class and Description |
---|---|
static class |
Node.Builder |
static class |
Node.LifecycleState
The state of the node.
|
static class |
Node.NodeType
Cluster node type.
|
Constructor and Description |
---|
Node(String instanceId,
String displayName,
Node.LifecycleState lifecycleState,
Node.NodeType nodeType,
String shape,
List<VolumeAttachmentDetail> attachedBlockVolumes,
String subnetId,
String ipAddress,
String hostname,
String imageId,
String sshFingerprint,
String availabilityDomain,
String faultDomain,
Date timeCreated,
Date timeUpdated,
Integer ocpus,
Integer memoryInGBs)
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
static Node.Builder |
builder()
Create a new builder.
|
boolean |
equals(Object o) |
Set<String> |
get__explicitlySet__() |
List<VolumeAttachmentDetail> |
getAttachedBlockVolumes()
The list of block volumes attached to a given node.
|
String |
getAvailabilityDomain()
The name of the availability domain in which the node is running.
|
String |
getDisplayName()
The name of the node.
|
String |
getFaultDomain()
The name of the fault domain in which the node is running.
|
String |
getHostname()
The fully-qualified hostname (FQDN) of the node.
|
String |
getImageId()
The OCID of the image from which the node was created.
|
String |
getInstanceId()
The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
|
String |
getIpAddress()
IP address of the node.
|
Node.LifecycleState |
getLifecycleState()
The state of the node.
|
Integer |
getMemoryInGBs()
The total amount of memory available to the node, in gigabytes.
|
Node.NodeType |
getNodeType()
Cluster node type.
|
Integer |
getOcpus()
The total number of OCPUs available to the node.
|
String |
getShape()
Shape of the node.
|
String |
getSshFingerprint()
The fingerprint of the SSH key used for node access.
|
String |
getSubnetId()
The OCID of the subnet in which the node is to be created.
|
Date |
getTimeCreated()
The time the node was created, shown as an RFC 3339 formatted datetime string.
|
Date |
getTimeUpdated()
The time the cluster was updated, shown as an RFC 3339 formatted datetime string.
|
int |
hashCode() |
Node.Builder |
toBuilder() |
String |
toString() |
@Deprecated @ConstructorProperties(value={"instanceId","displayName","lifecycleState","nodeType","shape","attachedBlockVolumes","subnetId","ipAddress","hostname","imageId","sshFingerprint","availabilityDomain","faultDomain","timeCreated","timeUpdated","ocpus","memoryInGBs"}) public Node(String instanceId, String displayName, Node.LifecycleState lifecycleState, Node.NodeType nodeType, String shape, List<VolumeAttachmentDetail> attachedBlockVolumes, String subnetId, String ipAddress, String hostname, String imageId, String sshFingerprint, String availabilityDomain, String faultDomain, Date timeCreated, Date timeUpdated, Integer ocpus, Integer memoryInGBs)
public static Node.Builder builder()
Create a new builder.
public Node.Builder toBuilder()
public String getInstanceId()
The OCID of the underlying Oracle Cloud Infrastructure Compute instance.
public String getDisplayName()
The name of the node.
public Node.LifecycleState getLifecycleState()
The state of the node.
public Node.NodeType getNodeType()
Cluster node type.
public String getShape()
Shape of the node.
public List<VolumeAttachmentDetail> getAttachedBlockVolumes()
The list of block volumes attached to a given node.
public String getSubnetId()
The OCID of the subnet in which the node is to be created.
public String getIpAddress()
IP address of the node.
public String getHostname()
The fully-qualified hostname (FQDN) of the node.
public String getImageId()
The OCID of the image from which the node was created.
public String getSshFingerprint()
The fingerprint of the SSH key used for node access.
public String getAvailabilityDomain()
The name of the availability domain in which the node is running.
public String getFaultDomain()
The name of the fault domain in which the node is running.
public Date getTimeCreated()
The time the node was created, shown as an RFC 3339 formatted datetime string.
public Date getTimeUpdated()
The time the cluster was updated, shown as an RFC 3339 formatted datetime string.
public Integer getOcpus()
The total number of OCPUs available to the node.
public Integer getMemoryInGBs()
The total amount of memory available to the node, in gigabytes.
Copyright © 2016–2022. All rights reserved.