Package com.cloudera.cdp.datahub.model
Class InstanceGroup
- java.lang.Object
-
- com.cloudera.cdp.datahub.model.InstanceGroup
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-01-18T15:00:48.185-08:00") public class InstanceGroup extends Object
The type of the instance group which also contains the actual instance(s)
-
-
Constructor Summary
Constructors Constructor Description InstanceGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<Instance>
getInstances()
Getter for instances.String
getName()
Getter for name.int
hashCode()
void
setInstances(List<Instance> instances)
Setter for instances.void
setName(String name)
Setter for name.String
toString()
-
-
-
Method Detail
-
getName
public String getName()
Getter for name. The name of the instance group where the given instance is located.
-
setName
public void setName(String name)
Setter for name. The name of the instance group where the given instance is located.
-
getInstances
public List<Instance> getInstances()
Getter for instances. Some information about the given instance.
-
setInstances
public void setInstances(List<Instance> instances)
Setter for instances. Some information about the given instance.
-
-