Domain Auto Tune Options
data class DomainAutoTuneOptions(val desiredState: String, val maintenanceSchedules: List<DomainAutoTuneOptionsMaintenanceSchedule>? = null, val rollbackOnDisable: String? = null)
Constructors
Link copied to clipboard
constructor(desiredState: String, maintenanceSchedules: List<DomainAutoTuneOptionsMaintenanceSchedule>? = null, rollbackOnDisable: String? = null)
Properties
Link copied to clipboard
The Auto-Tune desired state for the domain. Valid values: ENABLED
or DISABLED
.
Link copied to clipboard
Configuration block for Auto-Tune maintenance windows. Can be specified multiple times for each maintenance window. Detailed below.
Link copied to clipboard
Whether to roll back to default Auto-Tune settings when disabling Auto-Tune. Valid values: DEFAULT_ROLLBACK
or NO_ROLLBACK
.