Skip to content
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
4 changes: 2 additions & 2 deletions eng/mgmt/mgmtmetadata/iothub_resource-manager.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\azure-sdk-for-net\sdk
2019-07-09 18:14:24 UTC
2019-09-23 20:59:25 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
Commit: 2a65faa9ddbf9970708ba507eeb8071a2d310b57
Commit: a942bf5703a34a66ca0fb7190bdb6e0c0875e12a
AutoRest information
Requested version: latest
Bootstrapper version: autorest@2.0.4283
4 changes: 2 additions & 2 deletions sdk/iothub/Microsoft.Azure.Management.IotHub/AzSdk.RP.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!--This file and it's contents are updated at build time moving or editing might result in build failure. Take due deligence while editing this file-->
<PropertyGroup>
<AzureApiTag>Devices_2019-03-22-preview;</AzureApiTag>
<AzureApiTag>Devices_2019-07-01-preview;</AzureApiTag>
<PackageTags>$(PackageTags);$(CommonTags);$(AzureApiTag);</PackageTags>
</PropertyGroup>
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ private void Initialize()
Certificates = new CertificatesOperations(this);
IotHub = new IotHubOperations(this);
BaseUri = new System.Uri("https://management.azure.com");
ApiVersion = "2019-03-22-preview";
ApiVersion = "2019-07-01-preview";
AcceptLanguage = "en-US";
LongRunningOperationRetryTimeout = 30;
GenerateClientRequestId = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ public RouteProperties()
/// <param name="source">The source that the routing rule is to be
/// applied to, such as DeviceMessages. Possible values include:
/// 'Invalid', 'DeviceMessages', 'TwinChangeEvents',
/// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents'</param>
/// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents',
/// 'DigitalTwinChangeEvents'</param>
/// <param name="endpointNames">The list of endpoints to which messages
/// that satisfy the condition are routed. Currently only one endpoint
/// is allowed.</param>
Expand Down Expand Up @@ -76,7 +77,7 @@ public RouteProperties()
/// Gets or sets the source that the routing rule is to be applied to,
/// such as DeviceMessages. Possible values include: 'Invalid',
/// 'DeviceMessages', 'TwinChangeEvents', 'DeviceLifecycleEvents',
/// 'DeviceJobLifecycleEvents'
/// 'DeviceJobLifecycleEvents', 'DigitalTwinChangeEvents'
/// </summary>
[JsonProperty(PropertyName = "source")]
public string Source { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ public static class RoutingSource
public const string TwinChangeEvents = "TwinChangeEvents";
public const string DeviceLifecycleEvents = "DeviceLifecycleEvents";
public const string DeviceJobLifecycleEvents = "DeviceJobLifecycleEvents";
public const string DigitalTwinChangeEvents = "DigitalTwinChangeEvents";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ public TestAllRoutesInput()
/// </summary>
/// <param name="routingSource">Routing source. Possible values
/// include: 'Invalid', 'DeviceMessages', 'TwinChangeEvents',
/// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents'</param>
/// 'DeviceLifecycleEvents', 'DeviceJobLifecycleEvents',
/// 'DigitalTwinChangeEvents'</param>
/// <param name="message">Routing message</param>
/// <param name="twin">Routing Twin Reference</param>
public TestAllRoutesInput(string routingSource = default(string), RoutingMessage message = default(RoutingMessage), RoutingTwin twin = default(RoutingTwin))
Expand All @@ -50,7 +51,7 @@ public TestAllRoutesInput()
/// <summary>
/// Gets or sets routing source. Possible values include: 'Invalid',
/// 'DeviceMessages', 'TwinChangeEvents', 'DeviceLifecycleEvents',
/// 'DeviceJobLifecycleEvents'
/// 'DeviceJobLifecycleEvents', 'DigitalTwinChangeEvents'
/// </summary>
[JsonProperty(PropertyName = "routingSource")]
public string RoutingSource { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_iotHubClient
{
return new Tuple<string, string, string>[]
{
new Tuple<string, string, string>("Devices", "Certificates", "2019-03-22-preview"),
new Tuple<string, string, string>("Devices", "IotHub", "2019-03-22-preview"),
new Tuple<string, string, string>("Devices", "IotHubResource", "2019-03-22-preview"),
new Tuple<string, string, string>("Devices", "Operations", "2019-03-22-preview"),
new Tuple<string, string, string>("Devices", "ResourceProviderCommon", "2019-03-22-preview"),
new Tuple<string, string, string>("Devices", "Certificates", "2019-07-01-preview"),
new Tuple<string, string, string>("Devices", "IotHub", "2019-07-01-preview"),
new Tuple<string, string, string>("Devices", "IotHubResource", "2019-07-01-preview"),
new Tuple<string, string, string>("Devices", "Operations", "2019-07-01-preview"),
new Tuple<string, string, string>("Devices", "ResourceProviderCommon", "2019-07-01-preview"),
}.AsEnumerable();
}
}
Expand All @@ -33,7 +33,7 @@ public static IEnumerable<Tuple<string, string, string>> ApiInfo_iotHubClient
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/iothub/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
public static readonly String GithubCommidId = "2a65faa9ddbf9970708ba507eeb8071a2d310b57";
public static readonly String GithubCommidId = "a942bf5703a34a66ca0fb7190bdb6e0c0875e12a";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
<Description>Provides management capabilities for Microsoft Azure IotHub.</Description>
<AssemblyTitle>Microsoft Azure IotHub Management</AssemblyTitle>
<AssemblyName>Microsoft.Azure.Management.IotHub</AssemblyName>
<Version>2.9.0-preview</Version>
<Version>2.10.0-preview</Version>
<PackageTags>Microsoft Azure IotHub;IotHub management;IotHub;</PackageTags>
<PackageReleaseNotes>Manual failover update for IotHub.</PackageReleaseNotes>
<PackageReleaseNotes>Regenerated IotHub Sdk with updated routing source enum.</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<TargetFrameworks>$(SdkTargetFx)</TargetFrameworks>
Expand All @@ -19,4 +19,4 @@
<!-- Please do not move/edit code below this line -->
<Import Condition="Exists('$([MSBuild]::GetPathOfFileAbove(AzSdk.RP.props))')" Project="$([MSBuild]::GetPathOfFileAbove('AzSdk.RP.props'))" />
<!-- Please do not move/edit code above this line -->
</Project>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
[assembly: NeutralResourcesLanguage("en")]
[assembly: AssemblyVersion("2.9.0.0")]
[assembly: AssemblyFileVersion("2.9.0.0")]
[assembly: AssemblyVersion("2.10.0.0")]
[assembly: AssemblyFileVersion("2.10.0.0")]
Loading