Skip to content

Commit 09f5d30

Browse files
committed
review edits
1 parent b6c09ad commit 09f5d30

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/azure-resource-manager/managed-applications/microsoft-solutions-armapicontrol.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -43,21 +43,21 @@ The control's output isn't displayed to the user. Instead, the operation's resul
4343
- The `request.method` property specifies the HTTP method. Only GET or POST are allowed.
4444
- The `request.path` property specifies a URL that must be a relative path to an Azure Resource Manager endpoint. It can be a static path or can be constructed dynamically by referring output values of the other controls.
4545

46-
For example, an Azure Resource Manager call into `Microsoft.Network/expressRouteCircuits` resource provider:
46+
For example, an Azure Resource Manager call into the `Microsoft.Network/expressRouteCircuits` resource provider.
4747

4848
```json
49-
"path": "subscriptions/<subid>/resourceGroup/<resourceGroupName>/providers/Microsoft.Network/expressRouteCircuits/<routecircuitName>/?api-version=2022-01-01"
49+
"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/expressRouteCircuits/{circuitName}?api-version=2022-01-01"
5050
```
5151

5252
- The `request.body` property is optional. Use it to specify a JSON body that is sent with the request. The body can be static content or constructed dynamically by referring to output values from other controls.
5353

5454
## Example
5555

56-
In the following example, the `providersApi` element uses the `ArmApiControl` and calls an API to get an array of provider objects. The array is used to create a list of provider names.
56+
In the following example, the `providersApi` element uses the `ArmApiControl` and calls an API to get an array of provider objects.
5757

58-
The `providersDropDown` element's `allowedValues` property is configured to get the names of the providers. The provider names are displayed in the dropdown list.
58+
The `providersDropDown` element's `allowedValues` property is configured to use the array and get the provider names. The provider names are displayed in the dropdown list.
5959

60-
The `output` property `providerName` shows the provider name that was selected from the dropdown list. The output can be used to pass the value to a parameter in a managed application template.
60+
The `output` property `providerName` shows the provider name that was selected from the dropdown list. The output can be used to pass the value to a parameter in an Azure Resource Manager template.
6161

6262
```json
6363
{
@@ -94,7 +94,7 @@ The `output` property `providerName` shows the provider name that was selected f
9494
}
9595
```
9696

97-
For an example of the `ArmApiControl` that uses the `request.body` property, see the [Microsoft.Common.TextBox](microsoft-common-textbox.md) single-line example. That example checks the availability of a storage account name and returns a message if the name is unavailable.
97+
For an example of the `ArmApiControl` that uses the `request.body` property, see the [Microsoft.Common.TextBox](microsoft-common-textbox.md#single-line) single-line example. That example checks the availability of a storage account name and returns a message if the name is unavailable.
9898

9999
## Next steps
100100

0 commit comments

Comments
 (0)