Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* 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';

/**
* Namespace Migrate Object
*
*/
class SBNamespaceMigrate {
/**
* Create a SBNamespaceMigrate.
* @member {string} targetNamespaceType Type of namespaces. Possible values
* include: 'Messaging', 'NotificationHub', 'Mixed', 'EventHub', 'Relay'
*/
constructor() {
}

/**
* Defines the metadata of SBNamespaceMigrate
*
* @returns {object} metadata of SBNamespaceMigrate
*
*/
mapper() {
return {
required: false,
serializedName: 'SBNamespaceMigrate',
type: {
name: 'Composite',
className: 'SBNamespaceMigrate',
modelProperties: {
targetNamespaceType: {
required: true,
serializedName: 'targetNamespaceType',
type: {
name: 'Enum',
allowedValues: [ 'Messaging', 'NotificationHub', 'Mixed', 'EventHub', 'Relay' ]
}
}
}
}
};
}
}

module.exports = SBNamespaceMigrate;
2 changes: 1 addition & 1 deletion lib/services/serviceBusManagement2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-arm-sb",
"author": "Microsoft Corporation",
"description": "ServiceBusManagementClient Library with typescript type definitions for node",
"version": "2.5.0",
"version": "2.6.0",
"dependencies": {
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5"
Expand Down