This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 567
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generated from d08c7f54a125819caaa8c5f553206d1adbae60f9 (#2753)
updating version so .net files will generate
- Loading branch information
1 parent
ae54873
commit 65b9319
Showing
22 changed files
with
15,566 additions
and
2,542 deletions.
There are no files selected for viewing
53 changes: 53 additions & 0 deletions
53
lib/services/sqlManagement2/lib/models/completeDatabaseRestoreDefinition.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
/* | ||
* Copyright (c) Microsoft Corporation. All rights reserved. | ||
* Licensed under the MIT License. See License.txt in the project root for | ||
* license information. | ||
* | ||
* Code generated by Microsoft (R) AutoRest Code Generator. | ||
* Changes may cause incorrect behavior and will be lost if the code is | ||
* regenerated. | ||
*/ | ||
|
||
'use strict'; | ||
|
||
/** | ||
* Contains the information necessary to perform a complete database restore | ||
* operation. | ||
* | ||
*/ | ||
class CompleteDatabaseRestoreDefinition { | ||
/** | ||
* Create a CompleteDatabaseRestoreDefinition. | ||
* @member {string} lastBackupName The last backup name to apply | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of CompleteDatabaseRestoreDefinition | ||
* | ||
* @returns {object} metadata of CompleteDatabaseRestoreDefinition | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'CompleteDatabaseRestoreDefinition', | ||
type: { | ||
name: 'Composite', | ||
className: 'CompleteDatabaseRestoreDefinition', | ||
modelProperties: { | ||
lastBackupName: { | ||
required: true, | ||
serializedName: 'lastBackupName', | ||
type: { | ||
name: 'String' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = CompleteDatabaseRestoreDefinition; |
Oops, something went wrong.