Skip to content

Commit a5f2a7d

Browse files
authored
Merge pull request #5429 from cormacpayne/sb-eh-release
Prepare EventHub and ServiceBus for release
2 parents 7538f48 + 7f4a0e2 commit a5f2a7d

File tree

9 files changed

+9408
-2624
lines changed

9 files changed

+9408
-2624
lines changed

src/ResourceManager/EventHub/AzureRM.EventHub.psd1

Lines changed: 34 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/22/2018
6+
# Generated on: 2/1/2018
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.5.1'
15+
ModuleVersion = '0.6.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -72,22 +72,25 @@ NestedModules = @('.\Microsoft.Azure.Commands.EventHub.dll')
7272
FunctionsToExport = @()
7373

7474
# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
75+
CmdletsToExport = 'New-AzureRmEventHubNamespace', 'Get-AzureRmEventHubNamespace',
76+
'Set-AzureRmEventHubNamespace', 'Remove-AzureRmEventHubNamespace',
77+
'New-AzureRmEventHubAuthorizationRule',
78+
'Get-AzureRmEventHubAuthorizationRule',
79+
'Set-AzureRmEventHubAuthorizationRule',
80+
'Remove-AzureRmEventHubAuthorizationRule', 'Get-AzureRmEventHubKey',
81+
'New-AzureRmEventHubKey', 'New-AzureRmEventHub',
82+
'Get-AzureRmEventHub', 'Set-AzureRmEventHub',
83+
'Remove-AzureRmEventHub', 'New-AzureRmEventHubConsumerGroup',
84+
'Get-AzureRmEventHubConsumerGroup',
85+
'Set-AzureRmEventHubConsumerGroup',
86+
'Remove-AzureRmEventHubConsumerGroup',
87+
'New-AzureRmEventHubGeoDRConfiguration',
88+
'Get-AzureRmEventHubGeoDRConfiguration',
89+
'Remove-AzureRmEventHubGeoDRConfiguration',
90+
'Set-AzureRmEventHubGeoDRConfigurationBreakPair',
91+
'Set-AzureRmEventHubGeoDRConfigurationFailOver',
92+
'Test-AzureRmEventHubName'
7593

76-
CmdletsToExport = 'New-AzureRmEventHubNamespace', 'Get-AzureRmEventHubNamespace',
77-
'Set-AzureRmEventHubNamespace', 'Remove-AzureRmEventHubNamespace',
78-
'New-AzureRmEventHubAuthorizationRule',
79-
'Get-AzureRmEventHubAuthorizationRule',
80-
'Set-AzureRmEventHubAuthorizationRule',
81-
'Remove-AzureRmEventHubAuthorizationRule', 'Get-AzureRmEventHubKey',
82-
'New-AzureRmEventHubKey', 'New-AzureRmEventHub',
83-
'Get-AzureRmEventHub', 'Set-AzureRmEventHub',
84-
'Remove-AzureRmEventHub', 'New-AzureRmEventHubConsumerGroup',
85-
'Get-AzureRmEventHubConsumerGroup',
86-
'Set-AzureRmEventHubConsumerGroup',
87-
'Remove-AzureRmEventHubConsumerGroup', 'New-AzureRmEventHubGeoDRConfiguration', 'Get-AzureRmEventHubGeoDRConfiguration', 'Remove-AzureRmEventHubGeoDRConfiguration',
88-
'Set-AzureRmEventHubGeoDRConfigurationBreakPair', 'Set-AzureRmEventHubGeoDRConfigurationFailOver',
89-
'Test-AzureRmEventHubName'
90-
9194
# Variables to export from this module
9295
# VariablesToExport = @()
9396

@@ -121,8 +124,20 @@ PrivateData = @{
121124
# IconUri = ''
122125

123126
# ReleaseNotes of this module
124-
ReleaseNotes = '* Added Location Completer to -Location parameters allowing tab completion through valid Locations
125-
* Added ResourceGroup Completer to -ResourceGroup parameters allowing tab completion through resource groups in current subscription'
127+
ReleaseNotes = '* Added below new commands for Geo Disaster Recovery operations.
128+
-Creating a new Alias(Disaster Recovery configuration):
129+
- New-AzureRmEventHubGeoDRConfiguration [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]
130+
-Retrieve Alias(Disaster Recovery configuration) :
131+
- Get-AzureRmEventHubGeoDRConfiguration [-ResourceGroupName] <String> [-Namespace] <String> [[-Name] <String>]
132+
-Disabling the Disaster Recovery and stops replicating changes from primary to secondary namespaces
133+
- Set-AzureRmEventHubGeoDRConfigurationBreakPair [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String>
134+
-Invoking Disaster Recovery failover and reconfigure the alias to point to the secondary namespace
135+
- Set-AzureRmEventHubGeoDRConfigurationFailOver [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String>
136+
-Deleting an Alias(Disaster Recovery configuration)
137+
- Remove-AzureRmEventHubGeoDRConfiguration [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-WhatIf] [-Confirm]
138+
* Added below new commands for checking the Namespace Name and GeoDr Configuration Name - Alias availability.
139+
-Check the Availability of Namespace name or Alias(Disaster Recovery configuration) name:
140+
- Test-AzureRmEventHubName [-ResourceGroupName] <String> [-Namespace] <String> [-AliasName] <String>'
126141

127142
# Prerelease string of this module
128143
# Prerelease = ''

src/ResourceManager/EventHub/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020
## Current Release
2121

22+
## Version 0.6.0
2223
* Added below new commands for Geo Disaster Recovery operations.
2324
-Creating a new Alias(Disaster Recovery configuration):
2425
- New-AzureRmEventHubGeoDRConfiguration [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]

src/ResourceManager/EventHub/Commands.EventHub/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("3ea250fe-7987-426b-8ca0-2dd65deda73c")]
28-
[assembly: AssemblyVersion("0.5.1")]
29-
[assembly: AssemblyFileVersion("0.5.1")]
28+
[assembly: AssemblyVersion("0.6.0")]
29+
[assembly: AssemblyFileVersion("0.6.0")]

src/ResourceManager/ServiceBus/AzureRM.ServiceBus.psd1

Lines changed: 26 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 1/22/2018
6+
# Generated on: 2/1/2018
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.5.1'
15+
ModuleVersion = '0.6.0'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -87,12 +87,16 @@ CmdletsToExport = 'New-AzureRmServiceBusNamespace', 'Get-AzureRmServiceBusNamesp
8787
'Get-AzureRmServiceBusAuthorizationRule',
8888
'Set-AzureRmServiceBusAuthorizationRule',
8989
'Remove-AzureRmServiceBusAuthorizationRule',
90-
'New-AzureRmServiceBusKey', 'Get-AzureRmServiceBusKey', 'Get-AzureRmServiceBusOperation',
91-
'New-AzureRmServiceBusRule', 'Get-AzureRmServiceBusRule',
92-
'Set-AzureRmServiceBusRule', 'Remove-AzureRmServiceBusRule',
93-
'New-AzureRmServiceBusGeoDRConfiguration','Get-AzureRmServiceBusGeoDRConfiguration',
94-
'Remove-AzureRmServiceBusGeoDRConfiguration',
95-
'Set-AzureRmServiceBusGeoDRConfigurationBreakPair', 'Set-AzureRmServiceBusGeoDRConfigurationFailOver', 'Test-AzureRmServiceBusName'
90+
'New-AzureRmServiceBusKey', 'Get-AzureRmServiceBusKey',
91+
'Get-AzureRmServiceBusOperation', 'New-AzureRmServiceBusRule',
92+
'Get-AzureRmServiceBusRule', 'Set-AzureRmServiceBusRule',
93+
'Remove-AzureRmServiceBusRule',
94+
'New-AzureRmServiceBusGeoDRConfiguration',
95+
'Get-AzureRmServiceBusGeoDRConfiguration',
96+
'Remove-AzureRmServiceBusGeoDRConfiguration',
97+
'Set-AzureRmServiceBusGeoDRConfigurationBreakPair',
98+
'Set-AzureRmServiceBusGeoDRConfigurationFailOver',
99+
'Test-AzureRmServiceBusName'
96100

97101
# Variables to export from this module
98102
# VariablesToExport = @()
@@ -127,8 +131,20 @@ PrivateData = @{
127131
# IconUri = ''
128132

129133
# ReleaseNotes of this module
130-
ReleaseNotes = '* Added Location Completer to -Location parameters allowing tab completion through valid Locations
131-
* Added ResourceGroup Completer to -ResourceGroup parameters allowing tab completion through resource groups in current subscription'
134+
ReleaseNotes = '* Added below new commandlets for Geo Disaster Recovery operations.
135+
-Creating a new Alias(Disaster Recovery configuration):
136+
- New-AzureRmServiceBusDRConfigurations [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]
137+
-Retrieve Alias(Disaster Recovery configuration) :
138+
- Get-AzureRmServiceBusDRConfigurations [-ResourceGroupName] <String> [-Namespace] <String> [[-Name] <String>]
139+
-Disabling the Disaster Recovery and stops replicating changes from primary to secondary namespaces
140+
- Set-AzureRmServiceBusDRConfigurationsBreakPairing [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String>
141+
-Invoking Disaster Recovery failover and reconfigure the alias to point to the secondary namespace
142+
- Set-AzureRmServiceBusDRConfigurationsFailOver [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String>
143+
-Deleting an Alias(Disaster Recovery configuration)
144+
- Remove-AzureRmServiceBusDRConfigurations [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-WhatIf] [-Confirm]
145+
* Updated Test-AzureRmServiceBusName commandlets to support Geo Disaster Recovery - Alias name check availability operations.
146+
-Check the Availability of Namespace name or Alias(Disaster Recovery configuration) name:
147+
- Test-AzureRmServiceBusName [-ResourceGroupName] <String> [-Namespace] <String> [-AliasName] <String> [-DefaultProfile <IAzureContextContainer>] [<CommonParameters>]'
132148

133149
# Prerelease string of this module
134150
# Prerelease = ''

src/ResourceManager/ServiceBus/ChangeLog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
-->
2121
## Current Release
2222

23+
## Version 0.6.0
2324
* Added below new commandlets for Geo Disaster Recovery operations.
2425
-Creating a new Alias(Disaster Recovery configuration):
2526
- New-AzureRmServiceBusDRConfigurations [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]

src/ResourceManager/ServiceBus/Commands.ServiceBus/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
[assembly: ComVisible(false)]
2626
[assembly: CLSCompliant(false)]
2727
[assembly: Guid("3ea250fe-7987-426b-8ca0-2dd65deda73c")]
28-
[assembly: AssemblyVersion("0.5.1")]
29-
[assembly: AssemblyFileVersion("0.5.1")]
28+
[assembly: AssemblyVersion("0.6.0")]
29+
[assembly: AssemblyFileVersion("0.6.0")]

tools/AzureRM/AzureRM.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0';
7474
@{ModuleName = 'AzureRM.DevTestLabs'; RequiredVersion = '4.0.1'; },
7575
@{ModuleName = 'AzureRM.Dns'; RequiredVersion = '4.0.1'; },
7676
@{ModuleName = 'AzureRM.EventGrid'; RequiredVersion = '0.3.0'; },
77-
@{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.5.1'; },
77+
@{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.6.0'; },
7878
@{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.2'; },
7979
@{ModuleName = 'AzureRM.Insights'; RequiredVersion = '4.0.1'; },
8080
@{ModuleName = 'AzureRM.IotHub'; RequiredVersion = '3.1.0'; },
@@ -96,7 +96,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0';
9696
@{ModuleName = 'AzureRM.Resources'; RequiredVersion = '5.2.0'; },
9797
@{ModuleName = 'AzureRM.Scheduler'; RequiredVersion = '0.16.1'; },
9898
@{ModuleName = 'AzureRM.ServerManagement'; RequiredVersion = '4.1.0'; },
99-
@{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.5.1'; },
99+
@{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.6.0'; },
100100
@{ModuleName = 'AzureRM.ServiceFabric'; RequiredVersion = '0.3.1'; },
101101
@{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.4'; },
102102
@{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.2.0'; },

0 commit comments

Comments
 (0)