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
Copy file name to clipboardExpand all lines: articles/azure-resource-manager/managed-applications/microsoft-solutions-armapicontrol.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -43,21 +43,21 @@ The control's output isn't displayed to the user. Instead, the operation's resul
43
43
- The `request.method` property specifies the HTTP method. Only GET or POST are allowed.
44
44
- 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.
45
45
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.
- 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.
53
53
54
54
## Example
55
55
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.
57
57
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.
59
59
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.
61
61
62
62
```json
63
63
{
@@ -94,7 +94,7 @@ The `output` property `providerName` shows the provider name that was selected f
94
94
}
95
95
```
96
96
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.
0 commit comments