Skip to content

Commit 23fb44b

Browse files
authored
Merge pull request #260666 from MicrosoftDocs/main
12/7/2023 PM Publish
2 parents bd71ee3 + a2e0bb1 commit 23fb44b

File tree

245 files changed

+2550
-1581
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

245 files changed

+2550
-1581
lines changed

articles/ai-services/content-safety/quickstart-protected-material.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The following section walks through a sample request with cURL. Paste the comman
3434
> [!TIP]
3535
> Text size and granularity
3636
>
37-
> The default maximum length for text submissions is **1K** characters. The minimum length is **110** characters. Protected material detection is meant to be run on LLM completions, not user prompts.
37+
> The default maximum length for text submissions is **1K** characters. The minimum length is **111** characters. Protected material detection is meant to be run on LLM completions, not user prompts.
3838
3939
```shell
4040
curl --location --request POST '<endpoint>/contentsafety/text:detectProtectedMaterial?api-version=2023-10-15-preview' \
Lines changed: 4 additions & 0 deletions
Loading

articles/aks/quotas-skus-regions.md

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ title: Limits for resources, SKUs, and regions in Azure Kubernetes Service (AKS)
33
titleSuffix: Azure Kubernetes Service
44
description: Learn about the default quotas, restricted node VM SKU sizes, and region availability of the Azure Kubernetes Service (AKS).
55
ms.topic: conceptual
6-
ms.date: 03/07/2023
7-
6+
ms.date: 12/05/2023
87
---
8+
99
# Quotas, virtual machine size restrictions, and region availability in Azure Kubernetes Service (AKS)
1010

1111
All Azure services set default limits and quotas for resources and features, including usage restrictions for certain virtual machine (VM) SKUs.
@@ -31,7 +31,7 @@ The list of supported VM sizes in AKS is evolving with the release of new VM SKU
3131

3232
## Restricted VM sizes
3333

34-
VM sizes with less than two CPUs may not be used with AKS.
34+
VM sizes with fewer than two CPUs may not be used with AKS.
3535

3636
Each node in an AKS cluster contains a fixed amount of compute resources such as vCPU and memory. If an AKS node contains insufficient compute resources, pods might fail to run correctly. To ensure the required *kube-system* pods and your applications can be reliably scheduled, AKS requires nodes use VM sizes with at least two CPUs.
3737

@@ -51,13 +51,28 @@ For the latest list of where you can deploy and run clusters, see [AKS region av
5151

5252
When you create a cluster using the Azure portal, you can choose a preset configuration to quickly customize based on your scenario. You can modify any of the preset values at any time.
5353

54-
| Preset | Description |
55-
|------------------|------------------------------------------------------------------------|
56-
| Standard | Best if you're not sure what to choose. Works well with most applications. |
57-
| Dev/Test | Best for experimenting with AKS or deploying a test application. |
58-
| Cost-optimized | Best for reducing costs on production workloads that can tolerate interruptions. |
59-
| Batch processing | Best for machine learning, compute-intensive, and graphics-intensive workloads. Suited for applications requiring fast scale-up and scale-out of the cluster. |
60-
| Hardened access | Best for large enterprises that need full control of security and stability. |
54+
| Preset | Description |
55+
|-----------------------------|------------------------------------------------------------------------|
56+
| Production Standard | Best for most applications serving production traffic with AKS recommended best practices. |
57+
| Dev/Test | Best for developing new workloads or testing existing workloads. |
58+
| Production Economy | Best for serving production traffic in a cost conscious way if your workloads can tolerate interruptions. |
59+
| Production Enterprise | Best for serving production traffic with rigorous permissions and hardened security. |
60+
61+
| | Production Standard |Dev/Test|Production Economy|Production Enterprise|
62+
|------------------------------|---------|--------|--------|--------|
63+
|**System node pool node size**|Standard_D8ds_v5 |Standard_DS2_v2|Standard_D8ds_v5|Standard_D16ds_v5|
64+
|**System node pool autoscaling range**|2-5 nodes|2-100 nodes|2-5 nodes|2-5 nodes|
65+
|**User node pool node size**|Standard_D8ds_v5|-|Standard_D8as_v4|Standard_D8ds_v5|
66+
|**User node pool autoscaling range**|2-100 nodes|-|-|2-100 nodes|
67+
|**Private cluster**|-|-|-|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|
68+
|**Availability zones**|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|-|-|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|
69+
|**Azure Policy**|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|-|-|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|
70+
|**Azure Monitor**|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|-|-|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|
71+
|**Secrets store CSI driver**|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|-|-|:::image type="icon" source="./media/quotas-skus-regions/yes-icon.svg":::|
72+
|**Network configuration**|Azure CNI|Kubenet|Azure CNI|Azure CNI|
73+
|**Network configuration**|Calico|Calico|Calico|Calico|
74+
|**Authentication and Authorization**|Local accounts with Kubernetes RBAC|Local accounts with Kubernetes RBAC|Azure AD Authentication with Azure RBAC|Azure AD authentication with Azure RBAC|
75+
6176

6277
## Next steps
6378

articles/api-management/configure-graphql-resolver.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,6 @@ Currently, API Management supports resolvers that can access the following data
2727
* Resolver-scoped policies are evaluated *after* any `inbound` and `backend` policies in the policy execution pipeline. They don't inherit policies from other scopes. For more information, see [Policies in API Management](api-management-howto-policies.md).
2828
* You can configure API-scoped policies for a GraphQL API, independent of the resolver-scoped policies. For example, add a [validate-graphql-request](validate-graphql-request-policy.md) policy to the `inbound` scope to validate the request before the resolver is invoked. Configure API-scoped policies on the **API policies** tab for the API.
2929

30-
> [!IMPORTANT]
31-
> * If you use the preview `set-graphql-resolver` policy in policy definitions, you should migrate to the managed resolvers described in this article.
32-
> * After you configure a managed resolver for a GraphQL field, the gateway will skip the `set-graphql-resolver` policy in any policy definitions. You can't combine use of managed resolvers and the `set-graphql-resolver` policy in your API Management instance.
33-
3430
## Prerequisites
3531

3632
- An existing API Management instance. [Create one if you haven't already](get-started-create-service-instance.md).

articles/azure-arc/data/includes/azure-arc-data-preview-release.md

Lines changed: 9 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,16 @@ ms.custom:
77
ms.topic: include
88
ms.date: 11/1/2023
99
---
10-
11-
At this time, a test or preview build is not available for the next release.
12-
1310
<!--
11+
At this time, a test or preview build is not available for the next release.
12+
-->
1413

15-
Nov 2023 test release is now available.
14+
Dec 2023 preview release is now available.
1615

1716
|Component|Value|
1817
|-----------|-----------|
19-
|Container images registry/repository |`mcr.microsoft.com/arcdata/test`|
20-
|Container images tag |`v1.25.0_2023-11-14`|
18+
|Container images registry/repository |`mcr.microsoft.com/arcdata/preview`|
19+
|Container images tag |`v1.26.0_2023-12-12`|
2120
|**CRD names and version:**| |
2221
|`activedirectoryconnectors.arcdata.microsoft.com`| v1beta1, v1beta2, v1, v2|
2322
|`datacontrollers.arcdata.microsoft.com`| v1beta1, v1 through v5|
@@ -34,29 +33,14 @@ Nov 2023 test release is now available.
3433
|`telemetrycollectors.arcdata.microsoft.com`| v1beta1 through v1beta5|
3534
|`telemetryrouters.arcdata.microsoft.com`| v1beta1 through v1beta5|
3635
|Azure Resource Manager (ARM) API version|2023-11-01-preview|
37-
|`arcdata` Azure CLI extension version|1.5.7 ([Download](https://aka.ms/az-cli-arcdata-ext))|
38-
|Arc-enabled Kubernetes helm chart extension version|1.25.0|
36+
|`arcdata` Azure CLI extension version|1.5.8 ([Download](https://aka.ms/az-cli-arcdata-ext))|
37+
|Arc-enabled Kubernetes helm chart extension version|1.26.0|
3938
|Azure Arc Extension for Azure Data Studio<br/>`arc`<br/>`azcli`|<br/>1.8.0 ([Download](https://aka.ms/ads-arcdata-ext))</br>1.8.0 ([Download](https://aka.ms/ads-azcli-ext))|
4039
|SQL Database version | 957 |
4140

4241
### Release notes
4342

4443
#### Arc-enabled SQL Server
44+
Arc SQL Server | Show the Data Processing Service (DPS) connectivity status in the Azure portal | GA
4545

46-
- Configure backups at instance level using custom schedule for SQL Server enabled by Azure Arc instances for both portal and CLI - public preview.
47-
- Configure Automated Backups with a custom schedule and custom retention period, on an Arc enabled SQL Server.
48-
- Point-in-time-restore using Azure CLI and Azure portal - public preview.
49-
- Restore a database to a point-in-time restore of their databases, if automatic backups are enabled. Restore can be done either from Azure portal or via az CLI.
50-
51-
- Monitoring | Performance dashboards of an individual SQL Server enabled by Azure Arc in the Azure portal - public preview.
52-
53-
- Track the provision state and (extension service) status of Azure extension for SQL Server - general availability.
54-
- Beginning with this release, you can track the provisioning status of Azure Arc extension for SQL Server and Azure Arc guest agent in the properties tab for Arc enabled SQL Server.
55-
56-
- High Availability | Manage Always On availability group - manual failover - public preview.
57-
- Perform a planned, manual failover on an availability group replica, using Azure portal.
58-
- Availability group status - Track the availability upload status | public preview.
59-
- Beginning with this release, track the status and see the last time that the availability group inventory data is updated. The portal shows two new properties, **Upload status** and **Last collected time**" in the **Availability Groups** tab of the Arc-enabled SQL Server.
60-
- Support for separate proxy bypass value for Arc SQL Server only - general availability.
61-
62-
-->
46+
Arc SQL Server | Monitoring | Add IOPS, Queue Latency Storage IO charts in Performance Dashboard in Azure portal

articles/azure-cache-for-redis/cache-how-to-manage-redis-cache-powershell.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,13 @@ ms.author: franlanglois
99
ms.custom: devx-track-azurepowershell
1010

1111
---
12+
1213
# Manage Azure Cache for Redis with Azure PowerShell
1314

1415
> [!div class="op_single_selector"]
1516
1617
> * [PowerShell](cache-how-to-manage-redis-cache-powershell.md)
1718
> * [Azure CLI](cache-manage-cli.md)
18-
>
19-
>
2019
2120
[!INCLUDE [updated-for-az](../../includes/updated-for-az.md)]
2221

@@ -146,7 +145,7 @@ The following table contains Azure PowerShell properties and descriptions for co
146145
| Name |Name of the cache | |
147146
| Location |Location of the cache | |
148147
| ResourceGroupName |Resource group name in which to create the cache | |
149-
| Size |The size of the cache. Valid values are: P1, P2, P3, P4, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB |1GB |
148+
| Size |The size of the cache. Valid values are: P1, P2, P3, P4, P5, C0, C1, C2, C3, C4, C5, C6, 250MB, 1GB, 2.5GB, 6GB, 13GB, 26GB, 53GB |1GB |
150149
| ShardCount |The number of shards to create when creating a premium cache with clustering enabled. Valid values are: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 | |
151150
| SKU |Specifies the SKU of the cache. Valid values are: Basic, Standard, Premium |Standard |
152151
| RedisConfiguration |Specifies Redis configuration settings. For details on each setting, see the following [RedisConfiguration properties](#redisconfiguration-properties) table. | |

articles/azure-functions/TOC.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -998,7 +998,15 @@
998998
- name: AZFD0005
999999
href: errors-diagnostics/diagnostic-events/azfd0005.md
10001000
- name: AZFD0006
1001-
href: errors-diagnostics/diagnostic-events/azfd0006.md
1001+
href: errors-diagnostics/diagnostic-events/azfd0006.md
1002+
- name: AZFD0007
1003+
href: errors-diagnostics/diagnostic-events/azfd0007.md
1004+
- name: AZFD0008
1005+
href: errors-diagnostics/diagnostic-events/azfd0008.md
1006+
- name: AZFD0009
1007+
href: errors-diagnostics/diagnostic-events/azfd0009.md
1008+
- name: AZFD0010
1009+
href: errors-diagnostics/diagnostic-events/azfd0010.md
10021010
- name: host.json 2.x reference
10031011
href: functions-host-json.md
10041012
- name: host.json 1.x reference

articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0001.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
22
title: "AZFD0001: AzureWebJobsStorage app setting is not present."
33
titleSuffix: "Azure Functions"
4-
description: "AZFD0001: AzureWebJobsStorage app setting is not present"
5-
author: soninaren
6-
ms.author: nasoni
7-
ms.topic: troubleshooting
4+
description: "Learn how to troubleshoot the event 'AZFD0001: AzureWebJobsStorage app setting is not present' in Azure Functions"
5+
ms.topic: reference
86
ms.date: 09/03/2022
97
---
108

@@ -15,7 +13,6 @@ This event occurs when the function app doesn't have the `AzureWebJobsStorage` a
1513
| | Value |
1614
|-|-|
1715
| **Event ID** |AZFD0001|
18-
| **Category** |[Usage]|
1916
| **Severity** |Error|
2017

2118
## Event description

articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0002.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "AZFD0002: Value of AzureWebJobsStorage app setting is invalid."
33
titleSuffix: "Azure Functions"
4-
description: "AZFD0002: Value of AzureWebJobsStorage app setting is invalid."
4+
description: "Learn how to troubleshoot the event 'AZFD0002: Value of AzureWebJobsStorage app setting is invalid' in Azure Functions"
55
author: soninaren
66
ms.author: nasoni
77
ms.topic: reference
@@ -15,7 +15,6 @@ This event occurs when the value of the `AzureWebJobsStorage` app setting is set
1515
| | Value |
1616
|-|-|
1717
| **Event ID** |AZFD0002|
18-
| **Category** |[Usage]|
1918
| **Severity** |Error|
2019

2120
## Event description

articles/azure-functions/errors-diagnostics/diagnostic-events/azfd0003.md

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
---
22
title: "AZFD0003: Encountered a StorageException while trying to fetch the diagnostic events."
33
titleSuffix: "Azure Functions"
4-
description: "AZFD0003: Encountered a StorageException while trying to fetch the diagnostic events."
5-
author: soninaren
6-
ms.author: nasoni
7-
ms.topic: troubleshooting
4+
description: "Learn how to troubleshoot the event 'AZFD0003: Encountered a StorageException while trying to fetch the diagnostic events' in Azure Functions."
5+
ms.topic: reference
86
ms.date: 09/03/2022
97
---
108

@@ -15,7 +13,6 @@ This event occurs when the Azure Storage account connection string value in the
1513
| | Value |
1614
|-|-|
1715
| **Event ID** |AZFD0003|
18-
| **Category** |[Usage]|
1916
| **Severity** |Error|
2017

2118
## Event description

0 commit comments

Comments
 (0)