com.azure.resourcemanager.databoxedge.models.Node Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.databoxedge.models;
import com.azure.resourcemanager.databoxedge.fluent.models.NodeInner;
/**
* An immutable client-side representation of Node.
*/
public interface Node {
/**
* Gets the id property: Fully qualified resource Id for the resource.
*
* @return the id value.
*/
String id();
/**
* Gets the name property: The name of the resource.
*
* @return the name value.
*/
String name();
/**
* Gets the type property: The type of the resource.
*
* @return the type value.
*/
String type();
/**
* Gets the nodeStatus property: The current status of the individual node.
*
* @return the nodeStatus value.
*/
NodeStatus nodeStatus();
/**
* Gets the nodeChassisSerialNumber property: Serial number of the Chassis.
*
* @return the nodeChassisSerialNumber value.
*/
String nodeChassisSerialNumber();
/**
* Gets the nodeSerialNumber property: Serial number of the individual node.
*
* @return the nodeSerialNumber value.
*/
String nodeSerialNumber();
/**
* Gets the nodeDisplayName property: Display Name of the individual node.
*
* @return the nodeDisplayName value.
*/
String nodeDisplayName();
/**
* Gets the nodeFriendlySoftwareVersion property: Friendly software version name that is currently installed on the
* node.
*
* @return the nodeFriendlySoftwareVersion value.
*/
String nodeFriendlySoftwareVersion();
/**
* Gets the nodeHcsVersion property: HCS version that is currently installed on the node.
*
* @return the nodeHcsVersion value.
*/
String nodeHcsVersion();
/**
* Gets the nodeInstanceId property: Guid instance id of the node.
*
* @return the nodeInstanceId value.
*/
String nodeInstanceId();
/**
* Gets the inner com.azure.resourcemanager.databoxedge.fluent.models.NodeInner object.
*
* @return the inner object.
*/
NodeInner innerModel();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy