Skip to content

Commit

Permalink
enable model factory (#36561)
Browse files Browse the repository at this point in the history
  • Loading branch information
dvbb authored May 29, 2023
1 parent c7edabd commit d21105c
Show file tree
Hide file tree
Showing 20 changed files with 1,461 additions and 25 deletions.
9 changes: 5 additions & 4 deletions sdk/fluidrelay/Azure.ResourceManager.FluidRelay/CHANGELOG.md
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-30)

### 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
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,13 @@ protected FluidRelayServerResource() { }
}
namespace Azure.ResourceManager.FluidRelay.Models
{
public static partial class ArmFluidRelayModelFactory
{
public static Azure.ResourceManager.FluidRelay.FluidRelayContainerData FluidRelayContainerData(Azure.Core.ResourceIdentifier id = null, string name = null, Azure.Core.ResourceType resourceType = default(Azure.Core.ResourceType), Azure.ResourceManager.Models.SystemData systemData = null, System.Guid? frsTenantId = default(System.Guid?), System.Guid? frsContainerId = default(System.Guid?), Azure.ResourceManager.FluidRelay.Models.FluidRelayProvisioningState? provisioningState = default(Azure.ResourceManager.FluidRelay.Models.FluidRelayProvisioningState?), System.DateTimeOffset? createdOn = default(System.DateTimeOffset?), System.DateTimeOffset? lastAccessOn = default(System.DateTimeOffset?)) { throw null; }
public static Azure.ResourceManager.FluidRelay.Models.FluidRelayEndpoints FluidRelayEndpoints(System.Collections.Generic.IEnumerable<string> ordererEndpoints = null, System.Collections.Generic.IEnumerable<string> storageEndpoints = null, System.Collections.Generic.IEnumerable<string> serviceEndpoints = null) { throw null; }
public static Azure.ResourceManager.FluidRelay.FluidRelayServerData FluidRelayServerData(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.Models.ManagedServiceIdentity identity = null, System.Guid? frsTenantId = default(System.Guid?), Azure.ResourceManager.FluidRelay.Models.FluidRelayEndpoints fluidRelayEndpoints = null, Azure.ResourceManager.FluidRelay.Models.FluidRelayProvisioningState? provisioningState = default(Azure.ResourceManager.FluidRelay.Models.FluidRelayProvisioningState?), Azure.ResourceManager.FluidRelay.Models.CmkEncryptionProperties customerManagedKeyEncryption = null, Azure.ResourceManager.FluidRelay.Models.FluidRelayStorageSku? storageSku = default(Azure.ResourceManager.FluidRelay.Models.FluidRelayStorageSku?)) { throw null; }
public static Azure.ResourceManager.FluidRelay.Models.FluidRelayServerKeys FluidRelayServerKeys(string primaryKey = null, string secondaryKey = null) { throw null; }
}
public partial class CmkEncryptionProperties
{
public CmkEncryptionProperties() { }
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: FluidRelay
namespace: Azure.ResourceManager.FluidRelay
Expand Down
9 changes: 5 additions & 4 deletions sdk/frontdoor/Azure.ResourceManager.FrontDoor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
# Release History

## 1.2.0-beta.1 (Unreleased)
## 1.2.0-beta.1 (2023-05-30)

### 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.1.0 (2023-02-16)

### Features Added
Expand Down
Loading

0 comments on commit d21105c

Please sign in to comment.