azure-arm-datalake-store
Version:
Microsoft Azure Data Lake Store Management Client Library for node
70 lines (65 loc) • 1.67 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.
*/
;
/**
* Data Lake Store firewall rule list information.
*/
class FirewallRuleListResult extends Array {
/**
* Create a FirewallRuleListResult.
* @property {string} [nextLink] The link (url) to the next page of results.
*/
constructor() {
super();
}
/**
* Defines the metadata of FirewallRuleListResult
*
* @returns {object} metadata of FirewallRuleListResult
*
*/
mapper() {
return {
required: false,
serializedName: 'FirewallRuleListResult',
type: {
name: 'Composite',
className: 'FirewallRuleListResult',
modelProperties: {
value: {
required: false,
readOnly: true,
serializedName: '',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'FirewallRuleElementType',
type: {
name: 'Composite',
className: 'FirewallRule'
}
}
}
},
nextLink: {
required: false,
readOnly: true,
serializedName: 'nextLink',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = FirewallRuleListResult;