UNPKG

azure-arm-datalake-store

Version:

Microsoft Azure Data Lake Store Management Client Library for node

54 lines (49 loc) 1.26 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'; /** * The Key Vault update information used for user managed key rotation. * */ class UpdateKeyVaultMetaInfo { /** * Create a UpdateKeyVaultMetaInfo. * @property {string} [encryptionKeyVersion] The version of the user managed * encryption key to update through a key rotation. */ constructor() { } /** * Defines the metadata of UpdateKeyVaultMetaInfo * * @returns {object} metadata of UpdateKeyVaultMetaInfo * */ mapper() { return { required: false, serializedName: 'UpdateKeyVaultMetaInfo', type: { name: 'Composite', className: 'UpdateKeyVaultMetaInfo', modelProperties: { encryptionKeyVersion: { required: false, serializedName: 'encryptionKeyVersion', type: { name: 'String' } } } } }; } } module.exports = UpdateKeyVaultMetaInfo;