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
1 change: 1 addition & 0 deletions .vscode/cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -454,6 +454,7 @@
{
"filename": "**/sdk/containerapps/**/*",
"words": [
"agentic",
"dapr",
"grpc",
"proto"
Expand Down
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 (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
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Version>1.5.0-beta.1</Version>
<Version>1.5.0</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<ApiCompatVersion>1.4.1</ApiCompatVersion>
<PackageId>Azure.ResourceManager.AppContainers</PackageId>
Expand Down
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>
[EditorBrowsable(EditorBrowsableState.Never)]
public static ContainerAppConnectedEnvironmentStorageData ContainerAppConnectedEnvironmentStorageData(ResourceIdentifier id, string name, ResourceType resourceType, SystemData systemData, ContainerAppAzureFileProperties connectedEnvironmentStorageAzureFile = null)
{
return ContainerAppConnectedEnvironmentStorageData(
id,
name,
resourceType,
systemData,
new ConnectedEnvironmentStorageProperties()
{
AzureFile = connectedEnvironmentStorageAzureFile
});
}
}
}
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("This method is obsolete and will be removed in a future release")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Response<ContainerAppConnectedEnvironmentResource> Update(CancellationToken cancellationToken = default)
{
throw new NotSupportedException("This method is not supported. Use the new version of this factory method instead.");
}

/// <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("This method is obsolete and will be removed in a future release")]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Task<Response<ContainerAppConnectedEnvironmentResource>> UpdateAsync(CancellationToken cancellationToken = default)
{
throw new NotSupportedException("This method is not supported. Use the new version of this factory method instead.");
}
}
}
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