azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
61 lines (56 loc) • 1.37 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.
*/
;
/**
* Describes the properties of a run command parameter.
*
*/
class RunCommandInputParameter {
/**
* Create a RunCommandInputParameter.
* @member {string} name The run command parameter name.
* @member {string} value The run command parameter value.
*/
constructor() {
}
/**
* Defines the metadata of RunCommandInputParameter
*
* @returns {object} metadata of RunCommandInputParameter
*
*/
mapper() {
return {
required: false,
serializedName: 'RunCommandInputParameter',
type: {
name: 'Composite',
className: 'RunCommandInputParameter',
modelProperties: {
name: {
required: true,
serializedName: 'name',
type: {
name: 'String'
}
},
value: {
required: true,
serializedName: 'value',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = RunCommandInputParameter;