Skip to content

Commit c733657

Browse files
authored
Merge pull request #679 from Azure/dev
huangpf PR: dev <- Azure:dev
2 parents 7888296 + 903211f commit c733657

File tree

11 files changed

+98
-189
lines changed

11 files changed

+98
-189
lines changed

src/ResourceManager/IotHub/AzureRM.IotHub.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# RootModule = ''
1313

1414
# Version number of this module.
15-
ModuleVersion = '1.0.0'
15+
ModuleVersion = '1.0.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

src/ResourceManager/IotHub/ChangeLog.md

Lines changed: 2 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -19,39 +19,5 @@
1919
-->
2020
## Current Release
2121

22-
## Version 1.0.0
23-
* Adds commandlets for the Azure IoT Hub
24-
- Add-AzureRmIotHubEventHubConsumerGroup
25-
- Adds an Event Hub consumer group for an existing Azure IoT hub.
26-
- Add-AzureRmIotHubKey
27-
- Adds a new key to an existing Azure IoT hub.
28-
- Get-AzureRmIotHub
29-
- Gets the properties of an exisiting Azure IoT hub.
30-
- Get-AzureRmIotHubConnectionString
31-
- Gets the connection strings of an existing Azure IoT hub.
32-
- Get-AzureRmIotHubEventHubConsumerGroup
33-
- Gets the list of event hub consumer groups for the specified eventhub endpoint.
34-
- Get-AzureRmIotHubJob
35-
- Gets the properties of a set of Azure IoT hubs in a subscription or resource group.
36-
- Get-AzureRmIotHubKey
37-
- Gets the information related to a list of keys of an Azure IoT hub.
38-
- Get-AzureRmIotHubQuotaMetric
39-
- Gets the quota metrics for an Azure IoT hub.
40-
- Get-AzureRmIotHubRegistryStatistic
41-
- Gets the registry statistics for an Azure IoT hub.
42-
- Get-AzureRmIotHubValidSku
43-
- Gets the list of valid Skus to which an existing Azure IoT hub can transition to.
44-
- New-AzureRmIotHub
45-
- Creates a new Azure IoT hub.
46-
- New-AzureRmIotHubExportDevices
47-
- Starts a new job for exporting the devices of an Azure IoT hub.
48-
- New-AzureRmIotHubImportDevices
49-
- Starts a new job for importing the devices of an Azure IoT hub.
50-
- Remove-AzureRmIotHub
51-
- Removes an Azure IoT hub.
52-
- Remove-AzureRmIotHubEventHubConsumerGroup
53-
- Removes a consumer group for the specified event hub endpoint of a give Azure IoT hub.
54-
- Remove-AzureRmIotHubKey
55-
- Removes a key from an Azure IoT hub.
56-
- Set-AzureRmIotHub
57-
- Updates the properties of an Azure IoT hub.
22+
## Version 1.0.1
23+
* Fixes deserialization issue for one of the properties of PSIotHub

src/ResourceManager/IotHub/Commands.IotHub.Test/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.0.1")]
36+
[assembly: AssemblyFileVersion("1.0.1")]

src/ResourceManager/IotHub/Commands.IotHub/Commands.IotHub.csproj

Lines changed: 12 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -21,18 +21,18 @@
2121
<ErrorReport>prompt</ErrorReport>
2222
<WarningLevel>4</WarningLevel>
2323
</PropertyGroup>
24-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
25-
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHub</OutputPath>
26-
<DefineConstants>TRACE;SIGN</DefineConstants>
27-
<Optimize>true</Optimize>
28-
<DebugType>pdbonly</DebugType>
29-
<PlatformTarget>AnyCPU</PlatformTarget>
30-
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
31-
<SignAssembly>true</SignAssembly>
32-
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
33-
<DelaySign>true</DelaySign>
34-
<Prefer32Bit>false</Prefer32Bit>
35-
</PropertyGroup>
24+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
25+
<OutputPath>..\..\..\Package\Release\ResourceManager\AzureResourceManager\AzureRM.IotHub</OutputPath>
26+
<DefineConstants>TRACE;SIGN</DefineConstants>
27+
<Optimize>true</Optimize>
28+
<DebugType>pdbonly</DebugType>
29+
<PlatformTarget>AnyCPU</PlatformTarget>
30+
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
31+
<SignAssembly>true</SignAssembly>
32+
<AssemblyOriginatorKeyFile>MSSharedLibKey.snk</AssemblyOriginatorKeyFile>
33+
<DelaySign>true</DelaySign>
34+
<Prefer32Bit>false</Prefer32Bit>
35+
</PropertyGroup>
3636
<ItemGroup>
3737
<Reference Include="Hyak.Common">
3838
<HintPath>..\..\..\packages\Hyak.Common.1.0.3\lib\portable-net403+win+wpa81\Hyak.Common.dll</HintPath>
@@ -105,7 +105,6 @@
105105
<Compile Include="Models\PSAccessRights.cs" />
106106
<Compile Include="Models\PSCapabilities.cs" />
107107
<Compile Include="Models\PSCloudToDeviceProperties.cs" />
108-
<Compile Include="Models\PSDiagnosticCategory.cs" />
109108
<Compile Include="Models\PSEventHubInputProperties.cs" />
110109
<Compile Include="Models\PSEventHubProperties.cs" />
111110
<Compile Include="Models\PSExportDevicesRequest.cs" />
@@ -126,7 +125,6 @@
126125
<Compile Include="Models\PSIotHubSkuTier.cs" />
127126
<Compile Include="Models\PSIotHubJobStatus.cs" />
128127
<Compile Include="Models\PSMessagingEndpointProperties.cs" />
129-
<Compile Include="Models\PSOperationMonitoringLevel.cs" />
130128
<Compile Include="Models\PSOperationsMonitoringProperties.cs" />
131129
<Compile Include="Models\PSSBAccessRights.cs" />
132130
<Compile Include="Models\PSSharedAccessAuthorizationRule.cs" />

src/ResourceManager/IotHub/Commands.IotHub/Models/PSDiagnosticCategory.cs

Lines changed: 0 additions & 30 deletions
This file was deleted.

src/ResourceManager/IotHub/Commands.IotHub/Models/PSOperationMonitoringLevel.cs

Lines changed: 0 additions & 32 deletions
This file was deleted.

src/ResourceManager/IotHub/Commands.IotHub/Models/PSOperationsMonitoringProperties.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ public class PSOperationsMonitoringProperties
2222
/// <summary>
2323
/// </summary>
2424
[JsonProperty(PropertyName = "events")]
25-
public IDictionary<PSDiagnosticCategory, PSOperationMonitoringLevel> OperationMonitoringEvents;
25+
public IDictionary<string, string> OperationMonitoringEvents;
2626
}
2727
}

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.0")]
36-
[assembly: AssemblyFileVersion("1.0.0")]
35+
[assembly: AssemblyVersion("1.0.1")]
36+
[assembly: AssemblyFileVersion("1.0.1")]

0 commit comments

Comments
 (0)