UNPKG

azure-cli

Version:

Microsoft Azure Cross Platform Command Line tool

54 lines (49 loc) 1.08 kB
/* * 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. */ 'use strict'; /** * A disk access SAS uri. * */ class AccessUri { /** * Create a AccessUri. * @member {string} [accessSAS] A SAS uri for accessing a disk. */ constructor() { } /** * Defines the metadata of AccessUri * * @returns {object} metadata of AccessUri * */ mapper() { return { required: false, serializedName: 'AccessUri', type: { name: 'Composite', className: 'AccessUri', modelProperties: { accessSAS: { required: false, readOnly: true, serializedName: 'properties.output.accessSAS', type: { name: 'String' } } } } }; } } module.exports = AccessUri;