Skip to content

Commit 121301b

Browse files
committed
Fix date values
1 parent 876e728 commit 121301b

9 files changed

+33
-24
lines changed

articles/azure-app-configuration/enable-dynamic-configuration-dotnet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: '.NET Framework Tutorial: dynamic configuration in Azure App Configuration'
2+
title: '.NET Framework: dynamic configuration in App Configuration'
33
description: In this tutorial, you learn how to dynamically update the configuration data for .NET Framework apps using Azure App Configuration.
44
services: azure-app-configuration
55
author: maud-lv
66
ms.service: azure-app-configuration
77
ms.devlang: csharp
88
ms.custom: devx-track-csharp, devx-track-dotnet
99
ms.topic: tutorial
10-
ms.date: 03/20/2023
10+
ms.date: 03/07/2024
1111
ms.author: malev
1212
#Customer intent: I want to dynamically update my .NET Framework app to use the latest configuration data in App Configuration.
1313
---

articles/azure-app-configuration/enable-dynamic-configuration-java-spring-app.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
title: Use dynamic configuration in a Spring Boot app
33
titleSuffix: Azure App Configuration
4-
description: Learn how to dynamically update configuration data for Spring Boot apps
4+
description: Learn how to dynamically update configuration data for Spring Boot apps using Azure App Configuration.
55
services: azure-app-configuration
66
author: mrm9084
77
ms.service: azure-app-configuration
88
ms.devlang: java
99
ms.topic: tutorial
10-
ms.date: 04/11/2023
10+
ms.date: 03/07/2024
1111
ms.custom: devx-track-java, devx-track-extended-java
1212
ms.author: mametcal
1313
#Customer intent: As a Java Spring developer, I want to dynamically update my app to use the latest configuration data in App Configuration.

articles/azure-app-configuration/enable-dynamic-configuration-java-spring-push-refresh.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Tutorial: Use dynamic configuration using push refresh in a single instance Java Spring app"
2+
title: "Use dynamic configuration using push refresh - Java Spring"
33
titleSuffix: Azure App Configuration
44
description: In this tutorial, you learn how to dynamically update the configuration data for a Java Spring app using push refresh
55
services: azure-app-configuration
@@ -9,7 +9,7 @@ ms.service: azure-app-configuration
99
ms.devlang: java
1010
ms.custom: devx-track-extended-java
1111
ms.topic: tutorial
12-
ms.date: 09/27/2023
12+
ms.date: 03/07/2024
1313
ms.author: mametcal
1414
#Customer intent: I want to use push refresh to dynamically update my app to use the latest configuration data in App Configuration.
1515
---

articles/azure-app-configuration/howto-convert-to-the-new-spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.devlang: java
77
author: mrm9084
88
ms.author: mametcal
99
ms.topic: how-to
10-
ms.date: 09/27/2023
10+
ms.date: 01/13/2024
1111
---
1212

1313
# Convert to the new App Configuration library for Spring Boot

articles/azure-app-configuration/quickstart-feature-flag-spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ author: mrm9084
55
ms.service: azure-app-configuration
66
ms.devlang: java
77
ms.topic: quickstart
8-
ms.date: 09/27/2023
8+
ms.date: 04/13/2024
99
ms.author: mametcal
1010
ms.custom: devx-track-java, mode-other
1111
#Customer intent: As an Spring Boot developer, I want to use feature flags to control feature availability quickly and confidently.

articles/azure-app-configuration/quickstart-javascript-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ ms.service: azure-app-configuration
77
ms.devlang: javascript
88
ms.topic: quickstart
99
ms.custom: quickstart, mode-other, devx-track-js
10-
ms.date: 10/12/2023
10+
ms.date: 04/18/2024
1111
ms.author: yanzh
1212
#Customer intent: As a JavaScript developer, I want to manage all my app settings in one place.
1313
---

articles/azure-app-configuration/quickstart-python.md

Lines changed: 19 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Using Azure App Configuration in Python apps with the Azure SDK for Python | Microsoft Learn
2+
title: Using Azure App Configuration in Python apps with the Azure SDK for Python
33
description: This document shows examples of how to use the Azure SDK for Python to access your data in Azure App Configuration.
44
services: azure-app-configuration
55
author: maud-lv
66
ms.service: azure-app-configuration
77
ms.devlang: python
88
ms.topic: sample
99
ms.custom: devx-track-python, mode-other, engagement-fy23, py-fresh-zinc
10-
ms.date: 11/17/2022
10+
ms.date: 11/20/2023
1111
ms.author: malev
1212
#Customer intent: As a Python developer, I want to use the Azure SDK for Python to access my data in Azure App Configuration.
1313
---
@@ -149,14 +149,23 @@ The sample code snippets in this section show you how to perform common operatio
149149

150150
Learn below how to:
151151

152-
- [Connect to an App Configuration store](#connect-to-an-app-configuration-store)
153-
- [Get a configuration setting](#get-a-configuration-setting)
154-
- [Add a configuration setting](#add-a-configuration-setting)
155-
- [Get a list of configuration settings](#get-a-list-of-configuration-settings)
156-
- [Lock a configuration setting](#lock-a-configuration-setting)
157-
- [Unlock a configuration setting](#unlock-a-configuration-setting)
158-
- [Update a configuration setting](#update-a-configuration-setting)
159-
- [Delete a configuration setting](#delete-a-configuration-setting)
152+
- [Create a Python app with the Azure SDK for Python](#create-a-python-app-with-the-azure-sdk-for-python)
153+
- [Prerequisites](#prerequisites)
154+
- [Create a key-value](#create-a-key-value)
155+
- [Set up the Python app](#set-up-the-python-app)
156+
- [Configure your App Configuration connection string](#configure-your-app-configuration-connection-string)
157+
- [Code samples](#code-samples)
158+
- [Connect to an App Configuration store](#connect-to-an-app-configuration-store)
159+
- [Get a configuration setting](#get-a-configuration-setting)
160+
- [Add a configuration setting](#add-a-configuration-setting)
161+
- [Get a list of configuration settings](#get-a-list-of-configuration-settings)
162+
- [Lock a configuration setting](#lock-a-configuration-setting)
163+
- [Unlock a configuration setting](#unlock-a-configuration-setting)
164+
- [Update a configuration setting](#update-a-configuration-setting)
165+
- [Delete a configuration setting](#delete-a-configuration-setting)
166+
- [Run the app](#run-the-app)
167+
- [Clean up resources](#clean-up-resources)
168+
- [Next steps](#next-steps)
160169

161170
### Connect to an App Configuration store
162171

articles/azure-app-configuration/use-feature-flags-spring-boot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ manager: zhenlan
77
ms.service: azure-app-configuration
88
ms.devlang: java
99
ms.topic: tutorial
10-
ms.date: 09/27/2023
10+
ms.date: 01/13/2024
1111
ms.author: mametcal
1212
ms.custom: mvc, devx-track-java
1313

articles/reliability/migrate-app-configuration.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: Migrate App Configuration to a region with availability zone support
3-
description: Learn how to migrate Azure App Configuration to availability zone support.
2+
title: Migrate App Configuration to availability zone support
3+
description: Learn how to migrate an Azure App Configuration store to an Azure region with availability zone support.
44
author: maud-lv
55
ms.service: azure-app-configuration
66
ms.topic: conceptual
7-
ms.date: 09/10/2022
7+
ms.date: 10/24/2024
88
ms.author: malev
99
ms.custom: references_regions, subject-reliability
1010
---
@@ -15,7 +15,7 @@ Azure App Configuration supports Azure availability zones. This guide describes
1515

1616
## Availability zone support in Azure App Configuration
1717

18-
Azure App Configuration supports Azure availability zones to protect your application and data from single datacenter failures. All availability zone-enabled regions have a minimum of three availability zones, and each availability zone is composed of one or more datacenters equipped with independent power, cooling, and networking infrastructure. In regions where App Configuration supports availability zones, all stores have availability zones enabled by default.
18+
Azure App Configuration supports Azure availability zones to protect your application and data from single data center failures. All availability zone-enabled regions have a minimum of three availability zones, and each availability zone is composed of one or more data centers equipped with independent power, cooling, and networking infrastructure. In regions where App Configuration supports availability zones, all stores have availability zones enabled by default.
1919

2020
[!INCLUDE [Azure App Configuration availability zones table](../../includes/azure-app-configuration-availability-zones.md)]
2121

0 commit comments

Comments
 (0)