Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

Commit

Permalink
Merge pull request #3700 from Azure/restapi_auto_servicebus/resource-…
Browse files Browse the repository at this point in the history
…manager

[AutoPR] servicebus/resource-manager
  • Loading branch information
Dan Schulte authored Sep 26, 2018
2 parents 05172aa + 5301573 commit cc9653d
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 1 deletion.
4 changes: 4 additions & 0 deletions lib/services/serviceBusManagement2/lib/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -863,12 +863,16 @@ export interface ArmDisasterRecovery extends Resource {
* which has no entities, will be used for migration
* @member {string} postMigrationName Name to access Standard Namespace after
* migration
* @member {string} [migrationState] State in which Standard to Premium
* Migration is, possible values : Unknown, Reverting, Completing, Initiating,
* Syncing, Active
*/
export interface MigrationConfigProperties extends Resource {
readonly provisioningState?: string;
readonly pendingReplicationOperationsCount?: number;
targetNamespace: string;
postMigrationName: string;
readonly migrationState?: string;
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ class MigrationConfigProperties extends models['Resource'] {
* which has no entities, will be used for migration
* @member {string} postMigrationName Name to access Standard Namespace after
* migration
* @member {string} [migrationState] State in which Standard to Premium
* Migration is, possible values : Unknown, Reverting, Completing,
* Initiating, Syncing, Active
*/
constructor() {
super();
Expand Down Expand Up @@ -100,6 +103,14 @@ class MigrationConfigProperties extends models['Resource'] {
type: {
name: 'String'
}
},
migrationState: {
required: false,
readOnly: true,
serializedName: 'properties.migrationState',
type: {
name: 'String'
}
}
}
}
Expand Down
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.3.0-preview",
"version": "2.4.0",
"dependencies": {
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5"
Expand Down

0 comments on commit cc9653d

Please sign in to comment.