Skip to content

[Release 3.1.0] Update change log and module manifest files #3159

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 4 commits into from
Nov 1, 2016
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
102 changes: 101 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,103 @@
## 2016.11.02 - Version 3.1.0
* ApiManagement
* Fixed cmdlet Import-AzureRmApiManagementApi when importing Api by SpecificationByUrl parameter
* New-AzureRmApiManagement supports creating an ApiManagement service in a VirtualNetwork and with additional regions
* AzureBatch
* Rename cmdlet Get-AzureRmBatchSubscriptionQuotas to Get-AzureRmBatchLocationsQuotas (an alias for the old command was created)
- Rename return type PSBatchSubscriptionQuotas to PSBatchLocationQuotas (no property changes)
* Compute
* Update formats for list of VMs, VMScaleSets and ContainerService
- The default format of Get-AzureRmVM, Get-AzureRmVmss and Get-AzureRmContainerService is not table format when these cmdlets call List Operation
* Fix overprovision issue for VMScaleSet
- Because of the bug in Compute client library (and Swagger spec) regarding overprovision property of VMScaleSet, this property did not show up correctly.
* Better piping scenario for VMScaleSets and ContainerService cmdlets
- VMScaleSet and ContainerService now have "ResourceGroupName" property, so when piping Get command to Delete/Update command, -ResourceGroupName is not required.
* Separate paremater sets for Set-AzureRmVM with Generalized and Redeploy parameter
* Reduce time taken by Get-AzureRmVMDiskEncryptionStatus cmdlet from two minutes to under five seconds
* Allow Set-AzureRmVMDiskEncryptionStatus to be used with VHDs residing in multiple resource groups
* DataLakeAnalytics
* Addition of Catalog CRUD cmdlets:
- The following cmdlets are replacing Secret CRUD cmdlets. In the next release Secret CRUD cmdlets will be removed.
- New-AzureRMDataLakeAnalyticsCatalogCredential
- Set-AzureRMDataLakeAnalyticsCatalogCredential
- Remove-AzureRMDataLakeAnalyticsCatalogCredential
* Fixes for Get-AzureRMDataLakeAnalyticsCatalogItem
- Better error messaging and support for invalid input
* General help improvements
- Clearer help for job operations
- Fixed typos and incorrect examples
* DataLakeStore
* Improvements to import and export data cmdlets
- Drastically increased performance for distributed download scenarios, where multiple sessions are running across many clients targeting the same ADLS account.
- Better error handling and messaging for both upload and download scenarios.
* Full Firewall rules management CRUD
- The below cmdlets can be used to manage firewall rules for an ADLS account:
- Add-AzureRMDataLakeStoreFirewallRule
- Set-AzureRMDataLakeStoreFirewallRule
- Get-AzureRMDataLakeStoreFirewallRule
- Remove-AzureRMDataLakeStoreFirewallRule
* Full Trusted ID provider management CRUD
- The below cmdlets can be used to manage trusted identity providers for an ADLS account:
- Add-AzureRMDataLakeStoreTrustedIdProvider
- Set-AzureRMDataLakeStoreTrustedIdProvider
- Get-AzureRMDataLakeStoreTrustedIdProvider
- Remove-AzureRMDataLakeStoreTrustedIdProvider
* Account Encryption Support
- You can now encrypt newly created ADLS accounts as well as enable encryption on existing ADLS accounts using the New-AzureRMDataLakeStoreAccount and Set-AzureRMDataLakeStoreAccount cmdlets, respectively.
* HDInsight
* Add support to create HDInsight Spark 2.0 cluster using new cmdlet Add-AzureRmHDInsightComponentVersion to specify the component version of Spark
* Get-AzureRmHDInsightCluster now returns the component version in a Spark 2.0 cluster
* New cmdlet
- Add-AzureRmHDInsightSecurityProfile
* Insights
* Add several warning/deprecation messages about future changes to cmdlets
- Add-AzureRmAutoscaleSetting
- Get-AzureRmMetric
- Get-AzureRmMetricDefinition
- New-AzureRmAutoscaleRule
- Remove-AzureRmAlertRule
- Remove-AzureRmAutoscaleSetting
- Remove-AzureRmLogProfile
* Add new parameter to Set-AzureRmDiagnosticSetting
- Parameter WorkspaceId is the OMS workspace Id
* MachineLearning
* Add support for Azure Machine Learning Committment Plans
- Get-AzureRmMLCommitmentAssociation
- Get-AzureRmMLCommitmentPlan
- Get-AzureRmMLCommitmentPlanUsageHistory
- Move-AzureRmMLCommitmentAssociation
- New-AzureRmMLCommitmentPlan
- Remove-AzureRmMLCommitmentPlan
- Update-AzureRmMLCommitmentPlan
* Network
* Add-AzureRmVirtualNetworkPeering
- Parameter AlloowGatewayTransit renamed to AllowGatewayTransit (an alias for the old parameter was created)
- Fixed issue where UseRemoteGateway property was not being populated in the request to the server
* Get-AzureRmEffectiveNetworkSecurityGroup
- Add warning if there is no response from GetEffectiveNSG
* Add Source property to EffectiveRoute
* NotificationHubs
* New cmdlets
- New-AzureRmNotificationHubKey
- New-AzureRmNotificationHubsNamespaceKey
* OperationalInsights
* Add new parameter to cmdlet New-AzureRmOperationalInsightsWindowsPerformanceCounterDataSource
- UseLegacyCollector (switch parameter) will enable collection of 32-bit legacy performance counters on 64-bit machines
* Rename New-AzureRmOperationalInsightsAzureAuditDataSource to New-AzureRmOperationalInsightsAzureActivityLogDataSource (an alias for the old command was created)
* Get-AzureRmOperationalInsightsDataSource returns null instead of throwing an exception if not found
* New-AzureRmOperationalInsightsComputerGroup now supports defining a group simply by separating computer names with commas
* Profile
* Add-AzureRmAccount
- Add position for Credential parameter so the following command is allowed: Add-AzureRmAccount (Get-Credential)
- Updated parameter sets so the SubscriptionId and SubscriptionName are mutually exclusive
* Resources
* Lookup of AAD group by Id now uses GetObjectsByObjectId AAD Graph call instead of Groups/<id>
- This will enable Groups lookup in CSP scenario
* Remove unnecessary AAD graph call in Get role assignments logic
- Only make call when needed instead of always
* Fixed issue where Remove-AzureRmResource would throw an exception if one of the resources passed through the pipeline failed to be removed
- If cmdlet fails to remove one of the resources, the result will not have an effect on the removal of other resources

## 2016.09.28 version 3.0.0
* This release contains breaking changes. Please see [the migration guide](documentation/release-notes/migration-guide.3.0.0.md) for change details and the impact on existing scripts.
* ApiManagement
Expand Down Expand Up @@ -2364,4 +2464,4 @@ Virtual Network cmdlets
* iisnode 0.1.13

2011.12.09 Version 0.5.0
* Initial Release
* Initial Release
264 changes: 175 additions & 89 deletions src/ResourceManager/ApiManagement/AzureRM.ApiManagement.psd1
Original file line number Diff line number Diff line change
@@ -1,95 +1,169 @@
#
# Module manifest for module 'Microsoft.Azure.Commands.ApiManagement'
#
# Generated by: Microsoft Corporation
#
# Generated on: 9/19/2015
#

@{

# Version number of this module.
ModuleVersion = '3.1.0'

# ID used to uniquely identify this module
GUID = 'f875725d-8ce4-423f-a6af-ea880bc63f13'

# Author of this module
Author = 'Microsoft Corporation'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = 'Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Microsoft Azure PowerShell - Api Management service cmdlets for Azure Resource Manager'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.0'

# Name of the Windows PowerShell host required by this module
PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
PowerShellHostVersion = ''

# Minimum version of the .NET Framework required by this module
DotNetFrameworkVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module
CLRVersion='4.0'

# Processor architecture (None, X86, Amd64, IA64) required by this module
ProcessorArchitecture = 'None'

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @( @{ ModuleName = 'AzureRM.Profile'; ModuleVersion = '2.3.0'})

# Assemblies that must be loaded prior to importing this module
RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module
ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
FormatsToProcess = @()

# Modules to import as nested modules of the module specified in ModuleToProcess
NestedModules = @(
'.\Microsoft.Azure.Commands.ApiManagement.dll',
'.\Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll'
)

# Functions to export from this module
FunctionsToExport = '*'

# Cmdlets to export from this module
CmdletsToExport = '*'

# Variables to export from this module
VariablesToExport = '*'

# Aliases to export from this module
#
# Module manifest for module 'PSGet_AzureRM.ApiManagement'
#
# Generated by: Microsoft Corporation
#
# Generated on: 10/31/2016
#

@{

# Script module or binary module file associated with this manifest.
# RootModule = ''

# Version number of this module.
ModuleVersion = '3.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()

# ID used to uniquely identify this module
GUID = 'f875725d-8ce4-423f-a6af-ea880bc63f13'

# Author of this module
Author = 'Microsoft Corporation'

# Company or vendor of this module
CompanyName = 'Microsoft Corporation'

# Copyright statement for this module
Copyright = 'Microsoft Corporation. All rights reserved.'

# Description of the functionality provided by this module
Description = 'Microsoft Azure PowerShell - Api Management service cmdlets for Azure Resource Manager'

# Minimum version of the Windows PowerShell engine required by this module
PowerShellVersion = '3.0'

# Name of the Windows PowerShell host required by this module
# PowerShellHostName = ''

# Minimum version of the Windows PowerShell host required by this module
# PowerShellHostVersion = ''

# Minimum version of Microsoft .NET Framework required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
DotNetFrameworkVersion = '4.0'

# Minimum version of the common language runtime (CLR) required by this module. This prerequisite is valid for the PowerShell Desktop edition only.
CLRVersion = '4.0'

# Processor architecture (None, X86, Amd64) required by this module
# ProcessorArchitecture = ''

# Modules that must be imported into the global environment prior to importing this module
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '2.3.0'; })

# Assemblies that must be loaded prior to importing this module
# RequiredAssemblies = @()

# Script files (.ps1) that are run in the caller's environment prior to importing this module.
# ScriptsToProcess = @()

# Type files (.ps1xml) to be loaded when importing this module
# TypesToProcess = @()

# Format files (.ps1xml) to be loaded when importing this module
# FormatsToProcess = @()

# Modules to import as nested modules of the module specified in RootModule/ModuleToProcess
NestedModules = @('.\Microsoft.Azure.Commands.ApiManagement.dll',
'.\Microsoft.Azure.Commands.ApiManagement.ServiceManagement.dll')

# Functions 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 functions to export.
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 = 'Add-AzureRmApiManagementRegion',
'Get-AzureRmApiManagementSsoToken',
'New-AzureRmApiManagementHostnameConfiguration',
'New-AzureRmApiManagementRegion',
'New-AzureRmApiManagementVirtualNetwork',
'Remove-AzureRmApiManagementRegion',
'Set-AzureRmApiManagementHostnames',
'Update-AzureRmApiManagementDeployment',
'Update-AzureRmApiManagementRegion',
'Import-AzureRmApiManagementHostnameCertificate',
'Backup-AzureRmApiManagement', 'Get-AzureRmApiManagement',
'New-AzureRmApiManagement', 'Remove-AzureRmApiManagement',
'Restore-AzureRmApiManagement',
'Add-AzureRmApiManagementApiToProduct',
'Add-AzureRmApiManagementProductToGroup',
'Add-AzureRmApiManagementUserToGroup',
'Export-AzureRmApiManagementApi', 'Get-AzureRmApiManagementApi',
'Get-AzureRmApiManagementAuthorizationServer',
'Get-AzureRmApiManagementCertificate',
'Get-AzureRmApiManagementGroup', 'Get-AzureRmApiManagementLogger',
'Get-AzureRmApiManagementOpenIdConnectProvider',
'Get-AzureRmApiManagementOperation',
'Get-AzureRmApiManagementPolicy', 'Get-AzureRmApiManagementProduct',
'Get-AzureRmApiManagementProperty',
'Get-AzureRmApiManagementSubscription',
'Get-AzureRmApiManagementTenantSyncState',
'Get-AzureRmApiManagementUser',
'Get-AzureRmApiManagementUserSsoUrl',
'Get-AzureRmApiManagementTenantAccess',
'Get-AzureRmApiManagementTenantGitAccess',
'Import-AzureRmApiManagementApi', 'New-AzureRmApiManagementApi',
'New-AzureRmApiManagementAuthorizationServer',
'New-AzureRmApiManagementCertificate',
'New-AzureRmApiManagementContext', 'New-AzureRmApiManagementGroup',
'New-AzureRmApiManagementLogger',
'New-AzureRmApiManagementOpenIdConnectProvider',
'New-AzureRmApiManagementOperation',
'New-AzureRmApiManagementProduct',
'New-AzureRmApiManagementSubscription',
'New-AzureRmApiManagementUser', 'New-AzureRmApiManagementProperty',
'Publish-AzureRmApiManagementTenantGitConfiguration',
'Remove-AzureRmApiManagementApi',
'Remove-AzureRmApiManagementApiFromProduct',
'Remove-AzureRmApiManagementAuthorizationServer',
'Remove-AzureRmApiManagementCertificate',
'Remove-AzureRmApiManagementGroup',
'Remove-AzureRmApiManagementLogger',
'Remove-AzureRmApiManagementOpenIdConnectProvider',
'Remove-AzureRmApiManagementOperation',
'Remove-AzureRmApiManagementPolicy',
'Remove-AzureRmApiManagementProduct',
'Remove-AzureRmApiManagementProductFromGroup',
'Remove-AzureRmApiManagementProperty',
'Remove-AzureRmApiManagementSubscription',
'Remove-AzureRmApiManagementUser',
'Remove-AzureRmApiManagementUserFromGroup',
'Save-AzureRmApiManagementTenantGitConfiguration',
'Set-AzureRmApiManagementApi',
'Set-AzureRmApiManagementAuthorizationServer',
'Set-AzureRmApiManagementCertificate',
'Set-AzureRmApiManagementGroup', 'Set-AzureRmApiManagementLogger',
'Set-AzureRmApiManagementOpenIdConnectProvider',
'Set-AzureRmApiManagementOperation',
'Set-AzureRmApiManagementPolicy', 'Set-AzureRmApiManagementProduct',
'Set-AzureRmApiManagementProperty',
'Set-AzureRmApiManagementSubscription',
'Set-AzureRmApiManagementUser',
'Set-AzureRmApiManagementTenantAccess'

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

# Aliases 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 aliases to export.
AliasesToExport = @()

# List of all modules packaged with this module
ModuleList = @()

# List of all files packaged with this module
FileList = @()

# Private data to pass to the module specified in ModuleToProcess

# DSC resources to export from this module
# DscResourcesToExport = @()

# List of all modules packaged with this module
# ModuleList = @()

# List of all files packaged with this module
# FileList = @()

# Private data to pass to the module specified in RootModule/ModuleToProcess. This may also contain a PSData hashtable with additional module metadata used by PowerShell.
PrivateData = @{

PSData = @{

# Tags applied to this module. These help with module discovery in online galleries.
Tags = @("Azure", "ResourceManager", "ARM", "ApiManagement")
Tags = 'Azure','ResourceManager','ARM','ApiManagement'

# A URL to the license for this module.
LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt'
Expand All @@ -101,10 +175,22 @@ PrivateData = @{
# IconUri = ''

# ReleaseNotes of this module
ReleaseNotes = 'https://github.com/Azure/azure-powershell/blob/dev/ChangeLog.md'
ReleaseNotes = '* Fixed cmdlet Import-AzureRmApiManagementApi when importing Api by SpecificationByUrl parameter
* New-AzureRmApiManagement supports creating an ApiManagement service in a VirtualNetwork and with additional regions
'

# External dependent modules of this module
# ExternalModuleDependencies = ''

} # End of PSData hashtable

} # End of PrivateData hashtable

# HelpInfo URI of this module
# HelpInfoURI = ''

# Default prefix for commands exported from this module. Override the default prefix using Import-Module -Prefix.
# DefaultCommandPrefix = ''

} # End of PrivateData hashtable
}

}
Loading