azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
68 lines (63 loc) • 1.49 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.
*/
;
/**
* A Data Lake Analytics catalog U-SQL view item list.
*/
class USqlViewList extends Array {
/**
* Create a USqlViewList.
*/
constructor() {
super();
}
/**
* Defines the metadata of USqlViewList
*
* @returns {object} metadata of USqlViewList
*
*/
mapper() {
return {
required: false,
serializedName: 'USqlViewList',
type: {
name: 'Composite',
className: 'USqlViewList',
modelProperties: {
nextLink: {
required: false,
serializedName: 'nextLink',
type: {
name: 'String'
}
},
value: {
required: false,
readOnly: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'USqlViewElementType',
type: {
name: 'Composite',
className: 'USqlView'
}
}
}
}
}
}
};
}
}
module.exports = USqlViewList;