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
@@ -1494,15 +1494,17 @@ if not MYPY:
1494
1494
  """
1495
1495
  recommendation_category: NotRequired[pulumi.Input[_builtins.str]]
1496
1496
  """
1497
- The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability` and `Performance`. It is only allowed when `category` is `Recommendation`.
1497
+ The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability`, `Performance` and `Security`.
1498
1498
  """
1499
1499
  recommendation_impact: NotRequired[pulumi.Input[_builtins.str]]
1500
1500
  """
1501
- The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`. It is only allowed when `category` is `Recommendation`.
1501
+ The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`.
1502
+
1503
+ > **Note:** The `recommendation_type`, `recommendation_category`, and `recommendation_impact` fields can only be defined if the `category` field has been set to `Recommendation`.
1502
1504
  """
1503
1505
  recommendation_type: NotRequired[pulumi.Input[_builtins.str]]
1504
1506
  """
1505
- The recommendation type of the event. It is only allowed when `category` is `Recommendation`.
1507
+ The recommendation type of the event.
1506
1508
  """
1507
1509
  resource_group: NotRequired[pulumi.Input[_builtins.str]]
1508
1510
  """
@@ -1608,9 +1610,11 @@ class ActivityLogAlertCriteriaArgs:
1608
1610
 
1609
1611
  > **Note:** `level` and `levels` are mutually exclusive.
1610
1612
  :param pulumi.Input[_builtins.str] operation_name: The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: `<resourceProvider>/<resourceType>/<operation>`.
1611
- :param pulumi.Input[_builtins.str] recommendation_category: The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability` and `Performance`. It is only allowed when `category` is `Recommendation`.
1612
- :param pulumi.Input[_builtins.str] recommendation_impact: The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`. It is only allowed when `category` is `Recommendation`.
1613
- :param pulumi.Input[_builtins.str] recommendation_type: The recommendation type of the event. It is only allowed when `category` is `Recommendation`.
1613
+ :param pulumi.Input[_builtins.str] recommendation_category: The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability`, `Performance` and `Security`.
1614
+ :param pulumi.Input[_builtins.str] recommendation_impact: The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`.
1615
+
1616
+ > **Note:** The `recommendation_type`, `recommendation_category`, and `recommendation_impact` fields can only be defined if the `category` field has been set to `Recommendation`.
1617
+ :param pulumi.Input[_builtins.str] recommendation_type: The recommendation type of the event.
1614
1618
  :param pulumi.Input[_builtins.str] resource_group: The name of resource group monitored by the activity log alert.
1615
1619
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] resource_groups: A list of names of resource groups monitored by the activity log alert.
1616
1620
 
@@ -1748,7 +1752,7 @@ class ActivityLogAlertCriteriaArgs:
1748
1752
  @pulumi.getter(name="recommendationCategory")
1749
1753
  def recommendation_category(self) -> Optional[pulumi.Input[_builtins.str]]:
1750
1754
  """
1751
- The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability` and `Performance`. It is only allowed when `category` is `Recommendation`.
1755
+ The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability`, `Performance` and `Security`.
1752
1756
  """
1753
1757
  return pulumi.get(self, "recommendation_category")
1754
1758
 
@@ -1760,7 +1764,9 @@ class ActivityLogAlertCriteriaArgs:
1760
1764
  @pulumi.getter(name="recommendationImpact")
1761
1765
  def recommendation_impact(self) -> Optional[pulumi.Input[_builtins.str]]:
1762
1766
  """
1763
- The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`. It is only allowed when `category` is `Recommendation`.
1767
+ The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`.
1768
+
1769
+ > **Note:** The `recommendation_type`, `recommendation_category`, and `recommendation_impact` fields can only be defined if the `category` field has been set to `Recommendation`.
1764
1770
  """
1765
1771
  return pulumi.get(self, "recommendation_impact")
1766
1772
 
@@ -1772,7 +1778,7 @@ class ActivityLogAlertCriteriaArgs:
1772
1778
  @pulumi.getter(name="recommendationType")
1773
1779
  def recommendation_type(self) -> Optional[pulumi.Input[_builtins.str]]:
1774
1780
  """
1775
- The recommendation type of the event. It is only allowed when `category` is `Recommendation`.
1781
+ The recommendation type of the event.
1776
1782
  """
1777
1783
  return pulumi.get(self, "recommendation_type")
1778
1784
 
@@ -38,7 +38,7 @@ class ActivityLogAlertArgs:
38
38
  :param pulumi.Input[Sequence[pulumi.Input['ActivityLogAlertActionArgs']]] actions: One or more `action` blocks as defined below.
39
39
  :param pulumi.Input[_builtins.str] description: The description of this activity log alert.
40
40
  :param pulumi.Input[_builtins.bool] enabled: Should this Activity Log Alert be enabled? Defaults to `true`.
41
- :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
41
+ :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
42
42
  :param pulumi.Input[_builtins.str] name: The name of the activity log alert. Changing this forces a new resource to be created.
43
43
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
44
44
  """
@@ -134,7 +134,7 @@ class ActivityLogAlertArgs:
134
134
  @pulumi.getter
135
135
  def location(self) -> Optional[pulumi.Input[_builtins.str]]:
136
136
  """
137
- The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
137
+ The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
138
138
  """
139
139
  return pulumi.get(self, "location")
140
140
 
@@ -185,7 +185,7 @@ class _ActivityLogAlertState:
185
185
  :param pulumi.Input['ActivityLogAlertCriteriaArgs'] criteria: A `criteria` block as defined below.
186
186
  :param pulumi.Input[_builtins.str] description: The description of this activity log alert.
187
187
  :param pulumi.Input[_builtins.bool] enabled: Should this Activity Log Alert be enabled? Defaults to `true`.
188
- :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
188
+ :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
189
189
  :param pulumi.Input[_builtins.str] name: The name of the activity log alert. Changing this forces a new resource to be created.
190
190
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.
191
191
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] scopes: The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).
@@ -262,7 +262,7 @@ class _ActivityLogAlertState:
262
262
  @pulumi.getter
263
263
  def location(self) -> Optional[pulumi.Input[_builtins.str]]:
264
264
  """
265
- The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
265
+ The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
266
266
  """
267
267
  return pulumi.get(self, "location")
268
268
 
@@ -401,7 +401,7 @@ class ActivityLogAlert(pulumi.CustomResource):
401
401
  :param pulumi.Input[Union['ActivityLogAlertCriteriaArgs', 'ActivityLogAlertCriteriaArgsDict']] criteria: A `criteria` block as defined below.
402
402
  :param pulumi.Input[_builtins.str] description: The description of this activity log alert.
403
403
  :param pulumi.Input[_builtins.bool] enabled: Should this Activity Log Alert be enabled? Defaults to `true`.
404
- :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
404
+ :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
405
405
  :param pulumi.Input[_builtins.str] name: The name of the activity log alert. Changing this forces a new resource to be created.
406
406
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.
407
407
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] scopes: The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).
@@ -551,7 +551,7 @@ class ActivityLogAlert(pulumi.CustomResource):
551
551
  :param pulumi.Input[Union['ActivityLogAlertCriteriaArgs', 'ActivityLogAlertCriteriaArgsDict']] criteria: A `criteria` block as defined below.
552
552
  :param pulumi.Input[_builtins.str] description: The description of this activity log alert.
553
553
  :param pulumi.Input[_builtins.bool] enabled: Should this Activity Log Alert be enabled? Defaults to `true`.
554
- :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
554
+ :param pulumi.Input[_builtins.str] location: The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
555
555
  :param pulumi.Input[_builtins.str] name: The name of the activity log alert. Changing this forces a new resource to be created.
556
556
  :param pulumi.Input[_builtins.str] resource_group_name: The name of the resource group in which to create the activity log alert instance. Changing this forces a new resource to be created.
557
557
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] scopes: The Scope at which the Activity Log should be applied. A list of strings which could be a resource group , or a subscription, or a resource ID (such as a Storage Account).
@@ -608,7 +608,7 @@ class ActivityLogAlert(pulumi.CustomResource):
608
608
  @pulumi.getter
609
609
  def location(self) -> pulumi.Output[_builtins.str]:
610
610
  """
611
- The Azure Region where the activity log alert rule should exist. Changing this forces a new resource to be created.
611
+ The Azure Region where the activity log alert rule should exist. Possible values are `global`, `westeurope`, `northeurope`, and `eastus2euap`. Changing this forces a new resource to be created.
612
612
  """
613
613
  return pulumi.get(self, "location")
614
614
 
@@ -1258,9 +1258,11 @@ class ActivityLogAlertCriteria(dict):
1258
1258
 
1259
1259
  > **Note:** `level` and `levels` are mutually exclusive.
1260
1260
  :param _builtins.str operation_name: The Resource Manager Role-Based Access Control operation name. Supported operation should be of the form: `<resourceProvider>/<resourceType>/<operation>`.
1261
- :param _builtins.str recommendation_category: The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability` and `Performance`. It is only allowed when `category` is `Recommendation`.
1262
- :param _builtins.str recommendation_impact: The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`. It is only allowed when `category` is `Recommendation`.
1263
- :param _builtins.str recommendation_type: The recommendation type of the event. It is only allowed when `category` is `Recommendation`.
1261
+ :param _builtins.str recommendation_category: The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability`, `Performance` and `Security`.
1262
+ :param _builtins.str recommendation_impact: The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`.
1263
+
1264
+ > **Note:** The `recommendation_type`, `recommendation_category`, and `recommendation_impact` fields can only be defined if the `category` field has been set to `Recommendation`.
1265
+ :param _builtins.str recommendation_type: The recommendation type of the event.
1264
1266
  :param _builtins.str resource_group: The name of resource group monitored by the activity log alert.
1265
1267
  :param Sequence[_builtins.str] resource_groups: A list of names of resource groups monitored by the activity log alert.
1266
1268
 
@@ -1378,7 +1380,7 @@ class ActivityLogAlertCriteria(dict):
1378
1380
  @pulumi.getter(name="recommendationCategory")
1379
1381
  def recommendation_category(self) -> Optional[_builtins.str]:
1380
1382
  """
1381
- The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability` and `Performance`. It is only allowed when `category` is `Recommendation`.
1383
+ The recommendation category of the event. Possible values are `Cost`, `Reliability`, `OperationalExcellence`, `HighAvailability`, `Performance` and `Security`.
1382
1384
  """
1383
1385
  return pulumi.get(self, "recommendation_category")
1384
1386
 
@@ -1386,7 +1388,9 @@ class ActivityLogAlertCriteria(dict):
1386
1388
  @pulumi.getter(name="recommendationImpact")
1387
1389
  def recommendation_impact(self) -> Optional[_builtins.str]:
1388
1390
  """
1389
- The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`. It is only allowed when `category` is `Recommendation`.
1391
+ The recommendation impact of the event. Possible values are `High`, `Medium` and `Low`.
1392
+
1393
+ > **Note:** The `recommendation_type`, `recommendation_category`, and `recommendation_impact` fields can only be defined if the `category` field has been set to `Recommendation`.
1390
1394
  """
1391
1395
  return pulumi.get(self, "recommendation_impact")
1392
1396
 
@@ -1394,7 +1398,7 @@ class ActivityLogAlertCriteria(dict):
1394
1398
  @pulumi.getter(name="recommendationType")
1395
1399
  def recommendation_type(self) -> Optional[_builtins.str]:
1396
1400
  """
1397
- The recommendation type of the event. It is only allowed when `category` is `Recommendation`.
1401
+ The recommendation type of the event.
1398
1402
  """
1399
1403
  return pulumi.get(self, "recommendation_type")
1400
1404
 
@@ -53,7 +53,7 @@ class JobStepArgs:
53
53
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Elastic Job Step. Changing this forces a new Elastic Job Step to be created.
54
54
  :param pulumi.Input['JobStepOutputTargetArgs'] output_target: An `output_target` block as defined below.
55
55
  :param pulumi.Input[_builtins.int] retry_attempts: The number of retry attempts. Defaults to `10`.
56
- :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2`.
56
+ :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2.0`.
57
57
  :param pulumi.Input[_builtins.int] timeout_seconds: The execution timeout in seconds for this Elastic Job Step. Defaults to `43200`.
58
58
  """
59
59
  pulumi.set(__self__, "job_id", job_id)
@@ -209,7 +209,7 @@ class JobStepArgs:
209
209
  @pulumi.getter(name="retryIntervalBackoffMultiplier")
210
210
  def retry_interval_backoff_multiplier(self) -> Optional[pulumi.Input[_builtins.float]]:
211
211
  """
212
- The multiplier for time between retries. Defaults to `2`.
212
+ The multiplier for time between retries. Defaults to `2.0`.
213
213
  """
214
214
  return pulumi.get(self, "retry_interval_backoff_multiplier")
215
215
 
@@ -262,7 +262,7 @@ class _JobStepState:
262
262
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Elastic Job Step. Changing this forces a new Elastic Job Step to be created.
263
263
  :param pulumi.Input['JobStepOutputTargetArgs'] output_target: An `output_target` block as defined below.
264
264
  :param pulumi.Input[_builtins.int] retry_attempts: The number of retry attempts. Defaults to `10`.
265
- :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2`.
265
+ :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2.0`.
266
266
  :param pulumi.Input[_builtins.str] sql_script: The T-SQL script to be executed by this Elastic Job Step.
267
267
 
268
268
  > **Note:** While Azure places no restrictions on the script provided here, it is recommended to ensure the script is idempotent.
@@ -411,7 +411,7 @@ class _JobStepState:
411
411
  @pulumi.getter(name="retryIntervalBackoffMultiplier")
412
412
  def retry_interval_backoff_multiplier(self) -> Optional[pulumi.Input[_builtins.float]]:
413
413
  """
414
- The multiplier for time between retries. Defaults to `2`.
414
+ The multiplier for time between retries. Defaults to `2.0`.
415
415
  """
416
416
  return pulumi.get(self, "retry_interval_backoff_multiplier")
417
417
 
@@ -496,8 +496,8 @@ class JobStep(pulumi.CustomResource):
496
496
  example_job_credential = azure.mssql.JobCredential("example",
497
497
  name="example-job-credential",
498
498
  job_agent_id=example_job_agent.id,
499
- username="testusername",
500
- password="testpassword")
499
+ username="exampleusername",
500
+ password="examplepassword")
501
501
  example_job_target_group = azure.mssql.JobTargetGroup("example",
502
502
  name="example-target-group",
503
503
  job_agent_id=example_job_agent.id,
@@ -556,7 +556,7 @@ class JobStep(pulumi.CustomResource):
556
556
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Elastic Job Step. Changing this forces a new Elastic Job Step to be created.
557
557
  :param pulumi.Input[Union['JobStepOutputTargetArgs', 'JobStepOutputTargetArgsDict']] output_target: An `output_target` block as defined below.
558
558
  :param pulumi.Input[_builtins.int] retry_attempts: The number of retry attempts. Defaults to `10`.
559
- :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2`.
559
+ :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2.0`.
560
560
  :param pulumi.Input[_builtins.str] sql_script: The T-SQL script to be executed by this Elastic Job Step.
561
561
 
562
562
  > **Note:** While Azure places no restrictions on the script provided here, it is recommended to ensure the script is idempotent.
@@ -599,8 +599,8 @@ class JobStep(pulumi.CustomResource):
599
599
  example_job_credential = azure.mssql.JobCredential("example",
600
600
  name="example-job-credential",
601
601
  job_agent_id=example_job_agent.id,
602
- username="testusername",
603
- password="testpassword")
602
+ username="exampleusername",
603
+ password="examplepassword")
604
604
  example_job_target_group = azure.mssql.JobTargetGroup("example",
605
605
  name="example-target-group",
606
606
  job_agent_id=example_job_agent.id,
@@ -742,7 +742,7 @@ class JobStep(pulumi.CustomResource):
742
742
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Elastic Job Step. Changing this forces a new Elastic Job Step to be created.
743
743
  :param pulumi.Input[Union['JobStepOutputTargetArgs', 'JobStepOutputTargetArgsDict']] output_target: An `output_target` block as defined below.
744
744
  :param pulumi.Input[_builtins.int] retry_attempts: The number of retry attempts. Defaults to `10`.
745
- :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2`.
745
+ :param pulumi.Input[_builtins.float] retry_interval_backoff_multiplier: The multiplier for time between retries. Defaults to `2.0`.
746
746
  :param pulumi.Input[_builtins.str] sql_script: The T-SQL script to be executed by this Elastic Job Step.
747
747
 
748
748
  > **Note:** While Azure places no restrictions on the script provided here, it is recommended to ensure the script is idempotent.
@@ -848,7 +848,7 @@ class JobStep(pulumi.CustomResource):
848
848
  @pulumi.getter(name="retryIntervalBackoffMultiplier")
849
849
  def retry_interval_backoff_multiplier(self) -> pulumi.Output[Optional[_builtins.float]]:
850
850
  """
851
- The multiplier for time between retries. Defaults to `2`.
851
+ The multiplier for time between retries. Defaults to `2.0`.
852
852
  """
853
853
  return pulumi.get(self, "retry_interval_backoff_multiplier")
854
854
 
@@ -45,6 +45,10 @@ if not MYPY:
45
45
  """
46
46
  The ID of the Key Vault Key.
47
47
  """
48
+ managed_hsm_key_id: NotRequired[pulumi.Input[_builtins.str]]
49
+ """
50
+ The ID of the Managed HSM Key.
51
+ """
48
52
  primary_user_assigned_identity_id: NotRequired[pulumi.Input[_builtins.str]]
49
53
  """
50
54
  Specifies the primary user managed identity id for a Customer Managed Key. Should be added with `identity_ids`.
@@ -58,6 +62,7 @@ class FlexibleServerCustomerManagedKeyArgs:
58
62
  geo_backup_key_vault_key_id: Optional[pulumi.Input[_builtins.str]] = None,
59
63
  geo_backup_user_assigned_identity_id: Optional[pulumi.Input[_builtins.str]] = None,
60
64
  key_vault_key_id: Optional[pulumi.Input[_builtins.str]] = None,
65
+ managed_hsm_key_id: Optional[pulumi.Input[_builtins.str]] = None,
61
66
  primary_user_assigned_identity_id: Optional[pulumi.Input[_builtins.str]] = None):
62
67
  """
63
68
  :param pulumi.Input[_builtins.str] geo_backup_key_vault_key_id: The ID of the geo backup Key Vault Key. It can't cross region and need Customer Managed Key in same region as geo backup.
@@ -65,6 +70,7 @@ class FlexibleServerCustomerManagedKeyArgs:
65
70
 
66
71
  > **Note:** `primary_user_assigned_identity_id` or `geo_backup_user_assigned_identity_id` is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
67
72
  :param pulumi.Input[_builtins.str] key_vault_key_id: The ID of the Key Vault Key.
73
+ :param pulumi.Input[_builtins.str] managed_hsm_key_id: The ID of the Managed HSM Key.
68
74
  :param pulumi.Input[_builtins.str] primary_user_assigned_identity_id: Specifies the primary user managed identity id for a Customer Managed Key. Should be added with `identity_ids`.
69
75
  """
70
76
  if geo_backup_key_vault_key_id is not None:
@@ -73,6 +79,8 @@ class FlexibleServerCustomerManagedKeyArgs:
73
79
  pulumi.set(__self__, "geo_backup_user_assigned_identity_id", geo_backup_user_assigned_identity_id)
74
80
  if key_vault_key_id is not None:
75
81
  pulumi.set(__self__, "key_vault_key_id", key_vault_key_id)
82
+ if managed_hsm_key_id is not None:
83
+ pulumi.set(__self__, "managed_hsm_key_id", managed_hsm_key_id)
76
84
  if primary_user_assigned_identity_id is not None:
77
85
  pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
78
86
 
@@ -114,6 +122,18 @@ class FlexibleServerCustomerManagedKeyArgs:
114
122
  def key_vault_key_id(self, value: Optional[pulumi.Input[_builtins.str]]):
115
123
  pulumi.set(self, "key_vault_key_id", value)
116
124
 
125
+ @_builtins.property
126
+ @pulumi.getter(name="managedHsmKeyId")
127
+ def managed_hsm_key_id(self) -> Optional[pulumi.Input[_builtins.str]]:
128
+ """
129
+ The ID of the Managed HSM Key.
130
+ """
131
+ return pulumi.get(self, "managed_hsm_key_id")
132
+
133
+ @managed_hsm_key_id.setter
134
+ def managed_hsm_key_id(self, value: Optional[pulumi.Input[_builtins.str]]):
135
+ pulumi.set(self, "managed_hsm_key_id", value)
136
+
117
137
  @_builtins.property
118
138
  @pulumi.getter(name="primaryUserAssignedIdentityId")
119
139
  def primary_user_assigned_identity_id(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -36,6 +36,8 @@ class FlexibleServerCustomerManagedKey(dict):
36
36
  suggest = "geo_backup_user_assigned_identity_id"
37
37
  elif key == "keyVaultKeyId":
38
38
  suggest = "key_vault_key_id"
39
+ elif key == "managedHsmKeyId":
40
+ suggest = "managed_hsm_key_id"
39
41
  elif key == "primaryUserAssignedIdentityId":
40
42
  suggest = "primary_user_assigned_identity_id"
41
43
 
@@ -54,6 +56,7 @@ class FlexibleServerCustomerManagedKey(dict):
54
56
  geo_backup_key_vault_key_id: Optional[_builtins.str] = None,
55
57
  geo_backup_user_assigned_identity_id: Optional[_builtins.str] = None,
56
58
  key_vault_key_id: Optional[_builtins.str] = None,
59
+ managed_hsm_key_id: Optional[_builtins.str] = None,
57
60
  primary_user_assigned_identity_id: Optional[_builtins.str] = None):
58
61
  """
59
62
  :param _builtins.str geo_backup_key_vault_key_id: The ID of the geo backup Key Vault Key. It can't cross region and need Customer Managed Key in same region as geo backup.
@@ -61,6 +64,7 @@ class FlexibleServerCustomerManagedKey(dict):
61
64
 
62
65
  > **Note:** `primary_user_assigned_identity_id` or `geo_backup_user_assigned_identity_id` is required when `type` is set to `UserAssigned` or `SystemAssigned, UserAssigned`.
63
66
  :param _builtins.str key_vault_key_id: The ID of the Key Vault Key.
67
+ :param _builtins.str managed_hsm_key_id: The ID of the Managed HSM Key.
64
68
  :param _builtins.str primary_user_assigned_identity_id: Specifies the primary user managed identity id for a Customer Managed Key. Should be added with `identity_ids`.
65
69
  """
66
70
  if geo_backup_key_vault_key_id is not None:
@@ -69,6 +73,8 @@ class FlexibleServerCustomerManagedKey(dict):
69
73
  pulumi.set(__self__, "geo_backup_user_assigned_identity_id", geo_backup_user_assigned_identity_id)
70
74
  if key_vault_key_id is not None:
71
75
  pulumi.set(__self__, "key_vault_key_id", key_vault_key_id)
76
+ if managed_hsm_key_id is not None:
77
+ pulumi.set(__self__, "managed_hsm_key_id", managed_hsm_key_id)
72
78
  if primary_user_assigned_identity_id is not None:
73
79
  pulumi.set(__self__, "primary_user_assigned_identity_id", primary_user_assigned_identity_id)
74
80
 
@@ -98,6 +104,14 @@ class FlexibleServerCustomerManagedKey(dict):
98
104
  """
99
105
  return pulumi.get(self, "key_vault_key_id")
100
106
 
107
+ @_builtins.property
108
+ @pulumi.getter(name="managedHsmKeyId")
109
+ def managed_hsm_key_id(self) -> Optional[_builtins.str]:
110
+ """
111
+ The ID of the Managed HSM Key.
112
+ """
113
+ return pulumi.get(self, "managed_hsm_key_id")
114
+
101
115
  @_builtins.property
102
116
  @pulumi.getter(name="primaryUserAssignedIdentityId")
103
117
  def primary_user_assigned_identity_id(self) -> Optional[_builtins.str]:
@@ -1296,7 +1296,9 @@ if not MYPY:
1296
1296
  """
1297
1297
  protocols: pulumi.Input[_builtins.str]
1298
1298
  """
1299
- The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`.
1299
+ The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`.
1300
+
1301
+ > **Note:** When converting protocols between NFSv3 and NFSv4.1, ensure that export policy rules are updated accordingly to avoid configuration drift. Update the `nfsv3_enabled` and `nfsv41_enabled` flags to match the new protocol.
1300
1302
  """
1301
1303
  security_style: pulumi.Input[_builtins.str]
1302
1304
  """
@@ -1401,7 +1403,9 @@ class VolumeGroupOracleVolumeArgs:
1401
1403
  :param pulumi.Input[_builtins.str] capacity_pool_id: The ID of the Capacity Pool. Changing this forces a new Application Volume Group to be created and data will be lost.
1402
1404
  :param pulumi.Input[Sequence[pulumi.Input['VolumeGroupOracleVolumeExportPolicyRuleArgs']]] export_policy_rules: One or more `export_policy_rule` blocks as defined below.
1403
1405
  :param pulumi.Input[_builtins.str] name: The name which should be used for this volume. Changing this forces a new Application Volume Group to be created and data will be lost.
1404
- :param pulumi.Input[_builtins.str] protocols: The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`.
1406
+ :param pulumi.Input[_builtins.str] protocols: The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`.
1407
+
1408
+ > **Note:** When converting protocols between NFSv3 and NFSv4.1, ensure that export policy rules are updated accordingly to avoid configuration drift. Update the `nfsv3_enabled` and `nfsv41_enabled` flags to match the new protocol.
1405
1409
  :param pulumi.Input[_builtins.str] security_style: Volume security style. Possible values are `ntfs` and `unix`. Changing this forces a new Application Volume Group to be created and data will be lost.
1406
1410
  :param pulumi.Input[_builtins.str] service_level: Volume security style. Possible values are `Premium`, `Standard` and `Ultra`. Changing this forces a new Application Volume Group to be created and data will be lost.
1407
1411
  :param pulumi.Input[_builtins.bool] snapshot_directory_visible: Specifies whether the .snapshot (NFS clients) path of a volume is visible. Changing this forces a new Application Volume Group to be created and data will be lost.
@@ -1495,7 +1499,9 @@ class VolumeGroupOracleVolumeArgs:
1495
1499
  @pulumi.getter
1496
1500
  def protocols(self) -> pulumi.Input[_builtins.str]:
1497
1501
  """
1498
- The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`.
1502
+ The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`.
1503
+
1504
+ > **Note:** When converting protocols between NFSv3 and NFSv4.1, ensure that export policy rules are updated accordingly to avoid configuration drift. Update the `nfsv3_enabled` and `nfsv41_enabled` flags to match the new protocol.
1499
1505
  """
1500
1506
  return pulumi.get(self, "protocols")
1501
1507
 
@@ -2003,7 +2009,9 @@ if not MYPY:
2003
2009
  """
2004
2010
  protocols: pulumi.Input[_builtins.str]
2005
2011
  """
2006
- The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`, multi-protocol is not supported and there are certain rules on which protocol is supporteed per volume spec, please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2012
+ The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`, multi-protocol is not supported. Please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2013
+
2014
+ > **Note:** NFSv3 protocol is only supported for backup volumes (`data-backup`, `log-backup`) in SAP HANA volume groups. Critical volumes (`data`, `log`, `shared`) must use NFSv4.1. When converting protocols on backup volumes, ensure export policy rules are updated accordingly to avoid configuration drift.
2007
2015
  """
2008
2016
  security_style: pulumi.Input[_builtins.str]
2009
2017
  """
@@ -2086,7 +2094,9 @@ class VolumeGroupSapHanaVolumeArgs:
2086
2094
  :param pulumi.Input[_builtins.str] capacity_pool_id: The ID of the Capacity Pool. Changing this forces a new Application Volume Group to be created and data will be lost.
2087
2095
  :param pulumi.Input[Sequence[pulumi.Input['VolumeGroupSapHanaVolumeExportPolicyRuleArgs']]] export_policy_rules: One or more `export_policy_rule` blocks as defined below.
2088
2096
  :param pulumi.Input[_builtins.str] name: The name which should be used for this volume. Changing this forces a new Application Volume Group to be created and data will be lost.
2089
- :param pulumi.Input[_builtins.str] protocols: The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`, multi-protocol is not supported and there are certain rules on which protocol is supporteed per volume spec, please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2097
+ :param pulumi.Input[_builtins.str] protocols: The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`, multi-protocol is not supported. Please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2098
+
2099
+ > **Note:** NFSv3 protocol is only supported for backup volumes (`data-backup`, `log-backup`) in SAP HANA volume groups. Critical volumes (`data`, `log`, `shared`) must use NFSv4.1. When converting protocols on backup volumes, ensure export policy rules are updated accordingly to avoid configuration drift.
2090
2100
  :param pulumi.Input[_builtins.str] security_style: Volume security style. Possible values are `ntfs` and `unix`. Changing this forces a new Application Volume Group to be created and data will be lost.
2091
2101
  :param pulumi.Input[_builtins.str] service_level: Volume security style. Possible values are `Premium`, `Standard` and `Ultra`. Changing this forces a new Application Volume Group to be created and data will be lost.
2092
2102
  :param pulumi.Input[_builtins.bool] snapshot_directory_visible: Specifies whether the .snapshot (NFS clients) path of a volume is visible. Changing this forces a new Application Volume Group to be created and data will be lost.
@@ -2166,7 +2176,9 @@ class VolumeGroupSapHanaVolumeArgs:
2166
2176
  @pulumi.getter
2167
2177
  def protocols(self) -> pulumi.Input[_builtins.str]:
2168
2178
  """
2169
- The target volume protocol expressed as a list. Changing this forces a new Application Volume Group to be created and data will be lost. Supported values for Application Volume Group include `NFSv3` or `NFSv4.1`, multi-protocol is not supported and there are certain rules on which protocol is supporteed per volume spec, please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2179
+ The target volume protocol expressed as a list. Protocol conversion between `NFSv3` and `NFSv4.1` and vice-versa is supported without recreating the volume group, however export policy rules must be updated accordingly to avoid configuration drift (e.g., when converting from `NFSv3` to `NFSv4.1`, set `nfsv3_enabled = false` and `nfsv41_enabled = true` in export policy rules). Supported values include `NFSv3` or `NFSv4.1`, multi-protocol is not supported. Please check [Configure application volume groups for the SAP HANA REST API](https://learn.microsoft.com/en-us/azure/azure-netapp-files/configure-application-volume-group-sap-hana-api) document for details.
2180
+
2181
+ > **Note:** NFSv3 protocol is only supported for backup volumes (`data-backup`, `log-backup`) in SAP HANA volume groups. Critical volumes (`data`, `log`, `shared`) must use NFSv4.1. When converting protocols on backup volumes, ensure export policy rules are updated accordingly to avoid configuration drift.
2170
2182
  """
2171
2183
  return pulumi.get(self, "protocols")
2172
2184
 
@@ -280,7 +280,7 @@ class Account(pulumi.CustomResource):
280
280
  <!-- This section is generated, changes will be overwritten -->
281
281
  This resource uses the following Azure API Providers:
282
282
 
283
- * `Microsoft.NetApp` - 2025-01-01
283
+ * `Microsoft.NetApp` - 2025-06-01
284
284
 
285
285
  ## Import
286
286
 
@@ -347,7 +347,7 @@ class Account(pulumi.CustomResource):
347
347
  <!-- This section is generated, changes will be overwritten -->
348
348
  This resource uses the following Azure API Providers:
349
349
 
350
- * `Microsoft.NetApp` - 2025-01-01
350
+ * `Microsoft.NetApp` - 2025-06-01
351
351
 
352
352
  ## Import
353
353