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
9 changes: 5 additions & 4 deletions sdk/devspaces/Azure.ResourceManager.DevSpaces/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Release History

## 1.0.0-beta.3 (Unreleased)
## 1.0.0-beta.3 (2023-05-29)

### Features Added

### Breaking Changes

### Bugs Fixed
- Enable the model factory feature for model mocking, more information can be found [here](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-mocking-factory-builder).

### Other Changes

- Upgraded dependent Azure.Core to 1.32.0.
- Upgraded dependent Azure.ResourceManager to 1.6.0.

## 1.0.0-beta.2 (2023-02-16)

### Features Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,14 @@ public static partial class DevSpacesExtensions
}
namespace Azure.ResourceManager.DevSpaces.Models
{
public static partial class ArmDevSpacesModelFactory
{
public static Azure.ResourceManager.DevSpaces.Models.ContainerHostMapping ContainerHostMapping(string containerHostResourceId = null, string mappedControllerResourceId = null) { throw null; }
public static Azure.ResourceManager.DevSpaces.Models.ControllerConnectionDetails ControllerConnectionDetails(Azure.ResourceManager.DevSpaces.Models.OrchestratorSpecificConnectionDetails orchestratorSpecificConnectionDetails = null) { throw null; }
public static Azure.ResourceManager.DevSpaces.Models.ControllerConnectionDetailsList ControllerConnectionDetailsList(System.Collections.Generic.IEnumerable<Azure.ResourceManager.DevSpaces.Models.ControllerConnectionDetails> connectionDetailsList = null) { throw null; }
public static Azure.ResourceManager.DevSpaces.ControllerData ControllerData(Azure.Core.ResourceIdentifier id = null, string name = null, Azure.Core.ResourceType resourceType = default(Azure.Core.ResourceType), Azure.ResourceManager.Models.SystemData systemData = null, System.Collections.Generic.IDictionary<string, string> tags = null, Azure.Core.AzureLocation location = default(Azure.Core.AzureLocation), Azure.ResourceManager.DevSpaces.Models.DevSpacesSku sku = null, Azure.ResourceManager.DevSpaces.Models.ProvisioningState? provisioningState = default(Azure.ResourceManager.DevSpaces.Models.ProvisioningState?), string hostSuffix = null, string dataPlaneFqdn = null, string targetContainerHostApiServerFqdn = null, string targetContainerHostResourceId = null, string targetContainerHostCredentialsBase64 = null) { throw null; }
public static Azure.ResourceManager.DevSpaces.Models.KubernetesConnectionDetails KubernetesConnectionDetails(string kubeConfig = null) { throw null; }
}
public partial class ContainerHostMapping
{
public ContainerHostMapping() { }
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ Run `dotnet build /t:GenerateCode` to generate code.
``` yaml

azure-arm: true
generate-model-factory: false
csharp: true
library-name: DevSpaces
namespace: Azure.ResourceManager.DevSpaces
Expand Down
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Release History

## 1.1.0-beta.1 (Unreleased)
## 1.1.0-beta.1 (2023-05-29)

### Features Added

### Breaking Changes

### Bugs Fixed
- Enable the model factory feature for model mocking, more information can be found [here](https://azure.github.io/azure-sdk/dotnet_introduction.html#dotnet-mocking-factory-builder).

### Other Changes

- Upgraded dependent Azure.Core to 1.32.0.
- Upgraded dependent Azure.ResourceManager to 1.6.0.

## 1.0.1 (2023-02-16)

### Other Changes
Expand Down
Loading