Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public class AutomaticTuningOptions {
private AutomaticTuningDisabledReason reasonDesc;

/**
* Get the desiredState value.
* Get automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'.
*
* @return the desiredState value
*/
Expand All @@ -53,7 +53,7 @@ public AutomaticTuningOptionModeDesired desiredState() {
}

/**
* Set the desiredState value.
* Set automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'.
*
* @param desiredState the desiredState value to set
* @return the AutomaticTuningOptions object itself.
Expand All @@ -64,7 +64,7 @@ public AutomaticTuningOptions withDesiredState(AutomaticTuningOptionModeDesired
}

/**
* Get the actualState value.
* Get automatic tuning option actual state. Possible values include: 'Off', 'On'.
*
* @return the actualState value
*/
Expand All @@ -73,7 +73,7 @@ public AutomaticTuningOptionModeActual actualState() {
}

/**
* Get the reasonCode value.
* Get reason code if desired and actual state are different.
*
* @return the reasonCode value
*/
Expand All @@ -82,7 +82,7 @@ public Integer reasonCode() {
}

/**
* Get the reasonDesc value.
* Get reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured', 'InheritedFromServer', 'QueryStoreOff', 'QueryStoreReadOnly', 'NotSupported'.
*
* @return the reasonDesc value
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public class AutomaticTuningServerOptions {
private AutomaticTuningServerReason reasonDesc;

/**
* Get the desiredState value.
* Get automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'.
*
* @return the desiredState value
*/
Expand All @@ -51,7 +51,7 @@ public AutomaticTuningOptionModeDesired desiredState() {
}

/**
* Set the desiredState value.
* Set automatic tuning option desired state. Possible values include: 'Off', 'On', 'Default'.
*
* @param desiredState the desiredState value to set
* @return the AutomaticTuningServerOptions object itself.
Expand All @@ -62,7 +62,7 @@ public AutomaticTuningServerOptions withDesiredState(AutomaticTuningOptionModeDe
}

/**
* Get the actualState value.
* Get automatic tuning option actual state. Possible values include: 'Off', 'On'.
*
* @return the actualState value
*/
Expand All @@ -71,7 +71,7 @@ public AutomaticTuningOptionModeActual actualState() {
}

/**
* Get the reasonCode value.
* Get reason code if desired and actual state are different.
*
* @return the reasonCode value
*/
Expand All @@ -80,7 +80,7 @@ public Integer reasonCode() {
}

/**
* Get the reasonDesc value.
* Get reason description if desired and actual state are different. Possible values include: 'Default', 'Disabled', 'AutoConfigured'.
*
* @return the reasonDesc value
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,14 @@ public class CheckNameAvailabilityRequest {

/**
* Creates an instance of CheckNameAvailabilityRequest class.
* @param name the name whose availability is to be checked.
*/
public CheckNameAvailabilityRequest() {
type = "Microsoft.Sql/servers";
}

/**
* Get the name value.
* Get the name whose availability is to be checked.
*
* @return the name value
*/
Expand All @@ -44,7 +45,7 @@ public String name() {
}

/**
* Set the name value.
* Set the name whose availability is to be checked.
*
* @param name the name value to set
* @return the CheckNameAvailabilityRequest object itself.
Expand All @@ -55,7 +56,7 @@ public CheckNameAvailabilityRequest withName(String name) {
}

/**
* Get the type value.
* Get the type of resource that is used as the scope of the availability check.
*
* @return the type value
*/
Expand All @@ -64,7 +65,7 @@ public String type() {
}

/**
* Set the type value.
* Set the type of resource that is used as the scope of the availability check.
*
* @param type the type value to set
* @return the CheckNameAvailabilityRequest object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class CompleteDatabaseRestoreDefinition {
private String lastBackupName;

/**
* Get the lastBackupName value.
* Get the last backup name to apply.
*
* @return the lastBackupName value
*/
Expand All @@ -31,7 +31,7 @@ public String lastBackupName() {
}

/**
* Set the lastBackupName value.
* Set the last backup name to apply.
*
* @param lastBackupName the lastBackupName value to set
* @return the CompleteDatabaseRestoreDefinition object itself.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class CreateDatabaseRestorePointDefinition {
private String restorePointLabel;

/**
* Get the restorePointLabel value.
* Get the restore point label to apply.
*
* @return the restorePointLabel value
*/
Expand All @@ -31,7 +31,7 @@ public String restorePointLabel() {
}

/**
* Set the restorePointLabel value.
* Set the restore point label to apply.
*
* @param restorePointLabel the restorePointLabel value to set
* @return the CreateDatabaseRestorePointDefinition object itself.
Expand Down
Loading