Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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,17 @@
# Release History

## 1.5.0-beta.1 (Unreleased)
## 1.5.0-beta.1 (2025-10-09)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes
- Upgraded api-version tag 'package-2024-03' to 'package-2025-01-01'. Tag detail available at https://github.com/Azure/azure-rest-api-specs/blob/33a2135c8115465b292b71a521ea50c1cc336c8c/specification/app/resource-manager/Microsoft.App/ContainerApps/readme.md.
- Support Logic App Extension
- Support async for connected environment sub resources
- Support ingressConfiguration
- Support advanced ingress
- Support private endpoint connections for managed environment
- Support app health check configuration for DAPR
- Support key vault for environment storage

## 1.4.1 (2025-08-11)

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 @@ -22,5 +22,26 @@ public static ContainerAppManagedEnvironmentStorageData ContainerAppManagedEnvir
{
return ContainerAppManagedEnvironmentStorageData(id: id, name: name, resourceType: resourceType, systemData: systemData, properties: new ManagedEnvironmentStorageProperties() { AzureFile = managedEnvironmentStorageAzureFile });
}

/// <summary> Initializes a new instance of <see cref="AppContainers.ContainerAppConnectedEnvironmentStorageData"/>. </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="connectedEnvironmentStorageAzureFile"> Storage properties. </param>
/// <returns> A new <see cref="AppContainers.ContainerAppConnectedEnvironmentStorageData"/> instance for mocking. </returns>
public static ContainerAppConnectedEnvironmentStorageData ContainerAppConnectedEnvironmentStorageData(ResourceIdentifier id = null, string name = null, ResourceType resourceType = default, SystemData systemData = null, ContainerAppAzureFileProperties connectedEnvironmentStorageAzureFile = null)
{
return new ContainerAppConnectedEnvironmentStorageData(
id,
name,
resourceType,
systemData,
new Models.ConnectedEnvironmentStorageProperties()
{
AzureFile = connectedEnvironmentStorageAzureFile
},
serializedAdditionalRawData: null);
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;
using Azure.ResourceManager.AppContainers.Models;

namespace Azure.ResourceManager.AppContainers
{
public partial class ContainerAppConnectedEnvironmentCertificateResource
{
/// <summary>
/// Patches a certificate. Currently only patching of tags is supported
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName}/certificates/{certificateName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ConnectedEnvironmentsCertificates_Update</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2025-07-01</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="ContainerAppConnectedEnvironmentCertificateResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="patch"> Properties of a certificate that need to be updated. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="patch"/> is null. </exception>
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Response<Azure.ResourceManager.AppContainers.ContainerAppConnectedEnvironmentCertificateResource> Update(ContainerAppCertificatePatch patch, CancellationToken cancellationToken = default)
{
var lro = Update(WaitUntil.Completed, patch, cancellationToken);
return Response.FromValue(lro.Value, lro.GetRawResponse());
}

/// <summary>
/// Patches a certificate. Currently only patching of tags is supported
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName}/certificates/{certificateName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ConnectedEnvironmentsCertificates_Update</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2025-07-01</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="ContainerAppConnectedEnvironmentCertificateResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="patch"> Properties of a certificate that need to be updated. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentNullException"> <paramref name="patch"/> is null. </exception>
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual async Task<Response<Azure.ResourceManager.AppContainers.ContainerAppConnectedEnvironmentCertificateResource>> UpdateAsync(ContainerAppCertificatePatch patch, CancellationToken cancellationToken = default)
{
var lro = await UpdateAsync(WaitUntil.Completed, patch, cancellationToken).ConfigureAwait(false);
return Response.FromValue(lro.Value, lro.GetRawResponse());
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System;
using System.ComponentModel;
using System.Threading;
using System.Threading.Tasks;

namespace Azure.ResourceManager.AppContainers
{
public partial class ContainerAppConnectedEnvironmentResource
{
/// <summary>
/// Patches a Managed Environment. Only patching of tags is supported currently
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ConnectedEnvironments_Update</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2025-01-01</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="ContainerAppConnectedEnvironmentResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="cancellationToken"> The cancellation token to use. </param>
[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Response<ContainerAppConnectedEnvironmentResource> Update(CancellationToken cancellationToken = default)
{
throw new InvalidOperationException();
}

/// <summary>
/// Patches a Managed Environment. Only patching of tags is supported currently
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>ConnectedEnvironments_Update</description>
/// </item>
/// <item>
/// <term>Default Api Version</term>
/// <description>2025-01-01</description>
/// </item>
/// <item>
/// <term>Resource</term>
/// <description><see cref="ContainerAppConnectedEnvironmentResource"/></description>
/// </item>
/// </list>
/// </summary>
/// <param name="cancellationToken"> The cancellation token to use. </param>
[Obsolete]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Task<Response<ContainerAppConnectedEnvironmentResource>> UpdateAsync(CancellationToken cancellationToken = default)
{
throw new InvalidOperationException();
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

#nullable disable

using System.ComponentModel;
using Azure.ResourceManager.AppContainers.Models;
using Azure.ResourceManager.Models;

namespace Azure.ResourceManager.AppContainers
{
public partial class ContainerAppConnectedEnvironmentStorageData : ResourceData
{
/// <summary> Azure file properties. </summary>
[WirePath("properties.azureFile")]
[EditorBrowsable(state: EditorBrowsableState.Never)]
public ContainerAppAzureFileProperties ConnectedEnvironmentStorageAzureFile
{
get => Properties is null ? default : Properties.AzureFile;
set
{
if (Properties is null)
Properties = new ConnectedEnvironmentStorageProperties();
Properties.AzureFile = value;
}
}
}
}
Loading
Loading