You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An Azure API Management service instance can scale automatically based on a set of rules. This behavior can be enabled and configured through [Azure Monitor autoscale](/azure/azure-monitor/autoscale/autoscale-overview#supported-services-for-autoscale).
19
19
@@ -64,7 +64,7 @@ Follow these steps to configure autoscale for an Azure API Management service:
| Metric source | Current resource | Define the rule based on the current API Management resource metrics. |
66
66
|*Criteria*|||
67
-
| Metric name | Capacity |[Capacity metric](api-management-capacity.md) is an API Management metric reflecting usage of resources by an Azure API Management instance. |
67
+
| Metric name | Capacity |[Capacity metric](api-management-capacity.md) is one of the API Management metrics reflecting usage of resources by an Azure API Management instance. Choose a capacity metric supported in your API Management service tier.|
68
68
| Location | Select the primary location of the API Management instance ||
69
69
| Operator | Greater than ||
70
70
| Metric threshold | 70% | The threshold for the averaged capacity metric. For considerations on setting this threshold, see [Using capacity for scaling decisions](api-management-capacity.md#use-capacity-for-scaling-decisions). |
Copy file name to clipboardExpand all lines: articles/api-management/developer-portal-overview.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ author: dlepow
7
7
8
8
ms.service: azure-api-management
9
9
ms.topic: concept-article
10
-
ms.date: 04/28/2025
10
+
ms.date: 06/04/2025
11
11
ms.author: danlep
12
12
---
13
13
@@ -64,9 +64,9 @@ If you're accessing the portal for the first time, the portal includes placehold
64
64
For a step-by-step walkthrough of customizing and publishing the developer portal, see [Tutorial: Access and customize the developer portal](api-management-howto-developer-portal-customize.md).
65
65
66
66
> [!IMPORTANT]
67
-
> * Access to the developer portal by API publishers and consumers requires network connectivity to both the developer portal's endpoint (default: `https://<apim-instance-name>.portal.azure-api.net`) and the API Management instance's management endpoint (default: `https://<apim-instance-name>.management.azure-api.net`).
67
+
> * Access to the developer portal by API publishers and consumers requires network connectivity to the developer portal's endpoint (default: `https://<apim-instance-name>.portal.azure-api.net`).
68
68
> * Publishing the developer portal requires additional connectivity to blob storage managed by API Management in the West US region.
69
-
> * If the API Management instance is deployed in a VNet, ensure that the hostnames of the developer portal and management endpoint resolve properly and that you enable connectivity to required dependencies for the developer portal. [Learn more](virtual-network-reference.md).
69
+
> * If the API Management instance is deployed in a VNet, ensure that the hostname of the developer portal resolves properly and that you enable connectivity to required dependencies for the developer portal. [Learn more](virtual-network-reference.md).
70
70
71
71
### Visual editor
72
72
@@ -268,4 +268,4 @@ Learn more about the developer portal:
268
268
Browse other resources:
269
269
270
270
-[GitHub repository with the source code](https://github.com/Azure/api-management-developer-portal)
271
-
-[Frequently asked questions about the developer portal](developer-portal-faq.md)
271
+
-[Frequently asked questions about the developer portal](developer-portal-faq.md)
| validate-revocation| Boolean. Specifies whether certificate is validated against online revocation list. Policy expressions aren't allowed.| No |`true`|
58
-
| validate-trust| Boolean. Specifies if validation should fail in case chain cannot be successfully built up to trusted CA. Policy expressions aren't allowed. | No |`true`|
59
-
| validate-not-before | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
60
-
| validate-not-after| Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
61
-
| ignore-error| Boolean. Specifies if policy should proceed to the next handler or jump to on-error upon failed validation. Policy expressions aren't allowed. | No |`false`|
57
+
| validate-revocation | Boolean. Specifies whether certificate is validated against online revocation list. Policy expressions aren't allowed. | No |`true`|
58
+
| validate-trust| Boolean. Specifies if validation should fail in case chain cannot be successfully built up to trusted CA. Policy expressions aren't allowed. | No |`true`|
59
+
| validate-not-before | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
60
+
| validate-not-after | Boolean. Validates value against current time. Policy expressions aren't allowed.| No|`true`|
61
+
| ignore-error | Boolean. Specifies if policy should proceed to the next handler or jump to on-error upon failed validation. Policy expressions aren't allowed. | No |`false`|
62
62
63
63
## Elements
64
64
@@ -70,27 +70,24 @@ For more information about custom CA certificates and certificate authorities, s
| serial-number | Certificate serial number. | No | N/A |
75
75
| common-name | Certificate common name (part of Subject string). | No | N/A |
76
76
| subject | Subject string. Must follow format of Distinguished Name, which consists of comma-separated name attributes, for example, *"CN=MyName, OU=MyOrgUnit, C=US..."*.| No | N/A |
77
77
| dns-name | Value of dnsName entry inside Subject Alternative Name claim. | No | N/A |
78
-
| issuer-subject | Issuer's subject. Must follow format of Distinguished Name, which consists of comma-separated name attributes, for example, *"CN=MyName, OU=MyOrgUnit, C=US..."*. | No | N/A |
79
-
| issuer-thumbprint | Issuer thumbprint. | No | N/A |
80
-
| issuer-certificate-id | Identifier of existing certificate entity representing the issuer's public key. Mutually exclusive with other issuer attributes. | No | N/A |
78
+
| issuer-subject | Issuer's subject. Must follow format of Distinguished Name. | No | N/A |
| issuer-certificate-id | Identifier of existing certificate entity representing the issuer's public key. Mutually exclusive with other issuer attributes. | No | N/A |
* You must use double quotes to enclose values of name attributes in the `subject` and `issuer-subject` attributes when they contain certain special characters such as ",". For example, specify `O="Contoso, Inc."` instead of `O=Contoso, Inc.` for the organization name. [Learn more](/windows/win32/api/wincrypt/nf-wincrypt-certnametostra#remarks)
92
-
93
-
## Example
94
91
95
92
The following example validates a client certificate to match the policy's default validation rules and checks whether the subject and issuer name match specified values.
96
93
@@ -109,6 +106,25 @@ The following example validates a client certificate to match the policy's defau
109
106
</validate-client-certificate>
110
107
```
111
108
109
+
The following example performs a stricter validation by cheking whether the subject thumbprint and the issuer thumbprint match specified values.
0 commit comments