Skip to main content

disk_encryption_sets_associated_resources

Creates, updates, deletes, gets or lists a disk_encryption_sets_associated_resources resource.

Overview

Namedisk_encryption_sets_associated_resources
TypeResource
Idazure.compute.disk_encryption_sets_associated_resources

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, diskEncryptionSetNameLists all resources that are encrypted with this disk encryption set.

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
diskEncryptionSetNamestringThe name of the disk encryption set that is being created. The name can't be changed after the disk encryption set is created. Supported characters for the name are a-z, A-Z, 0-9, _ and -. The maximum name length is 80 characters.
resourceGroupNamestringThe name of the resource group.
subscriptionIdstringSubscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.

SELECT examples

Lists all resources that are encrypted with this disk encryption set.

SELECT
*
FROM azure.compute.disk_encryption_sets_associated_resources
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND diskEncryptionSetName = '{{ diskEncryptionSetName }}' -- required
;