Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Generated from d08c7f54a125819caaa8c5f553206d1adbae60f9 (#2753)
Browse files Browse the repository at this point in the history
updating version so .net files will generate
  • Loading branch information
AutorestCI authored Apr 18, 2018
1 parent ae54873 commit 65b9319
Show file tree
Hide file tree
Showing 22 changed files with 15,566 additions and 2,542 deletions.
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;
Loading

0 comments on commit 65b9319

Please sign in to comment.