Class ConfigServerSettingsValidateResultInner
- java.lang.Object
-
- com.azure.resourcemanager.appplatform.fluent.models.ConfigServerSettingsValidateResultInner
-
public final class ConfigServerSettingsValidateResultInner extends Object
Validation result for config server settings.
-
-
Constructor Summary
Constructors Constructor Description ConfigServerSettingsValidateResultInner()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ConfigServerSettingsErrorRecord>details()Get the details property: The detail validation results.BooleanisValid()Get the isValid property: Indicate if the config server settings are valid.voidvalidate()Validates the instance.ConfigServerSettingsValidateResultInnerwithDetails(List<ConfigServerSettingsErrorRecord> details)Set the details property: The detail validation results.ConfigServerSettingsValidateResultInnerwithIsValid(Boolean isValid)Set the isValid property: Indicate if the config server settings are valid.
-
-
-
Method Detail
-
isValid
public Boolean isValid()
Get the isValid property: Indicate if the config server settings are valid.- Returns:
- the isValid value.
-
withIsValid
public ConfigServerSettingsValidateResultInner withIsValid(Boolean isValid)
Set the isValid property: Indicate if the config server settings are valid.- Parameters:
isValid- the isValid value to set.- Returns:
- the ConfigServerSettingsValidateResultInner object itself.
-
details
public List<ConfigServerSettingsErrorRecord> details()
Get the details property: The detail validation results.- Returns:
- the details value.
-
withDetails
public ConfigServerSettingsValidateResultInner withDetails(List<ConfigServerSettingsErrorRecord> details)
Set the details property: The detail validation results.- Parameters:
details- the details value to set.- Returns:
- the ConfigServerSettingsValidateResultInner object itself.
-
validate
public void validate()
Validates the instance.- Throws:
IllegalArgumentException- thrown if the instance is not valid.
-
-