Skip to main content

application_gateways_ssl_predefined_policies

Creates, updates, deletes, gets or lists an application_gateways_ssl_predefined_policies resource.

Overview

Nameapplication_gateways_ssl_predefined_policies
TypeResource
Idazure.network.application_gateways_ssl_predefined_policies

Fields

The following fields are returned by SELECT queries:

Success. The operation returns a Ssl predefined policy with the specified policy name.

NameDatatypeDescription
idstringResource ID.
namestringName of the Ssl predefined policy.
propertiesobjectProperties of the application gateway SSL predefined policy.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectsubscriptionId, predefinedPolicyNameGets 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.

NameDatatypeDescription
predefinedPolicyNamestringName of Ssl predefined policy.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

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
;