Skip to content

Commit 22e241a

Browse files
authored
Merge branch 'preview' into sergey-websites3
2 parents 645149b + bd03687 commit 22e241a

File tree

821 files changed

+233010
-2952077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

821 files changed

+233010
-2952077
lines changed

ChangeLog.md

Lines changed: 63 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,66 @@
1-
## 6.0.0 - May 2018
1+
## 6.1.0 - May 2018
2+
#### AzureRM.Profile
3+
* Fix issue where running 'Clear-AzureRmContext' would keep an empty context with the name of the previous default context, which prevented the user from creating a new context with the old name
4+
5+
#### AzureRM.AnalysisServices
6+
* Enable Gateway assocaite/disassociate operations on AS.
7+
8+
#### AzureRM.ApiManagement
9+
* Added support for ApiVersions, ApiReleases and ApiRevisions
10+
* Added suppport for ServiceFabric Backend
11+
* Added support for Application Insights Logger
12+
* Added support for recognizing 'Basic' sku as a valid sku of Api Management service
13+
* Added support for installing Certificates issued by private CA as Root or CA
14+
* Added support for accepting Custom SSL certificates via KeyVault and Multiple proxy hostnames
15+
* Added support for MSI identity
16+
* Added support for accepting Policies via Url
17+
NOTE: The following cmdlets will be deprecated in future release
18+
- Import-AzureRmApiManagementHostnameCertificate
19+
- New-AzureRmApiManagementHostnameConfiguration
20+
- Set-AzureRmApiManagementHostnames
21+
- Update-AzureRmApiManagementDeployment
22+
23+
#### AzureRM.Batch
24+
* Release new cmdlet Get-AzureBatchPoolNodeCounts
25+
* Release new cmdlet Start-AzureBatchComputeNodeServiceLogUpload
26+
27+
#### AzureRM.Consumption
28+
* Add new parameters Expand, ResourceGroup, InstanceName, InstanceId, Tags, and Top on Cmdlet Get-AzureRmConsumptionUsageDetail
29+
30+
#### AzureRM.DataLakeStore
31+
* Fix example for Export-AzureRmDataLakeStoreChildItemProperties
32+
* Fix null parameter exception for Recurse case in Set-AzureRmDataLakeStoreItemAclEntry
33+
* Fix the help files for Set-AzureRmDataLakeStoreItemAclEntry, Set-AzureRmDataLakeStoreItemAcl, Remove-AzureRmDataLakeStoreItemAclEntry
34+
35+
#### AzureRM.Network
36+
* Bump up Network SDK version from 18.0.0-preview to 19.0.0-preview
37+
* Added cmdlet to create protocol configuration
38+
- New-AzureRmNetworkWatcherProtocolConfiguration
39+
* Added cmdlet to add a new circuit connection to an existing express route circuit.
40+
- Add-AzureRmExpressRouteCircuitConnectionConfig
41+
* Added cmdlet to remove a circuit connection from an existing express route circuit.
42+
- Remove-AzureRmExpressRouteCircuitConnectionConfig
43+
* Added cmdlet to retrieve a circuit connection
44+
- Get-AzureRmExpressRouteCircuitConnectionConfig
45+
46+
#### AzureRM.ServiceFabric
47+
* Fixed server authentication usage with generated certificates (Issue #5998)
48+
49+
#### AzureRM.Sql
50+
* Updated Auditing cmdlets to allow removing AuditActions or AuditActionGroups
51+
* Fixed issue with Set-AzureRmSqlDatabaseBackupLongTermRetentionPolicy when setting a new flexible retention policy where the command would fail with 'Configure long term retention policy with azure recovery service vault and policy is no longer supported. Please submit request with the new flexible retention policy'.
52+
* Update all Azure Sql Database/ElasticPool Creation/Update related cmdlets to use the new Database API, which support Sku property for scale and tier-related properties.
53+
* The updated cmdlets including:
54+
- New-AzureRmSqlDatabase; Set-AzureRmSqlDatabase
55+
- New-AzureRmSqlElasticPool; Set-AzureRmSqlElasticPool
56+
- New-AzureRmSqlDatabaseCopy
57+
- New-AzureRmSqlDatabaseSecondary
58+
- Restore-AzureRmSqlDatabase
59+
60+
#### AzureRM.TrafficManager
61+
* Update the parameters for 'Get-AzureRmTrafficManagerProfile' so that -ResourceGroupName parameter is required when using -Name parameter.
62+
63+
## 6.0.0 - May 2018
264
#### General
365
* Set minimum dependency of modules to PowerShell 5.0
466

src/ResourceManager/Aks/AzureRM.Aks.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\YamlDotNet.dll',

src/ResourceManager/Aks/Commands.Aks/help/New-AzureRmAks.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,15 @@ New-AzureRmAks [-ResourceGroupName] <String> [-Name] <String> [[-ClientIdAndSecr
2020
```
2121

2222
## DESCRIPTION
23+
2324
Create a new managed Kubernetes cluster.
2425

2526
## EXAMPLES
2627

2728
### Example 1
28-
### Create a new managed Kubernetes cluster with default params
29+
30+
Create a new managed Kubernetes cluster with default params.
31+
2932
```
3033
PS C:\> New-AzureRmAks -ResourceGroupName group -Name myCluster
3134
```

src/ResourceManager/AnalysisServices/AzureRM.AnalysisServices.psd1

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Microsoft Corporation
55
#
6-
# Generated on: 4/24/2018
6+
# Generated on: 5/17/2018
77
#
88

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

1414
# Version number of this module.
15-
ModuleVersion = '0.6.7'
15+
ModuleVersion = '0.6.8'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()
@@ -51,7 +51,7 @@ CLRVersion = '4.0'
5151
# ProcessorArchitecture = ''
5252

5353
# Modules that must be imported into the global environment prior to importing this module
54-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; })
54+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5555

5656
# Assemblies that must be loaded prior to importing this module
5757
RequiredAssemblies = '.\Microsoft.Azure.Management.Analysis.dll'
@@ -116,7 +116,7 @@ PrivateData = @{
116116
# IconUri = ''
117117

118118
# ReleaseNotes of this module
119-
ReleaseNotes = '* Set minimum dependency of module to PowerShell 5.0'
119+
ReleaseNotes = '* Enable Gateway assocaite/disassociate operations on AS.'
120120

121121
# Prerelease string of this module
122122
# Prerelease = ''

src/ResourceManager/AnalysisServices/ChangeLog.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@
1818
- Additional information about change #1
1919
-->
2020
## Current Release
21+
22+
## Version 0.6.8
2123
* Enable Gateway assocaite/disassociate operations on AS.
2224

2325
## Version 0.6.7

src/ResourceManager/AnalysisServices/Commands.AnalysisServices.Dataplane/Azure.AnalysisServices.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ CLRVersion='4.0'
4848
ProcessorArchitecture = 'None'
4949

5050
# Modules that must be imported into the global environment prior to importing this module
51-
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.0.0'; })
51+
RequiredModules = @(@{ModuleName = 'AzureRM.Profile'; ModuleVersion = '5.1.0'; })
5252

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

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,5 @@
3434
// You can specify all the values or you can default the Build and Revision Numbers
3535
// by using the '*' as shown below:
3636

37-
[assembly: AssemblyVersion("0.6.7")]
38-
[assembly: AssemblyFileVersion("0.6.7")]
37+
[assembly: AssemblyVersion("0.6.8")]
38+
[assembly: AssemblyFileVersion("0.6.8")]

src/ResourceManager/ApiManagement/AzureRM.ApiManagement.Netcore.psd1

Lines changed: 100 additions & 75 deletions
Original file line numberDiff line numberDiff line change
@@ -73,81 +73,106 @@ NestedModules = @('.\Microsoft.Azure.Commands.ApiManagement.dll',
7373
FunctionsToExport = @()
7474

7575
# 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.
76-
CmdletsToExport = 'Add-AzureRmApiManagementRegion', 'Get-AzureRmApiManagementSsoToken',
77-
'New-AzureRmApiManagementHostnameConfiguration',
78-
'New-AzureRmApiManagementRegion',
79-
'New-AzureRmApiManagementVirtualNetwork',
80-
'Remove-AzureRmApiManagementRegion',
81-
'Set-AzureRmApiManagementHostnames',
82-
'Update-AzureRmApiManagementDeployment',
83-
'Update-AzureRmApiManagementRegion',
84-
'Import-AzureRmApiManagementHostnameCertificate',
85-
'Backup-AzureRmApiManagement', 'Get-AzureRmApiManagement',
86-
'New-AzureRmApiManagement', 'Remove-AzureRmApiManagement',
87-
'Restore-AzureRmApiManagement',
88-
'Add-AzureRmApiManagementApiToProduct',
89-
'Add-AzureRmApiManagementProductToGroup',
90-
'Add-AzureRmApiManagementUserToGroup',
91-
'Export-AzureRmApiManagementApi', 'Get-AzureRmApiManagementApi',
92-
'Get-AzureRmApiManagementAuthorizationServer',
93-
'Get-AzureRmApiManagementCertificate',
94-
'Get-AzureRmApiManagementGroup', 'Get-AzureRmApiManagementLogger',
95-
'Get-AzureRmApiManagementOpenIdConnectProvider',
96-
'Get-AzureRmApiManagementOperation',
97-
'Get-AzureRmApiManagementPolicy', 'Get-AzureRmApiManagementProduct',
98-
'Get-AzureRmApiManagementProperty',
99-
'Get-AzureRmApiManagementSubscription',
100-
'Get-AzureRmApiManagementTenantSyncState',
101-
'Get-AzureRmApiManagementUser', 'Get-AzureRmApiManagementUserSsoUrl',
102-
'Get-AzureRmApiManagementTenantAccess',
103-
'Get-AzureRmApiManagementTenantGitAccess',
104-
'Import-AzureRmApiManagementApi', 'New-AzureRmApiManagementApi',
105-
'New-AzureRmApiManagementAuthorizationServer',
106-
'New-AzureRmApiManagementCertificate',
107-
'New-AzureRmApiManagementContext', 'New-AzureRmApiManagementGroup',
108-
'New-AzureRmApiManagementLogger',
109-
'New-AzureRmApiManagementOpenIdConnectProvider',
110-
'New-AzureRmApiManagementOperation',
111-
'New-AzureRmApiManagementProduct',
112-
'New-AzureRmApiManagementSubscription',
113-
'New-AzureRmApiManagementUser', 'New-AzureRmApiManagementProperty',
114-
'Publish-AzureRmApiManagementTenantGitConfiguration',
115-
'Remove-AzureRmApiManagementApi',
116-
'Remove-AzureRmApiManagementApiFromProduct',
117-
'Remove-AzureRmApiManagementAuthorizationServer',
118-
'Remove-AzureRmApiManagementCertificate',
119-
'Remove-AzureRmApiManagementGroup',
120-
'Remove-AzureRmApiManagementLogger',
121-
'Remove-AzureRmApiManagementOpenIdConnectProvider',
122-
'Remove-AzureRmApiManagementOperation',
123-
'Remove-AzureRmApiManagementPolicy',
124-
'Remove-AzureRmApiManagementProduct',
125-
'Remove-AzureRmApiManagementProductFromGroup',
126-
'Remove-AzureRmApiManagementProperty',
127-
'Remove-AzureRmApiManagementSubscription',
128-
'Remove-AzureRmApiManagementUser',
129-
'Remove-AzureRmApiManagementUserFromGroup',
130-
'Save-AzureRmApiManagementTenantGitConfiguration',
131-
'Set-AzureRmApiManagementApi',
132-
'Set-AzureRmApiManagementAuthorizationServer',
133-
'Set-AzureRmApiManagementCertificate',
134-
'Set-AzureRmApiManagementGroup', 'Set-AzureRmApiManagementLogger',
135-
'Set-AzureRmApiManagementOpenIdConnectProvider',
136-
'Set-AzureRmApiManagementOperation',
137-
'Set-AzureRmApiManagementPolicy', 'Set-AzureRmApiManagementProduct',
138-
'Set-AzureRmApiManagementProperty',
139-
'Set-AzureRmApiManagementSubscription',
140-
'Set-AzureRmApiManagementUser',
141-
'Set-AzureRmApiManagementTenantAccess',
142-
'Get-AzureRmApiManagementIdentityProvider',
143-
'New-AzureRmApiManagementIdentityProvider',
144-
'Set-AzureRmApiManagementIdentityProvider',
145-
'Remove-AzureRmApiManagementIdentityProvider',
146-
'Get-AzureRmApiManagementBackend', 'New-AzureRmApiManagementBackend',
147-
'New-AzureRmApiManagementBackendCredential',
148-
'New-AzureRmApiManagementBackendProxy',
149-
'Set-AzureRmApiManagementBackend',
150-
'Remove-AzureRmApiManagementBackend'
76+
CmdletsToExport = 'Add-AzureRmApiManagementRegion',
77+
'Get-AzureRmApiManagementSsoToken',
78+
'New-AzureRmApiManagementHostnameConfiguration',
79+
'New-AzureRmApiManagementCustomHostnameConfiguration',
80+
'New-AzureRmApiManagementSystemCertificate',
81+
'New-AzureRmApiManagementRegion',
82+
'New-AzureRmApiManagementVirtualNetwork',
83+
'Remove-AzureRmApiManagementRegion',
84+
'Set-AzureRmApiManagementHostnames',
85+
'Update-AzureRmApiManagementDeployment',
86+
'Update-AzureRmApiManagementRegion',
87+
'Import-AzureRmApiManagementHostnameCertificate',
88+
'Backup-AzureRmApiManagement',
89+
'Get-AzureRmApiManagement',
90+
'New-AzureRmApiManagement',
91+
'Remove-AzureRmApiManagement',
92+
'Restore-AzureRmApiManagement',
93+
'Add-AzureRmApiManagementApiToProduct',
94+
'Add-AzureRmApiManagementProductToGroup',
95+
'Add-AzureRmApiManagementUserToGroup',
96+
'Export-AzureRmApiManagementApi',
97+
'Get-AzureRmApiManagementApi',
98+
'Get-AzureRmApiManagementApiRelease',
99+
'Get-AzureRmApiManagementApiRevision',
100+
'Get-AzureRmApiManagementApiVersionSet',
101+
'Get-AzureRmApiManagementAuthorizationServer',
102+
'Get-AzureRmApiManagementCertificate',
103+
'Get-AzureRmApiManagementGroup',
104+
'Get-AzureRmApiManagementLogger',
105+
'Get-AzureRmApiManagementOpenIdConnectProvider',
106+
'Get-AzureRmApiManagementOperation',
107+
'Get-AzureRmApiManagementPolicy',
108+
'Get-AzureRmApiManagementProduct',
109+
'Get-AzureRmApiManagementProperty',
110+
'Get-AzureRmApiManagementSubscription',
111+
'Get-AzureRmApiManagementTenantSyncState',
112+
'Get-AzureRmApiManagementUser',
113+
'Get-AzureRmApiManagementUserSsoUrl',
114+
'Get-AzureRmApiManagementTenantAccess',
115+
'Get-AzureRmApiManagementTenantGitAccess',
116+
'Import-AzureRmApiManagementApi',
117+
'New-AzureRmApiManagementApi',
118+
'New-AzureRmApiManagementApiRevision',
119+
'New-AzureRmApiManagementApiRelease',
120+
'New-AzureRmApiManagementApiVersionSet',
121+
'New-AzureRmApiManagementAuthorizationServer',
122+
'New-AzureRmApiManagementCertificate',
123+
'New-AzureRmApiManagementContext',
124+
'New-AzureRmApiManagementGroup',
125+
'New-AzureRmApiManagementLogger',
126+
'New-AzureRmApiManagementOpenIdConnectProvider',
127+
'New-AzureRmApiManagementOperation',
128+
'New-AzureRmApiManagementProduct',
129+
'New-AzureRmApiManagementSubscription',
130+
'New-AzureRmApiManagementUser',
131+
'New-AzureRmApiManagementProperty',
132+
'Publish-AzureRmApiManagementTenantGitConfiguration',
133+
'Remove-AzureRmApiManagementApi',
134+
'Remove-AzureRmApiManagementApiRelease',
135+
'Remove-AzureRmApiManagementApiVersionSet',
136+
'Remove-AzureRmApiManagementApiFromProduct',
137+
'Remove-AzureRmApiManagementAuthorizationServer',
138+
'Remove-AzureRmApiManagementCertificate',
139+
'Remove-AzureRmApiManagementGroup',
140+
'Remove-AzureRmApiManagementLogger',
141+
'Remove-AzureRmApiManagementOpenIdConnectProvider',
142+
'Remove-AzureRmApiManagementOperation',
143+
'Remove-AzureRmApiManagementPolicy',
144+
'Remove-AzureRmApiManagementProduct',
145+
'Remove-AzureRmApiManagementProductFromGroup',
146+
'Remove-AzureRmApiManagementProperty',
147+
'Remove-AzureRmApiManagementSubscription',
148+
'Remove-AzureRmApiManagementUser',
149+
'Remove-AzureRmApiManagementUserFromGroup',
150+
'Save-AzureRmApiManagementTenantGitConfiguration',
151+
'Set-AzureRmApiManagementApi',
152+
'Set-AzureRmApiManagementApiRelease',
153+
'Set-AzureRmApiManagementApiVersionSet',
154+
'Set-AzureRmApiManagementAuthorizationServer',
155+
'Set-AzureRmApiManagementCertificate',
156+
'Set-AzureRmApiManagementGroup',
157+
'Set-AzureRmApiManagementLogger',
158+
'Set-AzureRmApiManagementOpenIdConnectProvider',
159+
'Set-AzureRmApiManagementOperation',
160+
'Set-AzureRmApiManagementPolicy',
161+
'Set-AzureRmApiManagementProduct',
162+
'Set-AzureRmApiManagementProperty',
163+
'Set-AzureRmApiManagementSubscription',
164+
'Set-AzureRmApiManagementUser',
165+
'Set-AzureRmApiManagementTenantAccess',
166+
'Get-AzureRmApiManagementIdentityProvider',
167+
'New-AzureRmApiManagementIdentityProvider',
168+
'Set-AzureRmApiManagementIdentityProvider',
169+
'Remove-AzureRmApiManagementIdentityProvider',
170+
'Get-AzureRmApiManagementBackend',
171+
'New-AzureRmApiManagementBackend',
172+
'New-AzureRmApiManagementBackendCredential',
173+
'New-AzureRmApiManagementBackendProxy',
174+
'Set-AzureRmApiManagementBackend',
175+
'Remove-AzureRmApiManagementBackend'
151176

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

0 commit comments

Comments
 (0)