pulumi-azure 6.27.0a1758695020__py3-none-any.whl → 6.27.0a1759511969__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of pulumi-azure might be problematic. Click here for more details.

Files changed (169) hide show
  1. pulumi_azure/__init__.py +32 -0
  2. pulumi_azure/apimanagement/backend.py +2 -2
  3. pulumi_azure/appservice/_inputs.py +78 -6
  4. pulumi_azure/appservice/app_flex_consumption.py +61 -0
  5. pulumi_azure/appservice/outputs.py +52 -4
  6. pulumi_azure/appservice/service_plan.py +14 -14
  7. pulumi_azure/billing/account_cost_management_export.py +2 -2
  8. pulumi_azure/cdn/_inputs.py +57 -95
  9. pulumi_azure/cdn/frontdoor_firewall_policy.py +34 -107
  10. pulumi_azure/cdn/frontdoor_profile.py +87 -2
  11. pulumi_azure/cdn/frontdoor_security_policy.py +7 -7
  12. pulumi_azure/cdn/get_frontdoor_firewall_policy.py +15 -1
  13. pulumi_azure/cdn/get_frontdoor_profile.py +25 -11
  14. pulumi_azure/cdn/outputs.py +79 -21
  15. pulumi_azure/cognitive/account.py +7 -7
  16. pulumi_azure/compute/__init__.py +1 -0
  17. pulumi_azure/compute/_inputs.py +79 -47
  18. pulumi_azure/compute/get_managed_disks.py +140 -0
  19. pulumi_azure/compute/linux_virtual_machine.py +97 -23
  20. pulumi_azure/compute/outputs.py +362 -34
  21. pulumi_azure/compute/windows_virtual_machine.py +172 -42
  22. pulumi_azure/containerservice/_inputs.py +209 -17
  23. pulumi_azure/containerservice/cluster_trusted_access_role_binding.py +2 -2
  24. pulumi_azure/containerservice/get_cluster_node_pool.py +14 -3
  25. pulumi_azure/containerservice/get_kubernetes_cluster.py +2 -2
  26. pulumi_azure/containerservice/get_kubernetes_node_pool_snapshot.py +2 -2
  27. pulumi_azure/containerservice/kubernetes_cluster.py +49 -2
  28. pulumi_azure/containerservice/kubernetes_cluster_node_pool.py +49 -2
  29. pulumi_azure/containerservice/outputs.py +173 -11
  30. pulumi_azure/core/_inputs.py +0 -54
  31. pulumi_azure/core/outputs.py +0 -36
  32. pulumi_azure/core/resource_group_cost_management_export.py +2 -2
  33. pulumi_azure/core/resource_group_policy_assignment.py +7 -7
  34. pulumi_azure/core/resource_policy_assignment.py +7 -7
  35. pulumi_azure/core/subscription_cost_management_export.py +2 -2
  36. pulumi_azure/core/subscription_policy_assignment.py +7 -7
  37. pulumi_azure/datafactory/__init__.py +1 -0
  38. pulumi_azure/datafactory/customer_managed_key.py +439 -0
  39. pulumi_azure/datafactory/factory.py +2 -2
  40. pulumi_azure/dataprotection/_inputs.py +36 -6
  41. pulumi_azure/dataprotection/backup_policy_blob_storage.py +76 -2
  42. pulumi_azure/dataprotection/outputs.py +24 -4
  43. pulumi_azure/devcenter/get_project_pool.py +15 -1
  44. pulumi_azure/devcenter/project_pool.py +47 -0
  45. pulumi_azure/eventgrid/domain.py +2 -2
  46. pulumi_azure/eventgrid/domain_topic.py +2 -2
  47. pulumi_azure/eventgrid/event_subscription.py +2 -2
  48. pulumi_azure/eventgrid/get_domain.py +2 -2
  49. pulumi_azure/eventgrid/get_domain_topic.py +2 -2
  50. pulumi_azure/eventgrid/get_partner_namespace.py +2 -2
  51. pulumi_azure/eventgrid/get_partner_registration.py +2 -2
  52. pulumi_azure/eventgrid/get_system_topic.py +28 -6
  53. pulumi_azure/eventgrid/get_topic.py +2 -2
  54. pulumi_azure/eventgrid/partner_configuration.py +2 -2
  55. pulumi_azure/eventgrid/partner_namespace.py +2 -2
  56. pulumi_azure/eventgrid/partner_registration.py +2 -2
  57. pulumi_azure/eventgrid/system_topic.py +97 -35
  58. pulumi_azure/eventgrid/system_topic_event_subscription.py +4 -4
  59. pulumi_azure/eventgrid/topic.py +2 -2
  60. pulumi_azure/eventhub/domain.py +2 -2
  61. pulumi_azure/eventhub/event_grid_topic.py +2 -2
  62. pulumi_azure/eventhub/event_subscription.py +2 -2
  63. pulumi_azure/hpc/cache_blob_target.py +2 -2
  64. pulumi_azure/iot/_inputs.py +27 -1
  65. pulumi_azure/iot/endpoint_cosmosdb_account.py +64 -3
  66. pulumi_azure/iot/endpoint_eventhub.py +64 -3
  67. pulumi_azure/iot/endpoint_servicebus_queue.py +64 -3
  68. pulumi_azure/iot/endpoint_servicebus_topic.py +64 -3
  69. pulumi_azure/iot/endpoint_storage_container.py +64 -3
  70. pulumi_azure/iot/outputs.py +19 -1
  71. pulumi_azure/keyvault/_inputs.py +3 -17
  72. pulumi_azure/keyvault/get_key_vault.py +13 -1
  73. pulumi_azure/keyvault/key_vault.py +78 -35
  74. pulumi_azure/keyvault/outputs.py +2 -10
  75. pulumi_azure/kusto/_inputs.py +16 -6
  76. pulumi_azure/kusto/cluster.py +95 -66
  77. pulumi_azure/kusto/outputs.py +10 -4
  78. pulumi_azure/lb/get_lb_outbound_rule.py +12 -1
  79. pulumi_azure/lb/get_lb_rule.py +28 -4
  80. pulumi_azure/lb/load_balancer.py +94 -0
  81. pulumi_azure/lb/nat_rule.py +115 -29
  82. pulumi_azure/lb/outbound_rule.py +60 -17
  83. pulumi_azure/lb/rule.py +116 -30
  84. pulumi_azure/loadtest/_inputs.py +6 -3
  85. pulumi_azure/loadtest/load_test.py +0 -4
  86. pulumi_azure/loadtest/outputs.py +4 -2
  87. pulumi_azure/logicapps/_inputs.py +46 -987
  88. pulumi_azure/logicapps/get_standard.py +0 -7
  89. pulumi_azure/logicapps/outputs.py +117 -101
  90. pulumi_azure/logicapps/standard.py +7 -7
  91. pulumi_azure/machinelearning/_inputs.py +24 -4
  92. pulumi_azure/machinelearning/compute_instance.py +35 -7
  93. pulumi_azure/machinelearning/datastore_blobstorage.py +2 -2
  94. pulumi_azure/machinelearning/datastore_datalake_gen2.py +2 -2
  95. pulumi_azure/machinelearning/inference_cluster.py +2 -2
  96. pulumi_azure/machinelearning/outputs.py +17 -3
  97. pulumi_azure/machinelearning/workspace.py +61 -0
  98. pulumi_azure/management/_inputs.py +0 -18
  99. pulumi_azure/management/group_policy_assignment.py +7 -7
  100. pulumi_azure/management/outputs.py +0 -12
  101. pulumi_azure/management/private_link_association.py +0 -70
  102. pulumi_azure/mobile/_inputs.py +14 -6
  103. pulumi_azure/mobile/network_sim.py +2 -6
  104. pulumi_azure/mobile/network_sim_policy.py +2 -6
  105. pulumi_azure/mobile/network_slice.py +116 -31
  106. pulumi_azure/mobile/outputs.py +6 -4
  107. pulumi_azure/monitoring/_inputs.py +15 -9
  108. pulumi_azure/monitoring/activity_log_alert.py +7 -7
  109. pulumi_azure/monitoring/outputs.py +10 -6
  110. pulumi_azure/mssql/job_step.py +11 -11
  111. pulumi_azure/mysql/_inputs.py +20 -0
  112. pulumi_azure/mysql/outputs.py +14 -0
  113. pulumi_azure/netapp/_inputs.py +18 -6
  114. pulumi_azure/netapp/account.py +2 -2
  115. pulumi_azure/netapp/account_encryption.py +132 -4
  116. pulumi_azure/netapp/backup_policy.py +2 -2
  117. pulumi_azure/netapp/backup_vault.py +2 -2
  118. pulumi_azure/netapp/get_account.py +2 -2
  119. pulumi_azure/netapp/get_account_encryption.py +25 -3
  120. pulumi_azure/netapp/get_backup_policy.py +2 -2
  121. pulumi_azure/netapp/get_backup_vault.py +2 -2
  122. pulumi_azure/netapp/get_pool.py +17 -3
  123. pulumi_azure/netapp/get_snapshot.py +2 -2
  124. pulumi_azure/netapp/get_snapshot_policy.py +2 -2
  125. pulumi_azure/netapp/get_volume.py +17 -3
  126. pulumi_azure/netapp/get_volume_group_oracle.py +2 -2
  127. pulumi_azure/netapp/get_volume_group_sap_hana.py +2 -2
  128. pulumi_azure/netapp/get_volume_quota_rule.py +2 -2
  129. pulumi_azure/netapp/outputs.py +12 -4
  130. pulumi_azure/netapp/pool.py +104 -9
  131. pulumi_azure/netapp/snapshot.py +2 -2
  132. pulumi_azure/netapp/snapshot_policy.py +2 -2
  133. pulumi_azure/netapp/volume.py +82 -7
  134. pulumi_azure/netapp/volume_group_oracle.py +2 -2
  135. pulumi_azure/netapp/volume_group_sap_hana.py +2 -2
  136. pulumi_azure/netapp/volume_quota_rule.py +2 -2
  137. pulumi_azure/network/__init__.py +2 -0
  138. pulumi_azure/network/network_manager_ipam_pool_static_cidr.py +415 -0
  139. pulumi_azure/network/network_manager_routing_configuration.py +7 -7
  140. pulumi_azure/network/network_manager_routing_rule_collection.py +429 -0
  141. pulumi_azure/network/subnet.py +76 -1
  142. pulumi_azure/oracle/__init__.py +3 -0
  143. pulumi_azure/oracle/autonomous_database_backup.py +310 -0
  144. pulumi_azure/oracle/get_autonomous_database_backup.py +347 -0
  145. pulumi_azure/oracle/get_autonomous_database_backups.py +138 -0
  146. pulumi_azure/oracle/outputs.py +191 -0
  147. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_local_rulestack.py +2 -2
  148. pulumi_azure/paloalto/next_generation_firewall_virtual_hub_panorama.py +2 -2
  149. pulumi_azure/paloalto/next_generation_firewall_virtual_network_local_rulestack.py +2 -2
  150. pulumi_azure/paloalto/next_generation_firewall_virtual_network_panorama.py +2 -2
  151. pulumi_azure/policy/_inputs.py +6 -0
  152. pulumi_azure/policy/outputs.py +4 -0
  153. pulumi_azure/postgresql/flexible_server.py +7 -7
  154. pulumi_azure/postgresql/flexible_server_firewall_rule.py +14 -14
  155. pulumi_azure/pulumi-plugin.json +1 -1
  156. pulumi_azure/search/service.py +7 -7
  157. pulumi_azure/sentinel/_inputs.py +144 -0
  158. pulumi_azure/sentinel/authomation_rule.py +47 -0
  159. pulumi_azure/sentinel/automation_rule.py +47 -0
  160. pulumi_azure/sentinel/outputs.py +84 -0
  161. pulumi_azure/storage/_inputs.py +3 -3
  162. pulumi_azure/storage/container_immutability_policy.py +2 -2
  163. pulumi_azure/storage/get_queue.py +59 -8
  164. pulumi_azure/storage/outputs.py +2 -2
  165. pulumi_azure/storage/queue.py +159 -27
  166. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758695020.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
@@ -203,6 +203,10 @@ __all__ = [
203
203
  'GetManagedDiskEncryptionSettingResult',
204
204
  'GetManagedDiskEncryptionSettingDiskEncryptionKeyResult',
205
205
  'GetManagedDiskEncryptionSettingKeyEncryptionKeyResult',
206
+ 'GetManagedDisksDiskResult',
207
+ 'GetManagedDisksDiskEncryptionSettingResult',
208
+ 'GetManagedDisksDiskEncryptionSettingDiskEncryptionKeyResult',
209
+ 'GetManagedDisksDiskEncryptionSettingKeyEncryptionKeyResult',
206
210
  'GetOrchestratedVirtualMachineScaleSetIdentityResult',
207
211
  'GetOrchestratedVirtualMachineScaleSetNetworkInterfaceResult',
208
212
  'GetOrchestratedVirtualMachineScaleSetNetworkInterfaceIpConfigurationResult',
@@ -1179,9 +1183,7 @@ class LinuxVirtualMachineOsDisk(dict):
1179
1183
  @staticmethod
1180
1184
  def __key_warning(key: str):
1181
1185
  suggest = None
1182
- if key == "storageAccountType":
1183
- suggest = "storage_account_type"
1184
- elif key == "diffDiskSettings":
1186
+ if key == "diffDiskSettings":
1185
1187
  suggest = "diff_disk_settings"
1186
1188
  elif key == "diskEncryptionSetId":
1187
1189
  suggest = "disk_encryption_set_id"
@@ -1191,6 +1193,8 @@ class LinuxVirtualMachineOsDisk(dict):
1191
1193
  suggest = "secure_vm_disk_encryption_set_id"
1192
1194
  elif key == "securityEncryptionType":
1193
1195
  suggest = "security_encryption_type"
1196
+ elif key == "storageAccountType":
1197
+ suggest = "storage_account_type"
1194
1198
  elif key == "writeAcceleratorEnabled":
1195
1199
  suggest = "write_accelerator_enabled"
1196
1200
 
@@ -1207,7 +1211,6 @@ class LinuxVirtualMachineOsDisk(dict):
1207
1211
 
1208
1212
  def __init__(__self__, *,
1209
1213
  caching: _builtins.str,
1210
- storage_account_type: _builtins.str,
1211
1214
  diff_disk_settings: Optional['outputs.LinuxVirtualMachineOsDiskDiffDiskSettings'] = None,
1212
1215
  disk_encryption_set_id: Optional[_builtins.str] = None,
1213
1216
  disk_size_gb: Optional[_builtins.int] = None,
@@ -1215,13 +1218,13 @@ class LinuxVirtualMachineOsDisk(dict):
1215
1218
  name: Optional[_builtins.str] = None,
1216
1219
  secure_vm_disk_encryption_set_id: Optional[_builtins.str] = None,
1217
1220
  security_encryption_type: Optional[_builtins.str] = None,
1221
+ storage_account_type: Optional[_builtins.str] = None,
1218
1222
  write_accelerator_enabled: Optional[_builtins.bool] = None):
1219
1223
  """
1220
1224
  :param _builtins.str caching: The Type of Caching which should be used for the Internal OS Disk. Possible values are `None`, `ReadOnly` and `ReadWrite`.
1221
- :param _builtins.str storage_account_type: The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
1222
1225
  :param 'LinuxVirtualMachineOsDiskDiffDiskSettingsArgs' diff_disk_settings: A `diff_disk_settings` block as defined above. Changing this forces a new resource to be created.
1223
1226
 
1224
- > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment)
1227
+ > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment). Additionally, this property cannot be set when an existing Managed Disk is used to create the Virtual Machine by setting `os_managed_disk_id`.
1225
1228
  :param _builtins.str disk_encryption_set_id: The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk. Conflicts with `secure_vm_disk_encryption_set_id`.
1226
1229
 
1227
1230
  > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
@@ -1230,6 +1233,8 @@ class LinuxVirtualMachineOsDisk(dict):
1230
1233
  > **NOTE:** If specified this must be equal to or larger than the size of the Image the Virtual Machine is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
1231
1234
  :param _builtins.str id: The ID of the OS disk.
1232
1235
  :param _builtins.str name: The name which should be used for the Internal OS Disk. Changing this forces a new resource to be created.
1236
+
1237
+ > **Note:** a value for `name` cannot be specified if/when the Virtual Machine is/has been created using an existing Managed Disk for the OS by setting `os_managed_disk_id`.
1233
1238
  :param _builtins.str secure_vm_disk_encryption_set_id: The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk when the Virtual Machine is a Confidential VM. Conflicts with `disk_encryption_set_id`. Changing this forces a new resource to be created.
1234
1239
 
1235
1240
  > **NOTE:** `secure_vm_disk_encryption_set_id` can only be specified when `security_encryption_type` is set to `DiskWithVMGuestState`.
@@ -1238,12 +1243,14 @@ class LinuxVirtualMachineOsDisk(dict):
1238
1243
  > **NOTE:** `vtpm_enabled` must be set to `true` when `security_encryption_type` is specified.
1239
1244
 
1240
1245
  > **NOTE:** `encryption_at_host_enabled` cannot be set to `true` when `security_encryption_type` is set to `DiskWithVMGuestState`.
1246
+ :param _builtins.str storage_account_type: The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
1247
+
1248
+ > **Note:** This is required unless using an existing OS Managed Disk by specifying `os_managed_disk_id`.
1241
1249
  :param _builtins.bool write_accelerator_enabled: Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
1242
1250
 
1243
1251
  > **NOTE:** This requires that the `storage_account_type` is set to `Premium_LRS` and that `caching` is set to `None`.
1244
1252
  """
1245
1253
  pulumi.set(__self__, "caching", caching)
1246
- pulumi.set(__self__, "storage_account_type", storage_account_type)
1247
1254
  if diff_disk_settings is not None:
1248
1255
  pulumi.set(__self__, "diff_disk_settings", diff_disk_settings)
1249
1256
  if disk_encryption_set_id is not None:
@@ -1258,6 +1265,8 @@ class LinuxVirtualMachineOsDisk(dict):
1258
1265
  pulumi.set(__self__, "secure_vm_disk_encryption_set_id", secure_vm_disk_encryption_set_id)
1259
1266
  if security_encryption_type is not None:
1260
1267
  pulumi.set(__self__, "security_encryption_type", security_encryption_type)
1268
+ if storage_account_type is not None:
1269
+ pulumi.set(__self__, "storage_account_type", storage_account_type)
1261
1270
  if write_accelerator_enabled is not None:
1262
1271
  pulumi.set(__self__, "write_accelerator_enabled", write_accelerator_enabled)
1263
1272
 
@@ -1269,21 +1278,13 @@ class LinuxVirtualMachineOsDisk(dict):
1269
1278
  """
1270
1279
  return pulumi.get(self, "caching")
1271
1280
 
1272
- @_builtins.property
1273
- @pulumi.getter(name="storageAccountType")
1274
- def storage_account_type(self) -> _builtins.str:
1275
- """
1276
- The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
1277
- """
1278
- return pulumi.get(self, "storage_account_type")
1279
-
1280
1281
  @_builtins.property
1281
1282
  @pulumi.getter(name="diffDiskSettings")
1282
1283
  def diff_disk_settings(self) -> Optional['outputs.LinuxVirtualMachineOsDiskDiffDiskSettings']:
1283
1284
  """
1284
1285
  A `diff_disk_settings` block as defined above. Changing this forces a new resource to be created.
1285
1286
 
1286
- > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment)
1287
+ > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment). Additionally, this property cannot be set when an existing Managed Disk is used to create the Virtual Machine by setting `os_managed_disk_id`.
1287
1288
  """
1288
1289
  return pulumi.get(self, "diff_disk_settings")
1289
1290
 
@@ -1320,6 +1321,8 @@ class LinuxVirtualMachineOsDisk(dict):
1320
1321
  def name(self) -> Optional[_builtins.str]:
1321
1322
  """
1322
1323
  The name which should be used for the Internal OS Disk. Changing this forces a new resource to be created.
1324
+
1325
+ > **Note:** a value for `name` cannot be specified if/when the Virtual Machine is/has been created using an existing Managed Disk for the OS by setting `os_managed_disk_id`.
1323
1326
  """
1324
1327
  return pulumi.get(self, "name")
1325
1328
 
@@ -1345,6 +1348,16 @@ class LinuxVirtualMachineOsDisk(dict):
1345
1348
  """
1346
1349
  return pulumi.get(self, "security_encryption_type")
1347
1350
 
1351
+ @_builtins.property
1352
+ @pulumi.getter(name="storageAccountType")
1353
+ def storage_account_type(self) -> Optional[_builtins.str]:
1354
+ """
1355
+ The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
1356
+
1357
+ > **Note:** This is required unless using an existing OS Managed Disk by specifying `os_managed_disk_id`.
1358
+ """
1359
+ return pulumi.get(self, "storage_account_type")
1360
+
1348
1361
  @_builtins.property
1349
1362
  @pulumi.getter(name="writeAcceleratorEnabled")
1350
1363
  def write_accelerator_enabled(self) -> Optional[_builtins.bool]:
@@ -1363,7 +1376,9 @@ class LinuxVirtualMachineOsDiskDiffDiskSettings(dict):
1363
1376
  placement: Optional[_builtins.str] = None):
1364
1377
  """
1365
1378
  :param _builtins.str option: Specifies the Ephemeral Disk Settings for the OS Disk. At this time the only possible value is `Local`. Changing this forces a new resource to be created.
1366
- :param _builtins.str placement: Specifies where to store the Ephemeral Disk. Possible values are `CacheDisk` and `ResourceDisk`. Defaults to `CacheDisk`. Changing this forces a new resource to be created.
1379
+ :param _builtins.str placement: Specifies where to store the Ephemeral Disk. Possible values are `CacheDisk`, `ResourceDisk` and `NvmeDisk`. Defaults to `CacheDisk`. Changing this forces a new resource to be created.
1380
+
1381
+ > **Note:** `NvmeDisk` can only be used for v6 VMs in combination with a supported `source_image_reference`. More information can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/ephemeral-os-disks)
1367
1382
  """
1368
1383
  pulumi.set(__self__, "option", option)
1369
1384
  if placement is not None:
@@ -1381,7 +1396,9 @@ class LinuxVirtualMachineOsDiskDiffDiskSettings(dict):
1381
1396
  @pulumi.getter
1382
1397
  def placement(self) -> Optional[_builtins.str]:
1383
1398
  """
1384
- Specifies where to store the Ephemeral Disk. Possible values are `CacheDisk` and `ResourceDisk`. Defaults to `CacheDisk`. Changing this forces a new resource to be created.
1399
+ Specifies where to store the Ephemeral Disk. Possible values are `CacheDisk`, `ResourceDisk` and `NvmeDisk`. Defaults to `CacheDisk`. Changing this forces a new resource to be created.
1400
+
1401
+ > **Note:** `NvmeDisk` can only be used for v6 VMs in combination with a supported `source_image_reference`. More information can be found [here](https://learn.microsoft.com/en-us/azure/virtual-machines/ephemeral-os-disks)
1385
1402
  """
1386
1403
  return pulumi.get(self, "placement")
1387
1404
 
@@ -9965,9 +9982,7 @@ class WindowsVirtualMachineOsDisk(dict):
9965
9982
  @staticmethod
9966
9983
  def __key_warning(key: str):
9967
9984
  suggest = None
9968
- if key == "storageAccountType":
9969
- suggest = "storage_account_type"
9970
- elif key == "diffDiskSettings":
9985
+ if key == "diffDiskSettings":
9971
9986
  suggest = "diff_disk_settings"
9972
9987
  elif key == "diskEncryptionSetId":
9973
9988
  suggest = "disk_encryption_set_id"
@@ -9977,6 +9992,8 @@ class WindowsVirtualMachineOsDisk(dict):
9977
9992
  suggest = "secure_vm_disk_encryption_set_id"
9978
9993
  elif key == "securityEncryptionType":
9979
9994
  suggest = "security_encryption_type"
9995
+ elif key == "storageAccountType":
9996
+ suggest = "storage_account_type"
9980
9997
  elif key == "writeAcceleratorEnabled":
9981
9998
  suggest = "write_accelerator_enabled"
9982
9999
 
@@ -9993,7 +10010,6 @@ class WindowsVirtualMachineOsDisk(dict):
9993
10010
 
9994
10011
  def __init__(__self__, *,
9995
10012
  caching: _builtins.str,
9996
- storage_account_type: _builtins.str,
9997
10013
  diff_disk_settings: Optional['outputs.WindowsVirtualMachineOsDiskDiffDiskSettings'] = None,
9998
10014
  disk_encryption_set_id: Optional[_builtins.str] = None,
9999
10015
  disk_size_gb: Optional[_builtins.int] = None,
@@ -10001,13 +10017,13 @@ class WindowsVirtualMachineOsDisk(dict):
10001
10017
  name: Optional[_builtins.str] = None,
10002
10018
  secure_vm_disk_encryption_set_id: Optional[_builtins.str] = None,
10003
10019
  security_encryption_type: Optional[_builtins.str] = None,
10020
+ storage_account_type: Optional[_builtins.str] = None,
10004
10021
  write_accelerator_enabled: Optional[_builtins.bool] = None):
10005
10022
  """
10006
10023
  :param _builtins.str caching: The Type of Caching which should be used for the Internal OS Disk. Possible values are `None`, `ReadOnly` and `ReadWrite`.
10007
- :param _builtins.str storage_account_type: The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
10008
10024
  :param 'WindowsVirtualMachineOsDiskDiffDiskSettingsArgs' diff_disk_settings: A `diff_disk_settings` block as defined above. Changing this forces a new resource to be created.
10009
10025
 
10010
- > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment)
10026
+ > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment). Additionally, this property cannot be set when an existing Managed Disk is used to create the Virtual Machine by setting `os_managed_disk_id`.
10011
10027
  :param _builtins.str disk_encryption_set_id: The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk. Conflicts with `secure_vm_disk_encryption_set_id`.
10012
10028
 
10013
10029
  > **NOTE:** The Disk Encryption Set must have the `Reader` Role Assignment scoped on the Key Vault - in addition to an Access Policy to the Key Vault
@@ -10016,6 +10032,8 @@ class WindowsVirtualMachineOsDisk(dict):
10016
10032
  > **NOTE:** If specified this must be equal to or larger than the size of the Image the Virtual Machine is based on. When creating a larger disk than exists in the image you'll need to repartition the disk to use the remaining space.
10017
10033
  :param _builtins.str id: The ID of the OS disk.
10018
10034
  :param _builtins.str name: The name which should be used for the Internal OS Disk. Changing this forces a new resource to be created.
10035
+
10036
+ > **Note:** a value for `name` cannot be specified if/when the Virtual Machine has been created using an existing Managed Disk for the OS by setting `os_managed_disk_id`.
10019
10037
  :param _builtins.str secure_vm_disk_encryption_set_id: The ID of the Disk Encryption Set which should be used to Encrypt this OS Disk when the Virtual Machine is a Confidential VM. Conflicts with `disk_encryption_set_id`. Changing this forces a new resource to be created.
10020
10038
 
10021
10039
  > **NOTE:** `secure_vm_disk_encryption_set_id` can only be specified when `security_encryption_type` is set to `DiskWithVMGuestState`.
@@ -10024,12 +10042,14 @@ class WindowsVirtualMachineOsDisk(dict):
10024
10042
  > **NOTE:** `vtpm_enabled` must be set to `true` when `security_encryption_type` is specified.
10025
10043
 
10026
10044
  > **NOTE:** `encryption_at_host_enabled` cannot be set to `true` when `security_encryption_type` is set to `DiskWithVMGuestState`.
10045
+ :param _builtins.str storage_account_type: The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
10046
+
10047
+ > **Note:** This is required unless using an existing OS Managed Disk by specifying `os_managed_disk_id`.
10027
10048
  :param _builtins.bool write_accelerator_enabled: Should Write Accelerator be Enabled for this OS Disk? Defaults to `false`.
10028
10049
 
10029
10050
  > **NOTE:** This requires that the `storage_account_type` is set to `Premium_LRS` and that `caching` is set to `None`.
10030
10051
  """
10031
10052
  pulumi.set(__self__, "caching", caching)
10032
- pulumi.set(__self__, "storage_account_type", storage_account_type)
10033
10053
  if diff_disk_settings is not None:
10034
10054
  pulumi.set(__self__, "diff_disk_settings", diff_disk_settings)
10035
10055
  if disk_encryption_set_id is not None:
@@ -10044,6 +10064,8 @@ class WindowsVirtualMachineOsDisk(dict):
10044
10064
  pulumi.set(__self__, "secure_vm_disk_encryption_set_id", secure_vm_disk_encryption_set_id)
10045
10065
  if security_encryption_type is not None:
10046
10066
  pulumi.set(__self__, "security_encryption_type", security_encryption_type)
10067
+ if storage_account_type is not None:
10068
+ pulumi.set(__self__, "storage_account_type", storage_account_type)
10047
10069
  if write_accelerator_enabled is not None:
10048
10070
  pulumi.set(__self__, "write_accelerator_enabled", write_accelerator_enabled)
10049
10071
 
@@ -10055,21 +10077,13 @@ class WindowsVirtualMachineOsDisk(dict):
10055
10077
  """
10056
10078
  return pulumi.get(self, "caching")
10057
10079
 
10058
- @_builtins.property
10059
- @pulumi.getter(name="storageAccountType")
10060
- def storage_account_type(self) -> _builtins.str:
10061
- """
10062
- The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
10063
- """
10064
- return pulumi.get(self, "storage_account_type")
10065
-
10066
10080
  @_builtins.property
10067
10081
  @pulumi.getter(name="diffDiskSettings")
10068
10082
  def diff_disk_settings(self) -> Optional['outputs.WindowsVirtualMachineOsDiskDiffDiskSettings']:
10069
10083
  """
10070
10084
  A `diff_disk_settings` block as defined above. Changing this forces a new resource to be created.
10071
10085
 
10072
- > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment)
10086
+ > **NOTE:** `diff_disk_settings` can only be set when `caching` is set to `ReadOnly`. More information can be found [here](https://docs.microsoft.com/azure/virtual-machines/ephemeral-os-disks-deploy#vm-template-deployment). Additionally, this property cannot be set when an existing Managed Disk is used to create the Virtual Machine by setting `os_managed_disk_id`.
10073
10087
  """
10074
10088
  return pulumi.get(self, "diff_disk_settings")
10075
10089
 
@@ -10106,6 +10120,8 @@ class WindowsVirtualMachineOsDisk(dict):
10106
10120
  def name(self) -> Optional[_builtins.str]:
10107
10121
  """
10108
10122
  The name which should be used for the Internal OS Disk. Changing this forces a new resource to be created.
10123
+
10124
+ > **Note:** a value for `name` cannot be specified if/when the Virtual Machine has been created using an existing Managed Disk for the OS by setting `os_managed_disk_id`.
10109
10125
  """
10110
10126
  return pulumi.get(self, "name")
10111
10127
 
@@ -10131,6 +10147,16 @@ class WindowsVirtualMachineOsDisk(dict):
10131
10147
  """
10132
10148
  return pulumi.get(self, "security_encryption_type")
10133
10149
 
10150
+ @_builtins.property
10151
+ @pulumi.getter(name="storageAccountType")
10152
+ def storage_account_type(self) -> Optional[_builtins.str]:
10153
+ """
10154
+ The Type of Storage Account which should back this the Internal OS Disk. Possible values are `Standard_LRS`, `StandardSSD_LRS`, `Premium_LRS`, `StandardSSD_ZRS` and `Premium_ZRS`. Changing this forces a new resource to be created.
10155
+
10156
+ > **Note:** This is required unless using an existing OS Managed Disk by specifying `os_managed_disk_id`.
10157
+ """
10158
+ return pulumi.get(self, "storage_account_type")
10159
+
10134
10160
  @_builtins.property
10135
10161
  @pulumi.getter(name="writeAcceleratorEnabled")
10136
10162
  def write_accelerator_enabled(self) -> Optional[_builtins.bool]:
@@ -12917,6 +12943,308 @@ class GetManagedDiskEncryptionSettingKeyEncryptionKeyResult(dict):
12917
12943
  return pulumi.get(self, "source_vault_id")
12918
12944
 
12919
12945
 
12946
+ @pulumi.output_type
12947
+ class GetManagedDisksDiskResult(dict):
12948
+ def __init__(__self__, *,
12949
+ create_option: _builtins.str,
12950
+ disk_access_id: _builtins.str,
12951
+ disk_encryption_set_id: _builtins.str,
12952
+ disk_iops_read_write: _builtins.int,
12953
+ disk_mbps_read_write: _builtins.int,
12954
+ disk_size_in_gb: _builtins.int,
12955
+ encryption_settings: Sequence['outputs.GetManagedDisksDiskEncryptionSettingResult'],
12956
+ id: _builtins.str,
12957
+ image_reference_id: _builtins.str,
12958
+ location: _builtins.str,
12959
+ name: _builtins.str,
12960
+ network_access_policy: _builtins.str,
12961
+ os_type: _builtins.str,
12962
+ source_resource_id: _builtins.str,
12963
+ source_uri: _builtins.str,
12964
+ storage_account_id: _builtins.str,
12965
+ storage_account_type: _builtins.str,
12966
+ tags: Mapping[str, _builtins.str],
12967
+ zones: Sequence[_builtins.str]):
12968
+ """
12969
+ :param _builtins.str disk_access_id: The ID of the disk access resource for using private endpoints on disks.
12970
+ :param _builtins.str disk_encryption_set_id: The ID of the Disk Encryption Set used to encrypt this Managed Disk.
12971
+ :param _builtins.int disk_iops_read_write: The number of IOPS allowed for this disk, where one operation can transfer between 4k and 256k bytes.
12972
+ :param _builtins.int disk_mbps_read_write: The bandwidth allowed for this disk.
12973
+ :param _builtins.int disk_size_in_gb: The size of the Managed Disk in gigabytes.
12974
+ :param Sequence['GetManagedDisksDiskEncryptionSettingArgs'] encryption_settings: An `encryption_settings` block as defined below.
12975
+ :param _builtins.str image_reference_id: The ID of the source image used for creating this Managed Disk.
12976
+ :param _builtins.str location: The Azure location of the Managed Disk.
12977
+ :param _builtins.str name: The name of the Managed Disk.
12978
+ :param _builtins.str network_access_policy: Policy for accessing the disk via network.
12979
+ :param _builtins.str os_type: The operating system used for this Managed Disk.
12980
+ :param _builtins.str source_resource_id: The ID of an existing Managed Disk which this Disk was created from.
12981
+ :param _builtins.str source_uri: The Source URI for this Managed Disk.
12982
+ :param _builtins.str storage_account_id: The ID of the Storage Account where the `source_uri` is located.
12983
+ :param _builtins.str storage_account_type: The storage account type for the Managed Disk.
12984
+ :param Mapping[str, _builtins.str] tags: A mapping of tags assigned to the resource.
12985
+ :param Sequence[_builtins.str] zones: A list of Availability Zones where the Managed Disk exists.
12986
+ """
12987
+ pulumi.set(__self__, "create_option", create_option)
12988
+ pulumi.set(__self__, "disk_access_id", disk_access_id)
12989
+ pulumi.set(__self__, "disk_encryption_set_id", disk_encryption_set_id)
12990
+ pulumi.set(__self__, "disk_iops_read_write", disk_iops_read_write)
12991
+ pulumi.set(__self__, "disk_mbps_read_write", disk_mbps_read_write)
12992
+ pulumi.set(__self__, "disk_size_in_gb", disk_size_in_gb)
12993
+ pulumi.set(__self__, "encryption_settings", encryption_settings)
12994
+ pulumi.set(__self__, "id", id)
12995
+ pulumi.set(__self__, "image_reference_id", image_reference_id)
12996
+ pulumi.set(__self__, "location", location)
12997
+ pulumi.set(__self__, "name", name)
12998
+ pulumi.set(__self__, "network_access_policy", network_access_policy)
12999
+ pulumi.set(__self__, "os_type", os_type)
13000
+ pulumi.set(__self__, "source_resource_id", source_resource_id)
13001
+ pulumi.set(__self__, "source_uri", source_uri)
13002
+ pulumi.set(__self__, "storage_account_id", storage_account_id)
13003
+ pulumi.set(__self__, "storage_account_type", storage_account_type)
13004
+ pulumi.set(__self__, "tags", tags)
13005
+ pulumi.set(__self__, "zones", zones)
13006
+
13007
+ @_builtins.property
13008
+ @pulumi.getter(name="createOption")
13009
+ def create_option(self) -> _builtins.str:
13010
+ return pulumi.get(self, "create_option")
13011
+
13012
+ @_builtins.property
13013
+ @pulumi.getter(name="diskAccessId")
13014
+ def disk_access_id(self) -> _builtins.str:
13015
+ """
13016
+ The ID of the disk access resource for using private endpoints on disks.
13017
+ """
13018
+ return pulumi.get(self, "disk_access_id")
13019
+
13020
+ @_builtins.property
13021
+ @pulumi.getter(name="diskEncryptionSetId")
13022
+ def disk_encryption_set_id(self) -> _builtins.str:
13023
+ """
13024
+ The ID of the Disk Encryption Set used to encrypt this Managed Disk.
13025
+ """
13026
+ return pulumi.get(self, "disk_encryption_set_id")
13027
+
13028
+ @_builtins.property
13029
+ @pulumi.getter(name="diskIopsReadWrite")
13030
+ def disk_iops_read_write(self) -> _builtins.int:
13031
+ """
13032
+ The number of IOPS allowed for this disk, where one operation can transfer between 4k and 256k bytes.
13033
+ """
13034
+ return pulumi.get(self, "disk_iops_read_write")
13035
+
13036
+ @_builtins.property
13037
+ @pulumi.getter(name="diskMbpsReadWrite")
13038
+ def disk_mbps_read_write(self) -> _builtins.int:
13039
+ """
13040
+ The bandwidth allowed for this disk.
13041
+ """
13042
+ return pulumi.get(self, "disk_mbps_read_write")
13043
+
13044
+ @_builtins.property
13045
+ @pulumi.getter(name="diskSizeInGb")
13046
+ def disk_size_in_gb(self) -> _builtins.int:
13047
+ """
13048
+ The size of the Managed Disk in gigabytes.
13049
+ """
13050
+ return pulumi.get(self, "disk_size_in_gb")
13051
+
13052
+ @_builtins.property
13053
+ @pulumi.getter(name="encryptionSettings")
13054
+ def encryption_settings(self) -> Sequence['outputs.GetManagedDisksDiskEncryptionSettingResult']:
13055
+ """
13056
+ An `encryption_settings` block as defined below.
13057
+ """
13058
+ return pulumi.get(self, "encryption_settings")
13059
+
13060
+ @_builtins.property
13061
+ @pulumi.getter
13062
+ def id(self) -> _builtins.str:
13063
+ return pulumi.get(self, "id")
13064
+
13065
+ @_builtins.property
13066
+ @pulumi.getter(name="imageReferenceId")
13067
+ def image_reference_id(self) -> _builtins.str:
13068
+ """
13069
+ The ID of the source image used for creating this Managed Disk.
13070
+ """
13071
+ return pulumi.get(self, "image_reference_id")
13072
+
13073
+ @_builtins.property
13074
+ @pulumi.getter
13075
+ def location(self) -> _builtins.str:
13076
+ """
13077
+ The Azure location of the Managed Disk.
13078
+ """
13079
+ return pulumi.get(self, "location")
13080
+
13081
+ @_builtins.property
13082
+ @pulumi.getter
13083
+ def name(self) -> _builtins.str:
13084
+ """
13085
+ The name of the Managed Disk.
13086
+ """
13087
+ return pulumi.get(self, "name")
13088
+
13089
+ @_builtins.property
13090
+ @pulumi.getter(name="networkAccessPolicy")
13091
+ def network_access_policy(self) -> _builtins.str:
13092
+ """
13093
+ Policy for accessing the disk via network.
13094
+ """
13095
+ return pulumi.get(self, "network_access_policy")
13096
+
13097
+ @_builtins.property
13098
+ @pulumi.getter(name="osType")
13099
+ def os_type(self) -> _builtins.str:
13100
+ """
13101
+ The operating system used for this Managed Disk.
13102
+ """
13103
+ return pulumi.get(self, "os_type")
13104
+
13105
+ @_builtins.property
13106
+ @pulumi.getter(name="sourceResourceId")
13107
+ def source_resource_id(self) -> _builtins.str:
13108
+ """
13109
+ The ID of an existing Managed Disk which this Disk was created from.
13110
+ """
13111
+ return pulumi.get(self, "source_resource_id")
13112
+
13113
+ @_builtins.property
13114
+ @pulumi.getter(name="sourceUri")
13115
+ def source_uri(self) -> _builtins.str:
13116
+ """
13117
+ The Source URI for this Managed Disk.
13118
+ """
13119
+ return pulumi.get(self, "source_uri")
13120
+
13121
+ @_builtins.property
13122
+ @pulumi.getter(name="storageAccountId")
13123
+ def storage_account_id(self) -> _builtins.str:
13124
+ """
13125
+ The ID of the Storage Account where the `source_uri` is located.
13126
+ """
13127
+ return pulumi.get(self, "storage_account_id")
13128
+
13129
+ @_builtins.property
13130
+ @pulumi.getter(name="storageAccountType")
13131
+ def storage_account_type(self) -> _builtins.str:
13132
+ """
13133
+ The storage account type for the Managed Disk.
13134
+ """
13135
+ return pulumi.get(self, "storage_account_type")
13136
+
13137
+ @_builtins.property
13138
+ @pulumi.getter
13139
+ def tags(self) -> Mapping[str, _builtins.str]:
13140
+ """
13141
+ A mapping of tags assigned to the resource.
13142
+ """
13143
+ return pulumi.get(self, "tags")
13144
+
13145
+ @_builtins.property
13146
+ @pulumi.getter
13147
+ def zones(self) -> Sequence[_builtins.str]:
13148
+ """
13149
+ A list of Availability Zones where the Managed Disk exists.
13150
+ """
13151
+ return pulumi.get(self, "zones")
13152
+
13153
+
13154
+ @pulumi.output_type
13155
+ class GetManagedDisksDiskEncryptionSettingResult(dict):
13156
+ def __init__(__self__, *,
13157
+ disk_encryption_keys: Sequence['outputs.GetManagedDisksDiskEncryptionSettingDiskEncryptionKeyResult'],
13158
+ enabled: _builtins.bool,
13159
+ key_encryption_keys: Sequence['outputs.GetManagedDisksDiskEncryptionSettingKeyEncryptionKeyResult']):
13160
+ """
13161
+ :param Sequence['GetManagedDisksDiskEncryptionSettingDiskEncryptionKeyArgs'] disk_encryption_keys: A `disk_encryption_key` block as defined above.
13162
+ :param Sequence['GetManagedDisksDiskEncryptionSettingKeyEncryptionKeyArgs'] key_encryption_keys: A `key_encryption_key` block as defined below.
13163
+ """
13164
+ pulumi.set(__self__, "disk_encryption_keys", disk_encryption_keys)
13165
+ pulumi.set(__self__, "enabled", enabled)
13166
+ pulumi.set(__self__, "key_encryption_keys", key_encryption_keys)
13167
+
13168
+ @_builtins.property
13169
+ @pulumi.getter(name="diskEncryptionKeys")
13170
+ def disk_encryption_keys(self) -> Sequence['outputs.GetManagedDisksDiskEncryptionSettingDiskEncryptionKeyResult']:
13171
+ """
13172
+ A `disk_encryption_key` block as defined above.
13173
+ """
13174
+ return pulumi.get(self, "disk_encryption_keys")
13175
+
13176
+ @_builtins.property
13177
+ @pulumi.getter
13178
+ def enabled(self) -> _builtins.bool:
13179
+ return pulumi.get(self, "enabled")
13180
+
13181
+ @_builtins.property
13182
+ @pulumi.getter(name="keyEncryptionKeys")
13183
+ def key_encryption_keys(self) -> Sequence['outputs.GetManagedDisksDiskEncryptionSettingKeyEncryptionKeyResult']:
13184
+ """
13185
+ A `key_encryption_key` block as defined below.
13186
+ """
13187
+ return pulumi.get(self, "key_encryption_keys")
13188
+
13189
+
13190
+ @pulumi.output_type
13191
+ class GetManagedDisksDiskEncryptionSettingDiskEncryptionKeyResult(dict):
13192
+ def __init__(__self__, *,
13193
+ secret_url: _builtins.str,
13194
+ source_vault_id: _builtins.str):
13195
+ """
13196
+ :param _builtins.str secret_url: The URL to the Key Vault Secret used as the Disk Encryption Key.
13197
+ :param _builtins.str source_vault_id: The ID of the source Key Vault.
13198
+ """
13199
+ pulumi.set(__self__, "secret_url", secret_url)
13200
+ pulumi.set(__self__, "source_vault_id", source_vault_id)
13201
+
13202
+ @_builtins.property
13203
+ @pulumi.getter(name="secretUrl")
13204
+ def secret_url(self) -> _builtins.str:
13205
+ """
13206
+ The URL to the Key Vault Secret used as the Disk Encryption Key.
13207
+ """
13208
+ return pulumi.get(self, "secret_url")
13209
+
13210
+ @_builtins.property
13211
+ @pulumi.getter(name="sourceVaultId")
13212
+ def source_vault_id(self) -> _builtins.str:
13213
+ """
13214
+ The ID of the source Key Vault.
13215
+ """
13216
+ return pulumi.get(self, "source_vault_id")
13217
+
13218
+
13219
+ @pulumi.output_type
13220
+ class GetManagedDisksDiskEncryptionSettingKeyEncryptionKeyResult(dict):
13221
+ def __init__(__self__, *,
13222
+ key_url: _builtins.str,
13223
+ source_vault_id: _builtins.str):
13224
+ """
13225
+ :param _builtins.str key_url: The URL to the Key Vault Key used as the Key Encryption Key.
13226
+ :param _builtins.str source_vault_id: The ID of the source Key Vault.
13227
+ """
13228
+ pulumi.set(__self__, "key_url", key_url)
13229
+ pulumi.set(__self__, "source_vault_id", source_vault_id)
13230
+
13231
+ @_builtins.property
13232
+ @pulumi.getter(name="keyUrl")
13233
+ def key_url(self) -> _builtins.str:
13234
+ """
13235
+ The URL to the Key Vault Key used as the Key Encryption Key.
13236
+ """
13237
+ return pulumi.get(self, "key_url")
13238
+
13239
+ @_builtins.property
13240
+ @pulumi.getter(name="sourceVaultId")
13241
+ def source_vault_id(self) -> _builtins.str:
13242
+ """
13243
+ The ID of the source Key Vault.
13244
+ """
13245
+ return pulumi.get(self, "source_vault_id")
13246
+
13247
+
12920
13248
  @pulumi.output_type
12921
13249
  class GetOrchestratedVirtualMachineScaleSetIdentityResult(dict):
12922
13250
  def __init__(__self__, *,