azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
81 lines (76 loc) • 1.88 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 DDL name item.
*
*/
class DdlName {
/**
* Create a DdlName.
* @member {string} [firstPart] the name of the table associated with this
* database and schema.
* @member {string} [secondPart] the name of the table associated with this
* database and schema.
* @member {string} [thirdPart] the name of the table associated with this
* database and schema.
* @member {string} [server] the name of the table associated with this
* database and schema.
*/
constructor() {
}
/**
* Defines the metadata of DdlName
*
* @returns {object} metadata of DdlName
*
*/
mapper() {
return {
required: false,
serializedName: 'DdlName',
type: {
name: 'Composite',
className: 'DdlName',
modelProperties: {
firstPart: {
required: false,
serializedName: 'firstPart',
type: {
name: 'String'
}
},
secondPart: {
required: false,
serializedName: 'secondPart',
type: {
name: 'String'
}
},
thirdPart: {
required: false,
serializedName: 'thirdPart',
type: {
name: 'String'
}
},
server: {
required: false,
serializedName: 'server',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DdlName;