Skip to content

Prepare EventHub and ServiceBus for release #5429

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 3, 2018
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
53 changes: 34 additions & 19 deletions src/ResourceManager/EventHub/AzureRM.EventHub.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 1/22/2018
# Generated on: 2/1/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.5.1'
ModuleVersion = '0.6.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -72,22 +72,25 @@ NestedModules = @('.\Microsoft.Azure.Commands.EventHub.dll')
FunctionsToExport = @()

# 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.
CmdletsToExport = 'New-AzureRmEventHubNamespace', 'Get-AzureRmEventHubNamespace',
'Set-AzureRmEventHubNamespace', 'Remove-AzureRmEventHubNamespace',
'New-AzureRmEventHubAuthorizationRule',
'Get-AzureRmEventHubAuthorizationRule',
'Set-AzureRmEventHubAuthorizationRule',
'Remove-AzureRmEventHubAuthorizationRule', 'Get-AzureRmEventHubKey',
'New-AzureRmEventHubKey', 'New-AzureRmEventHub',
'Get-AzureRmEventHub', 'Set-AzureRmEventHub',
'Remove-AzureRmEventHub', 'New-AzureRmEventHubConsumerGroup',
'Get-AzureRmEventHubConsumerGroup',
'Set-AzureRmEventHubConsumerGroup',
'Remove-AzureRmEventHubConsumerGroup',
'New-AzureRmEventHubGeoDRConfiguration',
'Get-AzureRmEventHubGeoDRConfiguration',
'Remove-AzureRmEventHubGeoDRConfiguration',
'Set-AzureRmEventHubGeoDRConfigurationBreakPair',
'Set-AzureRmEventHubGeoDRConfigurationFailOver',
'Test-AzureRmEventHubName'

CmdletsToExport = 'New-AzureRmEventHubNamespace', 'Get-AzureRmEventHubNamespace',
'Set-AzureRmEventHubNamespace', 'Remove-AzureRmEventHubNamespace',
'New-AzureRmEventHubAuthorizationRule',
'Get-AzureRmEventHubAuthorizationRule',
'Set-AzureRmEventHubAuthorizationRule',
'Remove-AzureRmEventHubAuthorizationRule', 'Get-AzureRmEventHubKey',
'New-AzureRmEventHubKey', 'New-AzureRmEventHub',
'Get-AzureRmEventHub', 'Set-AzureRmEventHub',
'Remove-AzureRmEventHub', 'New-AzureRmEventHubConsumerGroup',
'Get-AzureRmEventHubConsumerGroup',
'Set-AzureRmEventHubConsumerGroup',
'Remove-AzureRmEventHubConsumerGroup', 'New-AzureRmEventHubGeoDRConfiguration', 'Get-AzureRmEventHubGeoDRConfiguration', 'Remove-AzureRmEventHubGeoDRConfiguration',
'Set-AzureRmEventHubGeoDRConfigurationBreakPair', 'Set-AzureRmEventHubGeoDRConfigurationFailOver',
'Test-AzureRmEventHubName'

# Variables to export from this module
# VariablesToExport = @()

Expand Down Expand Up @@ -121,8 +124,20 @@ PrivateData = @{
# IconUri = ''

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

# Prerelease string of this module
# Prerelease = ''
Expand Down
1 change: 1 addition & 0 deletions src/ResourceManager/EventHub/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
-->
## Current Release

## Version 0.6.0
* Added below new commands for Geo Disaster Recovery operations.
-Creating a new Alias(Disaster Recovery configuration):
- New-AzureRmEventHubGeoDRConfiguration [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("3ea250fe-7987-426b-8ca0-2dd65deda73c")]
[assembly: AssemblyVersion("0.5.1")]
[assembly: AssemblyFileVersion("0.5.1")]
[assembly: AssemblyVersion("0.6.0")]
[assembly: AssemblyFileVersion("0.6.0")]
36 changes: 26 additions & 10 deletions src/ResourceManager/ServiceBus/AzureRM.ServiceBus.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#
# Generated by: Microsoft Corporation
#
# Generated on: 1/22/2018
# Generated on: 2/1/2018
#

@{
Expand All @@ -12,7 +12,7 @@
# RootModule = ''

# Version number of this module.
ModuleVersion = '0.5.1'
ModuleVersion = '0.6.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -87,12 +87,16 @@ CmdletsToExport = 'New-AzureRmServiceBusNamespace', 'Get-AzureRmServiceBusNamesp
'Get-AzureRmServiceBusAuthorizationRule',
'Set-AzureRmServiceBusAuthorizationRule',
'Remove-AzureRmServiceBusAuthorizationRule',
'New-AzureRmServiceBusKey', 'Get-AzureRmServiceBusKey', 'Get-AzureRmServiceBusOperation',
'New-AzureRmServiceBusRule', 'Get-AzureRmServiceBusRule',
'Set-AzureRmServiceBusRule', 'Remove-AzureRmServiceBusRule',
'New-AzureRmServiceBusGeoDRConfiguration','Get-AzureRmServiceBusGeoDRConfiguration',
'Remove-AzureRmServiceBusGeoDRConfiguration',
'Set-AzureRmServiceBusGeoDRConfigurationBreakPair', 'Set-AzureRmServiceBusGeoDRConfigurationFailOver', 'Test-AzureRmServiceBusName'
'New-AzureRmServiceBusKey', 'Get-AzureRmServiceBusKey',
'Get-AzureRmServiceBusOperation', 'New-AzureRmServiceBusRule',
'Get-AzureRmServiceBusRule', 'Set-AzureRmServiceBusRule',
'Remove-AzureRmServiceBusRule',
'New-AzureRmServiceBusGeoDRConfiguration',
'Get-AzureRmServiceBusGeoDRConfiguration',
'Remove-AzureRmServiceBusGeoDRConfiguration',
'Set-AzureRmServiceBusGeoDRConfigurationBreakPair',
'Set-AzureRmServiceBusGeoDRConfigurationFailOver',
'Test-AzureRmServiceBusName'

# Variables to export from this module
# VariablesToExport = @()
Expand Down Expand Up @@ -127,8 +131,20 @@ PrivateData = @{
# IconUri = ''

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

# Prerelease string of this module
# Prerelease = ''
Expand Down
1 change: 1 addition & 0 deletions src/ResourceManager/ServiceBus/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
-->
## Current Release

## Version 0.6.0
* Added below new commandlets for Geo Disaster Recovery operations.
-Creating a new Alias(Disaster Recovery configuration):
- New-AzureRmServiceBusDRConfigurations [-ResourceGroupName] <String> [-Namespace] <String> [-Name] <String> [-PartnerNamespace] <String> [-WhatIf] [-Confirm]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
[assembly: ComVisible(false)]
[assembly: CLSCompliant(false)]
[assembly: Guid("3ea250fe-7987-426b-8ca0-2dd65deda73c")]
[assembly: AssemblyVersion("0.5.1")]
[assembly: AssemblyFileVersion("0.5.1")]
[assembly: AssemblyVersion("0.6.0")]
[assembly: AssemblyFileVersion("0.6.0")]
4 changes: 2 additions & 2 deletions tools/AzureRM/AzureRM.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0';
@{ModuleName = 'AzureRM.DevTestLabs'; RequiredVersion = '4.0.1'; },
@{ModuleName = 'AzureRM.Dns'; RequiredVersion = '4.0.1'; },
@{ModuleName = 'AzureRM.EventGrid'; RequiredVersion = '0.3.0'; },
@{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.5.1'; },
@{ModuleName = 'AzureRM.EventHub'; RequiredVersion = '0.6.0'; },
@{ModuleName = 'AzureRM.HDInsight'; RequiredVersion = '4.0.2'; },
@{ModuleName = 'AzureRM.Insights'; RequiredVersion = '4.0.1'; },
@{ModuleName = 'AzureRM.IotHub'; RequiredVersion = '3.1.0'; },
Expand All @@ -96,7 +96,7 @@ RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; RequiredVersion = '4.2.0';
@{ModuleName = 'AzureRM.Resources'; RequiredVersion = '5.2.0'; },
@{ModuleName = 'AzureRM.Scheduler'; RequiredVersion = '0.16.1'; },
@{ModuleName = 'AzureRM.ServerManagement'; RequiredVersion = '4.1.0'; },
@{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.5.1'; },
@{ModuleName = 'AzureRM.ServiceBus'; RequiredVersion = '0.6.0'; },
@{ModuleName = 'AzureRM.ServiceFabric'; RequiredVersion = '0.3.1'; },
@{ModuleName = 'AzureRM.SiteRecovery'; RequiredVersion = '5.0.4'; },
@{ModuleName = 'AzureRM.Sql'; RequiredVersion = '4.2.0'; },
Expand Down
Loading