application_gateways_ssl_predefined_policies
Creates, updates, deletes, gets or lists a application_gateways_ssl_predefined_policies
resource.
Overview
Name | application_gateways_ssl_predefined_policies |
Type | Resource |
Id | azure.network.application_gateways_ssl_predefined_policies |
Fields
- vw_application_gateways_ssl_predefined_policies
- application_gateways_ssl_predefined_policies
Name | Datatype | Description |
---|---|---|
id | text | Resource ID. |
name | text | Name of the Ssl predefined policy. |
cipher_suites | text | field from the properties object |
min_protocol_version | text | field from the properties object |
predefinedPolicyName | text | field from the properties object |
subscriptionId | text | field from the properties object |
Name | Datatype | Description |
---|---|---|
id | string | Resource ID. |
name | string | Name of the Ssl predefined policy. |
properties | object | Properties of ApplicationGatewaySslPredefinedPolicy. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | predefinedPolicyName, subscriptionId | Gets Ssl predefined policy with the specified policy name. |
SELECT
examples
Gets Ssl predefined policy with the specified policy name.
- vw_application_gateways_ssl_predefined_policies
- application_gateways_ssl_predefined_policies
SELECT
id,
name,
cipher_suites,
min_protocol_version,
predefinedPolicyName,
subscriptionId
FROM azure.network.vw_application_gateways_ssl_predefined_policies
WHERE predefinedPolicyName = '{{ predefinedPolicyName }}'
AND subscriptionId = '{{ subscriptionId }}';
SELECT
id,
name,
properties
FROM azure.network.application_gateways_ssl_predefined_policies
WHERE predefinedPolicyName = '{{ predefinedPolicyName }}'
AND subscriptionId = '{{ subscriptionId }}';