Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Introduce model factory to mgmt SDK batch 20 #36584

Merged
merged 1 commit into from
May 29, 2023
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/quantum/Azure.ResourceManager.Quantum/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-31)

### 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-17)

### Other Changes
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,20 @@ protected QuantumWorkspaceResource() { }
}
namespace Azure.ResourceManager.Quantum.Models
{
public static partial class ArmQuantumModelFactory
{
public static Azure.ResourceManager.Quantum.Models.CheckNameAvailabilityResult CheckNameAvailabilityResult(bool? nameAvailable = default(bool?), string reason = null, string message = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.PricingDetail PricingDetail(string id = null, string value = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.PricingDimension PricingDimension(string id = null, string name = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.ProviderDescription ProviderDescription(string id = null, string name = null, Azure.ResourceManager.Quantum.Models.ProviderProperties properties = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.ProviderProperties ProviderProperties(string description = null, string providerType = null, string company = null, string defaultEndpoint = null, Azure.ResourceManager.Quantum.Models.ProviderPropertiesAad aad = null, Azure.ResourceManager.Quantum.Models.ProviderPropertiesManagedApplication managedApplication = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.TargetDescription> targets = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.SkuDescription> skus = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.QuotaDimension> quotaDimensions = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.PricingDimension> pricingDimensions = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.ProviderPropertiesAad ProviderPropertiesAad(string applicationId = null, System.Guid? tenantId = default(System.Guid?)) { throw null; }
public static Azure.ResourceManager.Quantum.Models.ProviderPropertiesManagedApplication ProviderPropertiesManagedApplication(string publisherId = null, string offerId = null) { throw null; }
public static Azure.ResourceManager.Quantum.QuantumWorkspaceData QuantumWorkspaceData(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.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.Provider> providers = null, Azure.ResourceManager.Quantum.Models.UsableStatus? usable = default(Azure.ResourceManager.Quantum.Models.UsableStatus?), Azure.ResourceManager.Quantum.Models.ProvisioningStatus? provisioningState = default(Azure.ResourceManager.Quantum.Models.ProvisioningStatus?), string storageAccount = null, System.Uri endpointUri = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.QuotaDimension QuotaDimension(string id = null, string scope = null, string period = null, float? quota = default(float?), string name = null, string description = null, string unit = null, string unitPlural = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.SkuDescription SkuDescription(string id = null, string name = null, string version = null, string description = null, System.Uri restrictedAccessUri = null, bool? autoAdd = default(bool?), System.Collections.Generic.IEnumerable<string> targets = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.QuotaDimension> quotaDimensions = null, System.Collections.Generic.IEnumerable<Azure.ResourceManager.Quantum.Models.PricingDetail> pricingDetails = null) { throw null; }
public static Azure.ResourceManager.Quantum.Models.TargetDescription TargetDescription(string id = null, string name = null, string description = null, System.Collections.Generic.IEnumerable<string> acceptedDataFormats = null, System.Collections.Generic.IEnumerable<string> acceptedContentEncodings = null) { throw null; }
}
public partial class CheckNameAvailabilityContent
{
public CheckNameAvailabilityContent() { }
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: Quantum
namespace: Azure.ResourceManager.Quantum
Expand Down
9 changes: 5 additions & 4 deletions sdk/qumulo/Azure.ResourceManager.Qumulo/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-31)

### 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 (2023-05-05)

This release is the first stable release of the Azure Qumulo Management client library.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,11 @@ public QumuloFileSystemResourceData(Azure.Core.AzureLocation location, Azure.Res
}
namespace Azure.ResourceManager.Qumulo.Models
{
public static partial class ArmQumuloModelFactory
{
public static Azure.ResourceManager.Qumulo.Models.MarketplaceDetails MarketplaceDetails(string marketplaceSubscriptionId = null, string planId = null, string offerId = null, string publisherId = null, Azure.ResourceManager.Qumulo.Models.MarketplaceSubscriptionStatus? marketplaceSubscriptionStatus = default(Azure.ResourceManager.Qumulo.Models.MarketplaceSubscriptionStatus?)) { throw null; }
public static Azure.ResourceManager.Qumulo.QumuloFileSystemResourceData QumuloFileSystemResourceData(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, Azure.ResourceManager.Qumulo.Models.MarketplaceDetails marketplaceDetails = null, Azure.ResourceManager.Qumulo.Models.QumuloProvisioningState? provisioningState = default(Azure.ResourceManager.Qumulo.Models.QumuloProvisioningState?), Azure.ResourceManager.Qumulo.Models.StorageSku storageSku = Azure.ResourceManager.Qumulo.Models.StorageSku.Standard, string userDetailsEmail = null, string delegatedSubnetId = null, System.Uri clusterLoginUri = null, System.Collections.Generic.IEnumerable<System.Net.IPAddress> privateIPs = null, string adminPassword = null, int initialCapacity = 0, string availabilityZone = null) { throw null; }
}
public partial class FileSystemResourceUpdateProperties
{
public FileSystemResourceUpdateProperties() { }
Expand Down
Loading