AzureRM.psd1
# # Module manifest for module 'PSGet_AzureRM' # # Generated by: Microsoft Corporation # # Generated on: 1/17/2017 # @{ # Script module or binary module file associated with this manifest. RootModule = 'AzureRM.psm1' # Version number of this module. ModuleVersion = '3.4.0' # ID used to uniquely identify this module GUID = 'b433e830-b479-4f7f-9c80-9cc6c28e1b51' # 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 = 'Azure Resource Manager Module' # 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 DotNetFrameworkVersion = '4.0' # Minimum version of the common language runtime (CLR) required by this module 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 = @() # 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 = @() # Functions to export from this module FunctionsToExport = 'Update-AzureRM', 'Import-AzureRM', 'Uninstall-AzureRM' # Cmdlets to export from this module # CmdletsToExport = @() # Variables to export from this module # VariablesToExport = @() # Aliases to export from this module AliasesToExport = 'Install-AzureRM' # 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 = @() # A URL to the license for this module. LicenseUri = 'https://raw.githubusercontent.com/Azure/azure-powershell/dev/LICENSE.txt' # A URL to the main website for this project. ProjectUri = 'https://github.com/Azure/azure-powershell' # A URL to an icon representing this module. # IconUri = '' # ReleaseNotes of this module ReleaseNotes = '## 2017.01.18 - Version 3.4.0 * AnalysisServices * Added two new dataplane APIs in a separate module Azure.AnalysisServices.psd1 - This introduces two new APIs that enable customers to login to Azure Analysis Services servers and issue a restart command. * Compute * Fix Get-AzureRmVM with -Status issue: Get-AzureRmVM throws an exception when Get-AzureRmVM lists multiple VMs and some of the VMs are deleted during Get-AzureRmVM is performed. * New parameters in New-AzureRmVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs. - BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup. - BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it''s manual, schedule settings need to be specified. - FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly. - FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start. - FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur. - LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup. * New-AzureVMSqlServer* cmdlets are renamed to New-AzureRmVMSqlServer* now. Old ones will continue to work however. * DataLakeAnalytics * Update Get-AdlJob to support Top parameter * Update Get-AdlJob to return the list of jobs in order by most recently submitted * Updated help for all cmdlets to include output as well as more descriptions of parameters and the inclusion of aliases. * Update New-AdlAnalyticsAccount and Set-AdlAnalyticsAccount to support commitment tier options for the service. * Added OutputType mismatch warnings to all cmdlets with incorrect OutputType attributes. These will be fixed in a future breaking change release. * DataLakeStore * Updated help for all cmdlets to include output as well as more descriptions of parameters and the inclusion of aliases. * Update New-AdlStore and Set-AdlStore to support commitment tier options for the service. * Added OutputType mismatch warnings to all cmdlets with incorrect OutputType attributes. These will be fixed in a future breaking change release. * Add Diagnostic logging support to Import-AdlStoreItem and Export-AdlStoreItem. This can be enabled through the following parameters: * -Debug, enables full diagnostic logging as well as debug logging to the PowerShell console. Most verbose options * -DiagnosticLogLevel, allows finer control of the output than debug. If used with debug, this is ignored and debug logging is used. * -DiagnosticLogPath, optionally specify the file to write diagnostic logs to. By default it is written to a file under %LOCALAPPDATA%\AdlDataTransfer * Added support to New-AdlStore to explicitly opt-out of account encryption. To do so, create the account with the -DisableEncryption flag. * OperationalInsights * Get-AzureRmOperationalInsightsSearchResults no longer requires the Top parameter to retrieve results * Resources * Support Tag as parameters for Find-AzureRmResource - Users can now use Tag parameter with Find-AzureRmResource - Fixed the issue where illegal combinations of TagName, TagValue with other search parameters was allowed in Find-AzureRmResource and would result in users getting exception from the service by disallowing such combinations. * ServiceBus * Add SkuCapacity parameter to Set-AzureRmServiceBusNamespace - User will be able to update the SkuCapacity(Messaging units in case of a premium namespace) of the SeriveBus NameSpace * Future Breaking Change Notification: We''ve added a warning about removing property ''ResourceGroupName'' from the returned NamespceAttributes from cmdlets New-AzureRmServiceBusNamespace, Get-AzureRmServiceBusNamespace and Set-AzureRmServiceBusNamespace -The call remains the same, but the returned values NameSpace object will not have the ResourceGroupName property * Sql * Added new return parameter "AuditType" to Get-AzureRmSqlDatabaseAuditingPolicy and Get-AzureRmSqlServerAuditingPolicy returned object - This parameter value indicates the returned auditing policy type - Table or Blob. * ServiceManagement * New parameters in New-AzureVMSqlServerAutoBackupConfig cmdlet to support Auto Backup for SQL Server 2016 VMs. - BackupSystemDbs : Specifies if system databases should be added to Sql Server Managed Backup. - BackupScheduleType : Specifies the type of managed backup schedule, manual or automated. If it''s manual, schedule settings need to be specified. - FullBackupFrequency : Specifies the frequency of Full Backup, daily or weekly. - FullBackupStartHour : Specifies the hour of the day when the Sql Server Full Backup should start. - FullBackupWindowInHours : Specifies the window (in hours) when Sql Server Full Backup should occur. - LogBackupFrequencyInMinutes : Specifies the frequency of Sql Server Log Backup. * Storage * Fix Start-AzureStorageBlobCopy output might has wrong BlobType issue - Start-AzureStorageBlobCopy * Fix hang issue when running cmdlets from WPF/Winform context - Get-AzureStorageBlob - Get-AzureStorageBlobContent - Get-AzureStorageBlobCopyState - Get-AzureStorageContainer - Get-AzureStorageContainerStoredAccessPolicy - New-AzureStorageContainer - Remove-AzureStorageBlob - Remove-AzureStorageContainer - Set-AzureStorageBlobContent - Set-AzureStorageContainerAcl - Start-AzureStorageBlobCopy - Stop-AzureStorageBlobCopy - Get-AzureStorageFile - Get-AzureStorageFileContent - Get-AzureStorageFileCopyState - Get-AzureStorageShare - Get-AzureStorageShareStoredAccessPolicy - New-AzureStorageDirectory - New-AzureStorageShare - Remove-AzureStorageDirectory - Remove-AzureStorageFile - Remove-AzureStorageShare - Set-AzureStorageFileContent - Start-AzureStorageFileCopy - Stop-AzureStorageFileCopy - Get-AzureStorageQueueStoredAccessPolicy - Get-AzureStorageTableStoredAccessPolicy ' # 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 = '' } |