azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
64 lines (58 loc) • 1.46 kB
JavaScript
/*
* 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.
*/
;
const models = require('./index');
/**
* Describes Windows Remote Management configuration of the VM
*
*/
class WinRMConfiguration {
/**
* Create a WinRMConfiguration.
* @member {array} [listeners] The list of Windows Remote Management
* listeners
*/
constructor() {
}
/**
* Defines the metadata of WinRMConfiguration
*
* @returns {object} metadata of WinRMConfiguration
*
*/
mapper() {
return {
required: false,
serializedName: 'WinRMConfiguration',
type: {
name: 'Composite',
className: 'WinRMConfiguration',
modelProperties: {
listeners: {
required: false,
serializedName: 'listeners',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'WinRMListenerElementType',
type: {
name: 'Composite',
className: 'WinRMListener'
}
}
}
}
}
}
};
}
}
module.exports = WinRMConfiguration;