Class RepairFreeipaRequest
- java.lang.Object
-
- com.cloudera.cdp.environments.model.RepairFreeipaRequest
-
@Generated(value="com.cloudera.cdp.client.codegen.CdpSDKJavaCodegen", date="2023-09-14T10:47:18.529-07:00") public class RepairFreeipaRequest extends Object
Request object for repairing the FreeIPA servers.
-
-
Constructor Summary
Constructors Constructor Description RepairFreeipaRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
String
getEnvironmentName()
Getter for environmentName.Boolean
getForce()
Getter for force.List<String>
getInstances()
Getter for instances.String
getRepairType()
Getter for repairType.int
hashCode()
void
setEnvironmentName(String environmentName)
Setter for environmentName.void
setForce(Boolean force)
Setter for force.void
setInstances(List<String> instances)
Setter for instances.void
setRepairType(String repairType)
Setter for repairType.String
toString()
-
-
-
Method Detail
-
getEnvironmentName
public String getEnvironmentName()
Getter for environmentName. The environment name or CRN of the FreeIPA to repair
-
setEnvironmentName
public void setEnvironmentName(String environmentName)
Setter for environmentName. The environment name or CRN of the FreeIPA to repair
-
getForce
public Boolean getForce()
Getter for force. Force the repair even if the status if the FreeIPA nodes are good.
-
setForce
public void setForce(Boolean force)
Setter for force. Force the repair even if the status if the FreeIPA nodes are good.
-
getInstances
public List<String> getInstances()
Getter for instances. The instance Ids to repair. If not provided then all instances are looked at for repair.
-
setInstances
public void setInstances(List<String> instances)
Setter for instances. The instance Ids to repair. If not provided then all instances are looked at for repair.
-
getRepairType
public String getRepairType()
Getter for repairType. The type of FreeIPA repair to perform. * AUTO - Currently, this is the same as reboot but this may change in the future. * REBOOT - Repair the failed instances by rebooting them. * REBUILD - Repair the failed instances by deleting them and creating new instances, then replicate data from an existing instance to the new instances.
-
setRepairType
public void setRepairType(String repairType)
Setter for repairType. The type of FreeIPA repair to perform. * AUTO - Currently, this is the same as reboot but this may change in the future. * REBOOT - Repair the failed instances by rebooting them. * REBUILD - Repair the failed instances by deleting them and creating new instances, then replicate data from an existing instance to the new instances.
-
-