azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
64 lines (58 loc) • 1.75 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 a virtual machine scale set network profile.
*
*/
class VirtualMachineScaleSetUpdateNetworkProfile {
/**
* Create a VirtualMachineScaleSetUpdateNetworkProfile.
* @member {array} [networkInterfaceConfigurations] The list of network
* configurations.
*/
constructor() {
}
/**
* Defines the metadata of VirtualMachineScaleSetUpdateNetworkProfile
*
* @returns {object} metadata of VirtualMachineScaleSetUpdateNetworkProfile
*
*/
mapper() {
return {
required: false,
serializedName: 'VirtualMachineScaleSetUpdateNetworkProfile',
type: {
name: 'Composite',
className: 'VirtualMachineScaleSetUpdateNetworkProfile',
modelProperties: {
networkInterfaceConfigurations: {
required: false,
serializedName: 'networkInterfaceConfigurations',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'VirtualMachineScaleSetUpdateNetworkConfigurationElementType',
type: {
name: 'Composite',
className: 'VirtualMachineScaleSetUpdateNetworkConfiguration'
}
}
}
}
}
}
};
}
}
module.exports = VirtualMachineScaleSetUpdateNetworkProfile;