azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
53 lines (48 loc) • 1.25 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.
*/
;
/**
* Compute-specific operation properties, including output
*
*/
class ComputeLongRunningOperationProperties {
/**
* Create a ComputeLongRunningOperationProperties.
* @member {object} [output] Operation output data (raw JSON)
*/
constructor() {
}
/**
* Defines the metadata of ComputeLongRunningOperationProperties
*
* @returns {object} metadata of ComputeLongRunningOperationProperties
*
*/
mapper() {
return {
required: false,
serializedName: 'ComputeLongRunningOperationProperties',
type: {
name: 'Composite',
className: 'ComputeLongRunningOperationProperties',
modelProperties: {
output: {
required: false,
serializedName: 'output',
type: {
name: 'Object'
}
}
}
}
};
}
}
module.exports = ComputeLongRunningOperationProperties;