application_gateways_ssl_predefined_policies
Creates, updates, deletes, gets or lists an application_gateways_ssl_predefined_policies resource.
Overview
| Name | application_gateways_ssl_predefined_policies |
| Type | Resource |
| Id | azure.network.application_gateways_ssl_predefined_policies |
Fields
The following fields are returned by SELECT queries:
- get
Success. The operation returns a Ssl predefined policy with the specified policy name.
| Name | Datatype | Description |
|---|---|---|
id | string | Resource ID. |
name | string | Name of the Ssl predefined policy. |
properties | object | Properties of the application gateway SSL predefined policy. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get | select | subscriptionId, predefinedPolicyName | Gets Ssl predefined policy with the specified policy name. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
predefinedPolicyName | string | Name of Ssl predefined policy. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT examples
- get
Gets Ssl predefined policy with the specified policy name.
SELECT
id,
name,
properties
FROM azure.network.application_gateways_ssl_predefined_policies
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND predefinedPolicyName = '{{ predefinedPolicyName }}' -- required
;