Skip to content

Commit

Permalink
Preparation for Azure.Core.Experimental release 0.1.0-preview.29 (#38060
Browse files Browse the repository at this point in the history
)

* Prepare Azure.Core.Experimental release

* update

* for Krzysztof

* Export API

* fix

* fix
  • Loading branch information
annelo-msft authored Aug 7, 2023
1 parent 923fd0e commit 2684d2c
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 13 deletions.
10 changes: 3 additions & 7 deletions sdk/core/Azure.Core.Experimental/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
# Release History

## 0.1.0-preview.29 (Unreleased)
## 0.1.0-preview.29 (2023-08-07)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Added SchemaValidator and LruCache types for use with Azure.Data.SchemaRegistry preview library.
- Added CloudMachine and ProvisionableTemplateAttribute types for use with CloudMachine.

## 0.1.0-preview.28 (2023-07-11)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Azure
public partial class CloudMachine
{
public CloudMachine(System.IO.Stream configurationContent) { }
public CloudMachine(string configurationFile = "cloudconfig.json") { }
public CloudMachine(string configurationFile = "cloudmachine.json") { }
public string DisplayName { get { throw null; } set { } }
public string Id { get { throw null; } }
public string Region { get { throw null; } }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Azure
public partial class CloudMachine
{
public CloudMachine(System.IO.Stream configurationContent) { }
public CloudMachine(string configurationFile = "cloudconfig.json") { }
public CloudMachine(string configurationFile = "cloudmachine.json") { }
public string DisplayName { get { throw null; } set { } }
public string Id { get { throw null; } }
public string Region { get { throw null; } }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ namespace Azure
public partial class CloudMachine
{
public CloudMachine(System.IO.Stream configurationContent) { }
public CloudMachine(string configurationFile = "cloudconfig.json") { }
public CloudMachine(string configurationFile = "cloudmachine.json") { }
public string DisplayName { get { throw null; } set { } }
public string Id { get { throw null; } }
public string Region { get { throw null; } }
Expand Down
2 changes: 1 addition & 1 deletion sdk/core/Azure.Core.Experimental/src/CloudMachine.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public static CloudMachine Create(string subscriptionId, string region)
/// </summary>
/// <param name="configurationFile"></param>
/// <exception cref="InvalidCloudMachineConfigurationException"></exception>
public CloudMachine(string configurationFile = "cloudconfig.json")
public CloudMachine(string configurationFile = "cloudmachine.json")
{
try
{
Expand Down
4 changes: 2 additions & 2 deletions sdk/core/Azure.Core.Experimental/tests/CloudMachineTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void DefaultCtor()
try
{
var cm = CloudMachine.Create(Guid.NewGuid().ToString(), "westus2");
cm.Save("cloudconfig.json");
cm.Save("cloudmachine.json");
var deserialized = new CloudMachine();
Assert.AreEqual(cm.Id, deserialized.Id);
Assert.AreEqual(cm.DisplayName, deserialized.DisplayName);
Expand All @@ -39,7 +39,7 @@ public void DefaultCtor()
}
finally
{
File.Delete("cloudconfig.json");
File.Delete("cloudmachine.json");
}
}
}
Expand Down

0 comments on commit 2684d2c

Please sign in to comment.