azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
70 lines (65 loc) • 1.69 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.
*/
;
/**
* The List Virtual Machine operation response.
*/
class RunCommandListResult extends Array {
/**
* Create a RunCommandListResult.
* @member {string} [nextLink] The uri to fetch the next page of run
* commands. Call ListNext() with this to fetch the next page of run
* commands.
*/
constructor() {
super();
}
/**
* Defines the metadata of RunCommandListResult
*
* @returns {object} metadata of RunCommandListResult
*
*/
mapper() {
return {
required: false,
serializedName: 'RunCommandListResult',
type: {
name: 'Composite',
className: 'RunCommandListResult',
modelProperties: {
value: {
required: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'RunCommandDocumentBaseElementType',
type: {
name: 'Composite',
className: 'RunCommandDocumentBase'
}
}
}
},
nextLink: {
required: false,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = RunCommandListResult;