Skip to content

Commit

Permalink
Generated from d82d1491879729cdf44da9a664e815112acde158 (#922)
Browse files Browse the repository at this point in the history
Fix set LTR policy example
  • Loading branch information
AutorestCI authored Jan 11, 2019
1 parent 11a9f52 commit 5261dc4
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packages/@azure/arm-sql/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2019 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
38 changes: 19 additions & 19 deletions packages/@azure/arm-sql/lib/operations/longTermRetentionBackups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ export class LongTermRetentionBackups {
/**
* Gets a long term retention backup.
* @param locationName The location of the database.
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @param [options] The optional parameters
* @returns Promise<Models.LongTermRetentionBackupsGetResponse>
*/
get(locationName: string, longTermRetentionServerName: string, longTermRetentionDatabaseName: string, backupName: string, options?: msRest.RequestOptionsBase): Promise<Models.LongTermRetentionBackupsGetResponse>;
/**
* @param locationName The location of the database.
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @param callback The callback
*/
get(locationName: string, longTermRetentionServerName: string, longTermRetentionDatabaseName: string, backupName: string, callback: msRest.ServiceCallback<Models.LongTermRetentionBackup>): void;
/**
* @param locationName The location of the database.
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @param options The optional parameters
* @param callback The callback
Expand All @@ -70,8 +70,8 @@ export class LongTermRetentionBackups {
/**
* Deletes a long term retention backup.
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @param [options] The optional parameters
* @returns Promise<msRest.RestResponse>
Expand All @@ -84,23 +84,23 @@ export class LongTermRetentionBackups {
/**
* Lists all long term retention backups for a database.
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param [options] The optional parameters
* @returns Promise<Models.LongTermRetentionBackupsListByDatabaseResponse>
*/
listByDatabase(locationName: string, longTermRetentionServerName: string, longTermRetentionDatabaseName: string, options?: Models.LongTermRetentionBackupsListByDatabaseOptionalParams): Promise<Models.LongTermRetentionBackupsListByDatabaseResponse>;
/**
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param callback The callback
*/
listByDatabase(locationName: string, longTermRetentionServerName: string, longTermRetentionDatabaseName: string, callback: msRest.ServiceCallback<Models.LongTermRetentionBackupListResult>): void;
/**
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param options The optional parameters
* @param callback The callback
*/
Expand Down Expand Up @@ -148,20 +148,20 @@ export class LongTermRetentionBackups {
/**
* Lists the long term retention backups for a given server.
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionServerName The name of the server
* @param [options] The optional parameters
* @returns Promise<Models.LongTermRetentionBackupsListByServerResponse>
*/
listByServer(locationName: string, longTermRetentionServerName: string, options?: Models.LongTermRetentionBackupsListByServerOptionalParams): Promise<Models.LongTermRetentionBackupsListByServerResponse>;
/**
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionServerName The name of the server
* @param callback The callback
*/
listByServer(locationName: string, longTermRetentionServerName: string, callback: msRest.ServiceCallback<Models.LongTermRetentionBackupListResult>): void;
/**
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionServerName The name of the server
* @param options The optional parameters
* @param callback The callback
*/
Expand All @@ -180,8 +180,8 @@ export class LongTermRetentionBackups {
/**
* Deletes a long term retention backup.
* @param locationName The location of the database
* @param longTermRetentionServerName
* @param longTermRetentionDatabaseName
* @param longTermRetentionServerName The name of the server
* @param longTermRetentionDatabaseName The name of the database
* @param backupName The backup name.
* @param [options] The optional parameters
* @returns Promise<msRestAzure.LROPoller>
Expand Down

0 comments on commit 5261dc4

Please sign in to comment.