application_gateways_available_ssl_options
Creates, updates, deletes, gets or lists an application_gateways_available_ssl_options
resource.
Overview
Name | application_gateways_available_ssl_options |
Type | Resource |
Id | azure.network.application_gateways_available_ssl_options |
Fields
The following fields are returned by SELECT
queries:
- list
Success. The operation returns all available Ssl options for configuring Ssl policy.
Name | Datatype | Description |
---|---|---|
id | string (arm-id) | Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" |
name | string | The name of the resource |
properties | object | Properties of the application gateway available SSL options. |
systemData | object | Azure Resource Manager metadata containing createdBy and modifiedBy information. |
type | string | The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId | Lists available Ssl options for configuring Ssl policy. |
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 |
---|---|---|
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
Lists available Ssl options for configuring Ssl policy.
SELECT
id,
name,
properties,
systemData,
type
FROM azure.network.application_gateways_available_ssl_options
WHERE subscriptionId = '{{ subscriptionId }}' -- required
;