azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
62 lines (57 loc) • 1.35 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 table column item.
*
*/
class USqlTableColumn {
/**
* Create a USqlTableColumn.
* @member {string} [name] the name of the column in the table.
* @member {string} [type] the object type of the specified column (such as
* System.String).
*/
constructor() {
}
/**
* Defines the metadata of USqlTableColumn
*
* @returns {object} metadata of USqlTableColumn
*
*/
mapper() {
return {
required: false,
serializedName: 'USqlTableColumn',
type: {
name: 'Composite',
className: 'USqlTableColumn',
modelProperties: {
name: {
required: false,
serializedName: 'name',
type: {
name: 'String'
}
},
type: {
required: false,
serializedName: 'type',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = USqlTableColumn;