UNPKG

azure-arm-datalake-analytics

Version:

Microsoft Azure Data Lake Analytics Management Client Library for node

136 lines (130 loc) 3.78 kB
/* * 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. */ 'use strict'; const models = require('./index'); /** * A Data Lake Analytics catalog U-SQL table partition item. * * @extends models['CatalogItem'] */ class USqlTablePartition extends models['CatalogItem'] { /** * Create a USqlTablePartition. * @member {string} [databaseName] the name of the database. * @member {string} [schemaName] the name of the schema associated with this * table partition and database. * @member {string} [name] the name of the table partition. * @member {object} [parentName] the Ddl object of the partition's parent. * @member {string} [parentName.firstPart] the name of the table associated * with this database and schema. * @member {string} [parentName.secondPart] the name of the table associated * with this database and schema. * @member {string} [parentName.thirdPart] the name of the table associated * with this database and schema. * @member {string} [parentName.server] the name of the table associated with * this database and schema. * @member {number} [indexId] the index ID for this partition. * @member {array} [label] the list of labels associated with this partition. * @member {date} [createDate] the creation time of the partition */ constructor() { super(); } /** * Defines the metadata of USqlTablePartition * * @returns {object} metadata of USqlTablePartition * */ mapper() { return { required: false, serializedName: 'USqlTablePartition', type: { name: 'Composite', className: 'USqlTablePartition', modelProperties: { computeAccountName: { required: false, serializedName: 'computeAccountName', type: { name: 'String' } }, version: { required: false, serializedName: 'version', type: { name: 'String' } }, databaseName: { required: false, serializedName: 'databaseName', type: { name: 'String' } }, schemaName: { required: false, serializedName: 'schemaName', type: { name: 'String' } }, name: { required: false, serializedName: 'partitionName', type: { name: 'String' } }, parentName: { required: false, serializedName: 'parentName', type: { name: 'Composite', className: 'DdlName' } }, indexId: { required: false, serializedName: 'indexId', type: { name: 'Number' } }, label: { required: false, serializedName: 'label', type: { name: 'Sequence', element: { required: false, serializedName: 'StringElementType', type: { name: 'String' } } } }, createDate: { required: false, serializedName: 'createDate', type: { name: 'DateTime' } } } } }; } } module.exports = USqlTablePartition;