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
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
# Release History

## 1.3.0-beta.3 (Unreleased)
## 1.3.0-beta.3 (2025-06-23)

### Features Added

### Breaking Changes

### Bugs Fixed
- Upgraded api-version tag from 'package-2024-09-preview' to 'package-2025-03-preview'. Tag details available at https://github.com/Azure/azure-rest-api-specs/blob/57ce30e761ef4d39e81471cfb732f39043f0b278/specification/servicefabricmanagedclusters/resource-manager/readme.md.

### Other Changes
Cluster features
- Fault simulation operations
- AllocatedOutboundPorts
- VMImage

Nodetype features
- Fault simulation operations
- New DiskTypes options PremiumV2_LRS, StandardSSD_ZRS, Premium_ZRS
- SecurityEncryptionType
- New actions Deallocate, Start, Redeploy
- ZoneBalance

## 1.3.0-beta.2 (2024-11-21)

Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters",
"Tag": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters_1a660306c4"
"Tag": "net/servicefabricmanagedclusters/Azure.ResourceManager.ServiceFabricManagedClusters_95465ae123"
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable
using Azure.Core;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Models
{
[CodeGenModel("UnknownManagedServicePartitionScheme")]
internal partial class UnknownPartition
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using Azure.Core;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Models
{
[CodeGenModel("UnknownManagedServiceScalingMechanism")]
internal partial class UnknownScalingMechanism
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using Azure.Core;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Models
{
[CodeGenModel("UnknownManagedServiceScalingTrigger")]
internal partial class UnknownScalingTrigger
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using Azure.Core;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Models
{
[CodeGenModel("UnknownManagedServicePlacementPolicy")]
internal partial class UnknownServicePlacementPolicy
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

// <auto-generated/>

#nullable disable

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Net;
using Azure.Core;
using Azure.ResourceManager.Models;

namespace Azure.ResourceManager.ServiceFabricManagedClusters.Models
{
/// <summary> Model factory for models. </summary>
public static partial class ArmServiceFabricManagedClustersModelFactory
{
/// <summary> Initializes a new instance of <see cref="ServiceFabricManagedClusters.ServiceFabricManagedApplicationData"/>. </summary>
/// <param name="id"> The id. </param>
/// <param name="name"> The name. </param>
/// <param name="resourceType"> The resourceType. </param>
/// <param name="systemData"> The systemData. </param>
/// <param name="tags"> The tags. </param>
/// <param name="location"> The location. </param>
/// <param name="identity"> Describes the managed identities for an Azure resource. </param>
/// <param name="provisioningState"> The current deployment or provisioning state, which only appears in the response. </param>
/// <param name="version">
/// The version of the application type as defined in the application manifest.
/// This name must be the full Arm Resource ID for the referenced application type version.
/// </param>
/// <param name="parameters"> List of application parameters with overridden values from their default values specified in the application manifest. </param>
/// <param name="upgradePolicy"> Describes the policy for a monitored application upgrade. </param>
/// <param name="managedIdentities"> List of user assigned identities for the application, each mapped to a friendly name. </param>
/// <returns> A new <see cref="ServiceFabricManagedClusters.ServiceFabricManagedApplicationData"/> instance for mocking. </returns>
public static ServiceFabricManagedApplicationData ServiceFabricManagedApplicationData(ResourceIdentifier id = null, string name = null, ResourceType resourceType = default, SystemData systemData = null, IDictionary<string, string> tags = null, AzureLocation location = default, ManagedServiceIdentity identity = null, string provisioningState = null, string version = null, IDictionary<string, string> parameters = null, ApplicationUpgradePolicy upgradePolicy = null, IEnumerable<ApplicationUserAssignedIdentityInfo> managedIdentities = null)
{
tags ??= new Dictionary<string, string>();
managedIdentities ??= new List<ApplicationUserAssignedIdentityInfo>();
parameters ??= new Dictionary<string, string>();

return new ServiceFabricManagedApplicationData(
id,
name,
resourceType,
systemData,
tags,
location,
managedIdentities?.ToList(),
provisioningState,
version,
parameters,
upgradePolicy,
identity,
serializedAdditionalRawData: null);
}
}
}
Loading