azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
73 lines (67 loc) • 1.84 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.
*/
;
const models = require('./index');
/**
* A Data Lake Analytics catalog entity identifier object.
*
*/
class EntityId {
/**
* Create a EntityId.
* @member {object} [name] the name of the external table associated with
* this database, schema and table.
* @member {string} [name.firstPart] the name of the table associated with
* this database and schema.
* @member {string} [name.secondPart] the name of the table associated with
* this database and schema.
* @member {string} [name.thirdPart] the name of the table associated with
* this database and schema.
* @member {string} [name.server] the name of the table associated with this
* database and schema.
* @member {uuid} [version] the version of the external data source.
*/
constructor() {
}
/**
* Defines the metadata of EntityId
*
* @returns {object} metadata of EntityId
*
*/
mapper() {
return {
required: false,
serializedName: 'EntityId',
type: {
name: 'Composite',
className: 'EntityId',
modelProperties: {
name: {
required: false,
serializedName: 'name',
type: {
name: 'Composite',
className: 'DdlName'
}
},
version: {
required: false,
serializedName: 'version',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = EntityId;