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 4427304dc57f73fbeb012d11bffca3038ea2bf99 (#3064)
Updated Readme.md file
- Loading branch information
1 parent
6f25eaa
commit 6784e47
Showing
10 changed files
with
2,457 additions
and
1,870 deletions.
There are no files selected for viewing
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
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
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
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
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,64 @@ | ||
/* | ||
* 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'; | ||
|
||
const models = require('./index'); | ||
|
||
/** | ||
* Number of nodes based on the Filter | ||
* | ||
*/ | ||
class NodeCount { | ||
/** | ||
* Create a NodeCount. | ||
* @member {string} [name] Gets the name of a count type | ||
* @member {object} [properties] | ||
* @member {number} [properties.count] Gets the count for the name | ||
*/ | ||
constructor() { | ||
} | ||
|
||
/** | ||
* Defines the metadata of NodeCount | ||
* | ||
* @returns {object} metadata of NodeCount | ||
* | ||
*/ | ||
mapper() { | ||
return { | ||
required: false, | ||
serializedName: 'NodeCount', | ||
type: { | ||
name: 'Composite', | ||
className: 'NodeCount', | ||
modelProperties: { | ||
name: { | ||
required: false, | ||
serializedName: 'name', | ||
type: { | ||
name: 'String' | ||
} | ||
}, | ||
properties: { | ||
required: false, | ||
serializedName: 'properties', | ||
type: { | ||
name: 'Composite', | ||
className: 'NodeCountProperties' | ||
} | ||
} | ||
} | ||
} | ||
}; | ||
} | ||
} | ||
|
||
module.exports = NodeCount; |
Oops, something went wrong.