azure-arm-datalake-analytics
Version:
Microsoft Azure Data Lake Analytics Management Client Library for node
96 lines (90 loc) • 2.24 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 U-SQL view item.
*
* @extends models['CatalogItem']
*/
class USqlView extends models['CatalogItem'] {
/**
* Create a USqlView.
* @member {string} [databaseName] the name of the database.
* @member {string} [schemaName] the name of the schema associated with this
* view and database.
* @member {string} [name] the name of the view.
* @member {string} [definition] the defined query of the view.
*/
constructor() {
super();
}
/**
* Defines the metadata of USqlView
*
* @returns {object} metadata of USqlView
*
*/
mapper() {
return {
required: false,
serializedName: 'USqlView',
type: {
name: 'Composite',
className: 'USqlView',
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: 'viewName',
type: {
name: 'String'
}
},
definition: {
required: false,
serializedName: 'definition',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = USqlView;