Skip to content

Commit fc13054

Browse files
committed
style
1 parent cacb6b4 commit fc13054

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

articles/api-management/authentication-managed-identity-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Both system-assigned identity and any of the multiple user-assigned identities c
2929
| Attribute | Description | Required | Default |
3030
| ----------------- | ------------------------------------------------------ | -------- | ------- |
3131
|resource|String. The application ID of the target web API (secured resource) in Azure Active Directory. Policy expressions are allowed. |Yes|N/A|
32-
|client-id|String. The client ID of the user-assigned identity in Azure Active Directory. Policy expressions are not allowed. |No|system-assigned identity|
32+
|client-id|String. The client ID of the user-assigned identity in Azure Active Directory. Policy expressions aren't allowed. |No|system-assigned identity|
3333
|output-token-variable-name|String. Name of the context variable that will receive token value as an object of type `string`. Policy expresssions are not allowed. |No|N/A|
3434
|ignore-error|Boolean. If set to `true`, the policy pipeline will continue to execute even if an access token is not obtained.|No|`false`|
3535

articles/api-management/emit-metric-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ The `emit-metric` policy sends custom metrics in the specified format to Applica
3232

3333
| Attribute | Description | Required | Default value |
3434
| --------- | -------------------------- | ------------------ | -------------- |
35-
| name | Name of custom metric. Policy expressions are not allowed. | Yes | N/A |
36-
| namespace | Namespace of custom metric. Policy expressions are not allowed. | No | API Management |
35+
| name | A string. Name of custom metric. Policy expressions aren't allowed. | Yes | N/A |
36+
| namespace | A string. Namespace of custom metric. Policy expressions aren't allowed. | No | API Management |
3737
| value | Value of custom metric expressed as an integer. Policy expressions are allowed. | No | 1 |
3838

3939

articles/api-management/forward-request-policy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ The `forward-request` policy forwards the incoming request to the backend servic
3333
| timeout | The amount of time in seconds to wait for the HTTP response headers to be returned by the backend service before a timeout error is raised. Minimum value is 0 seconds. Values greater than 240 seconds may not be honored, because the underlying network infrastructure can drop idle connections after this time. Policy expressions are allowed. | No | 300 |
3434
| follow-redirects | Specifies whether redirects from the backend service are followed by the gateway or returned to the caller. Policy expressions are allowed. | No | `false` |
3535
| buffer-request-body | When set to `true`, request is buffered and will be reused on [retry](retry-policy.md). | No | `false` |
36-
| buffer-response | Affects processing of chunked responses. When set to `false`, each chunk received from the backend is immediately returned to the caller. When set to `true`, chunks are buffered (8 KB, unless end of stream is detected) and only then returned to the caller.<br/><br/>Set to `false` with backends such as those implementing [server-sent events (SSE)](how-to-server-sent-events.md) that require content to be returned or streamed immediately to the caller. Policy expressions are not allowed. | No | `true` |
37-
| fail-on-error-status-code | When set to `true`, triggers [on-error](api-management-error-handling-policies.md) section for response codes in the range from 400 to 599 inclusive. Policy expressions are not allowed. | No | `false` |
36+
| buffer-response | Affects processing of chunked responses. When set to `false`, each chunk received from the backend is immediately returned to the caller. When set to `true`, chunks are buffered (8 KB, unless end of stream is detected) and only then returned to the caller.<br/><br/>Set to `false` with backends such as those implementing [server-sent events (SSE)](how-to-server-sent-events.md) that require content to be returned or streamed immediately to the caller. Policy expressions aren't allowed. | No | `true` |
37+
| fail-on-error-status-code | When set to `true`, triggers [on-error](api-management-error-handling-policies.md) section for response codes in the range from 400 to 599 inclusive. Policy expressions aren't allowed. | No | `false` |
3838

3939

4040
## Usage

articles/api-management/include-fragment-policy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The policy inserts the policy fragment as-is at the location you select in the p
2828

2929
| Attribute | Description | Required | Default |
3030
| --------- | -------------------------------------------------------------------------------------------------- | -------- | ------- |
31-
| fragment-id | A string. Specifies the identifier (name) of a policy fragment created in the API Management instance. Policy expressions are not allowed. | Yes | N/A |
31+
| fragment-id | A string. Specifies the identifier (name) of a policy fragment created in the API Management instance. Policy expressions aren't allowed. | Yes | N/A |
3232

3333
## Usage
3434

articles/api-management/invoke-dapr-binding-policy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ The policy assumes that Dapr runtime is running in a sidecar container in the sa
3636
| Attribute | Description | Required | Default |
3737
|------------------|---------------------------------|----------|---------|
3838
| name | Target binding name. Must match the name of the bindings [defined](https://github.com/dapr/docs/blob/master/daprdocs/content/en/reference/api/bindings_api.md#bindings-structure) in Dapr. Policy expressions are allowed. | Yes | N/A |
39-
| operation | Target operation name (binding specific). Maps to the [operation](https://github.com/dapr/docs/blob/master/daprdocs/content/en/reference/api/bindings_api.md#invoking-output-bindings) property in Dapr. Policy expressions are not allowed. | No | None |
40-
| ignore-error | If set to `true` instructs the policy not to trigger ["on-error"](api-management-error-handling-policies.md) section upon receiving error from Dapr runtime. Policy expressions are not allowed. | No | `false` |
41-
| response-variable-name | Name of the [Variables](api-management-policy-expressions.md#ContextVariables) collection entry to use for storing response from Dapr runtime. Policy expressions are not allowed. | No | None |
39+
| operation | Target operation name (binding specific). Maps to the [operation](https://github.com/dapr/docs/blob/master/daprdocs/content/en/reference/api/bindings_api.md#invoking-output-bindings) property in Dapr. Policy expressions aren't allowed. | No | None |
40+
| ignore-error | If set to `true` instructs the policy not to trigger ["on-error"](api-management-error-handling-policies.md) section upon receiving error from Dapr runtime. Policy expressions aren't allowed. | No | `false` |
41+
| response-variable-name | Name of the [Variables](api-management-policy-expressions.md#ContextVariables) collection entry to use for storing response from Dapr runtime. Policy expressions aren't allowed. | No | None |
4242
| timeout | Time (in seconds) to wait for Dapr runtime to respond. Can range from 1 to 240 seconds. Policy expressions are allowed.| No | 5 |
4343
| template | Templating engine to use for transforming the message content. "Liquid" is the only supported value. | No | None |
4444
| content-type | Type of the message content. "application/json" is the only supported value. | No | None |

0 commit comments

Comments
 (0)