Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR sql/resource-manager] Fix set LTR policy example #2836

Merged
merged 1 commit into from
Jan 11, 2019
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 @@ -30,7 +30,7 @@ public interface LongTermRetentionBackups extends HasInner<LongTermRetentionBack
* Lists the long term retention backups for a given server.
*
* @param locationName The location of the database
* @param longTermRetentionServerName the String value
* @param longTermRetentionServerName The name of the server
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
*/
Expand All @@ -40,8 +40,8 @@ public interface LongTermRetentionBackups extends HasInner<LongTermRetentionBack
* Gets a long term retention backup.
*
* @param locationName The location of the database.
* @param longTermRetentionServerName the String value
* @param longTermRetentionDatabaseName the String value
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
Expand All @@ -52,8 +52,8 @@ public interface LongTermRetentionBackups extends HasInner<LongTermRetentionBack
* Lists all long term retention backups for a database.
*
* @param locationName The location of the database
* @param longTermRetentionServerName the String value
* @param longTermRetentionDatabaseName the String value
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
*/
Expand All @@ -63,8 +63,8 @@ public interface LongTermRetentionBackups extends HasInner<LongTermRetentionBack
* Deletes a long term retention backup.
*
* @param locationName The location of the database
* @param longTermRetentionServerName the String value
* @param longTermRetentionDatabaseName the String value
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @throws IllegalArgumentException thrown if parameters fail the validation
* @return the observable for the request
Expand Down
Loading