pulumi-azure 6.27.0a1758868424__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.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/METADATA +1 -1
  167. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/RECORD +169 -162
  168. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/WHEEL +0 -0
  169. {pulumi_azure-6.27.0a1758868424.dist-info → pulumi_azure-6.27.0a1759511969.dist-info}/top_level.txt +0 -0
@@ -1071,7 +1071,11 @@ if not MYPY:
1071
1071
  class WorkspaceManagedNetworkArgsDict(TypedDict):
1072
1072
  isolation_mode: NotRequired[pulumi.Input[_builtins.str]]
1073
1073
  """
1074
- The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`
1074
+ The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`.
1075
+ """
1076
+ provision_on_creation_enabled: NotRequired[pulumi.Input[_builtins.bool]]
1077
+ """
1078
+ Set to trigger the provisioning of the managed VNet with the default options when creating a Machine Learning Workspace with the managed VNet enabled. Defaults to `false`. Changing this forces a new resource to be created.
1075
1079
  """
1076
1080
  elif False:
1077
1081
  WorkspaceManagedNetworkArgsDict: TypeAlias = Mapping[str, Any]
@@ -1079,18 +1083,22 @@ elif False:
1079
1083
  @pulumi.input_type
1080
1084
  class WorkspaceManagedNetworkArgs:
1081
1085
  def __init__(__self__, *,
1082
- isolation_mode: Optional[pulumi.Input[_builtins.str]] = None):
1086
+ isolation_mode: Optional[pulumi.Input[_builtins.str]] = None,
1087
+ provision_on_creation_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
1083
1088
  """
1084
- :param pulumi.Input[_builtins.str] isolation_mode: The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`
1089
+ :param pulumi.Input[_builtins.str] isolation_mode: The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`.
1090
+ :param pulumi.Input[_builtins.bool] provision_on_creation_enabled: Set to trigger the provisioning of the managed VNet with the default options when creating a Machine Learning Workspace with the managed VNet enabled. Defaults to `false`. Changing this forces a new resource to be created.
1085
1091
  """
1086
1092
  if isolation_mode is not None:
1087
1093
  pulumi.set(__self__, "isolation_mode", isolation_mode)
1094
+ if provision_on_creation_enabled is not None:
1095
+ pulumi.set(__self__, "provision_on_creation_enabled", provision_on_creation_enabled)
1088
1096
 
1089
1097
  @_builtins.property
1090
1098
  @pulumi.getter(name="isolationMode")
1091
1099
  def isolation_mode(self) -> Optional[pulumi.Input[_builtins.str]]:
1092
1100
  """
1093
- The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`
1101
+ The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`.
1094
1102
  """
1095
1103
  return pulumi.get(self, "isolation_mode")
1096
1104
 
@@ -1098,6 +1106,18 @@ class WorkspaceManagedNetworkArgs:
1098
1106
  def isolation_mode(self, value: Optional[pulumi.Input[_builtins.str]]):
1099
1107
  pulumi.set(self, "isolation_mode", value)
1100
1108
 
1109
+ @_builtins.property
1110
+ @pulumi.getter(name="provisionOnCreationEnabled")
1111
+ def provision_on_creation_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
1112
+ """
1113
+ Set to trigger the provisioning of the managed VNet with the default options when creating a Machine Learning Workspace with the managed VNet enabled. Defaults to `false`. Changing this forces a new resource to be created.
1114
+ """
1115
+ return pulumi.get(self, "provision_on_creation_enabled")
1116
+
1117
+ @provision_on_creation_enabled.setter
1118
+ def provision_on_creation_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
1119
+ pulumi.set(self, "provision_on_creation_enabled", value)
1120
+
1101
1121
 
1102
1122
  if not MYPY:
1103
1123
  class WorkspaceServerlessComputeArgsDict(TypedDict):
@@ -43,9 +43,13 @@ class ComputeInstanceArgs:
43
43
  :param pulumi.Input['ComputeInstanceIdentityArgs'] identity: An `identity` block as defined below. Changing this forces a new Machine Learning Compute Instance to be created.
44
44
  :param pulumi.Input[_builtins.bool] local_auth_enabled: Whether local authentication methods is enabled. Defaults to `true`. Changing this forces a new Machine Learning Compute Instance to be created.
45
45
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
46
- :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
46
+ :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
47
+
48
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
47
49
  :param pulumi.Input['ComputeInstanceSshArgs'] ssh: A `ssh` block as defined below. Specifies policy and settings for SSH access. Changing this forces a new Machine Learning Compute Instance to be created.
48
50
  :param pulumi.Input[_builtins.str] subnet_resource_id: Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
51
+
52
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
49
53
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
50
54
  """
51
55
  pulumi.set(__self__, "machine_learning_workspace_id", machine_learning_workspace_id)
@@ -171,7 +175,9 @@ class ComputeInstanceArgs:
171
175
  @pulumi.getter(name="nodePublicIpEnabled")
172
176
  def node_public_ip_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
173
177
  """
174
- Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
178
+ Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
179
+
180
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
175
181
  """
176
182
  return pulumi.get(self, "node_public_ip_enabled")
177
183
 
@@ -196,6 +202,8 @@ class ComputeInstanceArgs:
196
202
  def subnet_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
197
203
  """
198
204
  Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
205
+
206
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
199
207
  """
200
208
  return pulumi.get(self, "subnet_resource_id")
201
209
 
@@ -240,9 +248,13 @@ class _ComputeInstanceState:
240
248
  :param pulumi.Input[_builtins.bool] local_auth_enabled: Whether local authentication methods is enabled. Defaults to `true`. Changing this forces a new Machine Learning Compute Instance to be created.
241
249
  :param pulumi.Input[_builtins.str] machine_learning_workspace_id: The ID of the Machine Learning Workspace. Changing this forces a new Machine Learning Compute Instance to be created.
242
250
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
243
- :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
251
+ :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
252
+
253
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
244
254
  :param pulumi.Input['ComputeInstanceSshArgs'] ssh: A `ssh` block as defined below. Specifies policy and settings for SSH access. Changing this forces a new Machine Learning Compute Instance to be created.
245
255
  :param pulumi.Input[_builtins.str] subnet_resource_id: Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
256
+
257
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
246
258
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
247
259
  :param pulumi.Input[_builtins.str] virtual_machine_size: The Virtual Machine Size. Changing this forces a new Machine Learning Compute Instance to be created.
248
260
  """
@@ -359,7 +371,9 @@ class _ComputeInstanceState:
359
371
  @pulumi.getter(name="nodePublicIpEnabled")
360
372
  def node_public_ip_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
361
373
  """
362
- Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
374
+ Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
375
+
376
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
363
377
  """
364
378
  return pulumi.get(self, "node_public_ip_enabled")
365
379
 
@@ -384,6 +398,8 @@ class _ComputeInstanceState:
384
398
  def subnet_resource_id(self) -> Optional[pulumi.Input[_builtins.str]]:
385
399
  """
386
400
  Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
401
+
402
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
387
403
  """
388
404
  return pulumi.get(self, "subnet_resource_id")
389
405
 
@@ -532,9 +548,13 @@ class ComputeInstance(pulumi.CustomResource):
532
548
  :param pulumi.Input[_builtins.bool] local_auth_enabled: Whether local authentication methods is enabled. Defaults to `true`. Changing this forces a new Machine Learning Compute Instance to be created.
533
549
  :param pulumi.Input[_builtins.str] machine_learning_workspace_id: The ID of the Machine Learning Workspace. Changing this forces a new Machine Learning Compute Instance to be created.
534
550
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
535
- :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
551
+ :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
552
+
553
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
536
554
  :param pulumi.Input[Union['ComputeInstanceSshArgs', 'ComputeInstanceSshArgsDict']] ssh: A `ssh` block as defined below. Specifies policy and settings for SSH access. Changing this forces a new Machine Learning Compute Instance to be created.
537
555
  :param pulumi.Input[_builtins.str] subnet_resource_id: Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
556
+
557
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
538
558
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
539
559
  :param pulumi.Input[_builtins.str] virtual_machine_size: The Virtual Machine Size. Changing this forces a new Machine Learning Compute Instance to be created.
540
560
  """
@@ -720,9 +740,13 @@ class ComputeInstance(pulumi.CustomResource):
720
740
  :param pulumi.Input[_builtins.bool] local_auth_enabled: Whether local authentication methods is enabled. Defaults to `true`. Changing this forces a new Machine Learning Compute Instance to be created.
721
741
  :param pulumi.Input[_builtins.str] machine_learning_workspace_id: The ID of the Machine Learning Workspace. Changing this forces a new Machine Learning Compute Instance to be created.
722
742
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
723
- :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
743
+ :param pulumi.Input[_builtins.bool] node_public_ip_enabled: Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
744
+
745
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
724
746
  :param pulumi.Input[Union['ComputeInstanceSshArgs', 'ComputeInstanceSshArgsDict']] ssh: A `ssh` block as defined below. Specifies policy and settings for SSH access. Changing this forces a new Machine Learning Compute Instance to be created.
725
747
  :param pulumi.Input[_builtins.str] subnet_resource_id: Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
748
+
749
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
726
750
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags which should be assigned to the Machine Learning Compute Instance. Changing this forces a new Machine Learning Compute Instance to be created.
727
751
  :param pulumi.Input[_builtins.str] virtual_machine_size: The Virtual Machine Size. Changing this forces a new Machine Learning Compute Instance to be created.
728
752
  """
@@ -804,7 +828,9 @@ class ComputeInstance(pulumi.CustomResource):
804
828
  @pulumi.getter(name="nodePublicIpEnabled")
805
829
  def node_public_ip_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
806
830
  """
807
- Whether the compute instance will have a public ip. To set this to false a `subnet_resource_id` needs to be set. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
831
+ Whether the compute instance will have a public ip. Defaults to `true`. Changing this forces a new Machine Learning Compute Cluster to be created.
832
+
833
+ > **Note:** The property `subnet_resource_id` becomes required if `node_public_ip_enabled` is set to `false`, and the instance's workspace is not using a managed network (i.e. the workspace's outbound isolation mode is `Disabled`).
808
834
  """
809
835
  return pulumi.get(self, "node_public_ip_enabled")
810
836
 
@@ -821,6 +847,8 @@ class ComputeInstance(pulumi.CustomResource):
821
847
  def subnet_resource_id(self) -> pulumi.Output[Optional[_builtins.str]]:
822
848
  """
823
849
  Virtual network subnet resource ID the compute nodes belong to. Changing this forces a new Machine Learning Compute Instance to be created.
850
+
851
+ > **Note:** The property `subnet_resource_id` can be set only if the instance's workspace is not using Azure-managed networking.
824
852
  """
825
853
  return pulumi.get(self, "subnet_resource_id")
826
854
 
@@ -399,7 +399,7 @@ class DatastoreBlobstorage(pulumi.CustomResource):
399
399
  example_datastore_blobstorage = azure.machinelearning.DatastoreBlobstorage("example",
400
400
  name="example-datastore",
401
401
  workspace_id=example_workspace.id,
402
- storage_container_id=example_container.resource_manager_id,
402
+ storage_container_id=example_container.id,
403
403
  account_key=example_account.primary_access_key)
404
404
  ```
405
405
 
@@ -489,7 +489,7 @@ class DatastoreBlobstorage(pulumi.CustomResource):
489
489
  example_datastore_blobstorage = azure.machinelearning.DatastoreBlobstorage("example",
490
490
  name="example-datastore",
491
491
  workspace_id=example_workspace.id,
492
- storage_container_id=example_container.resource_manager_id,
492
+ storage_container_id=example_container.id,
493
493
  account_key=example_account.primary_access_key)
494
494
  ```
495
495
 
@@ -430,7 +430,7 @@ class DatastoreDatalakeGen2(pulumi.CustomResource):
430
430
  example_datastore_datalake_gen2 = azure.machinelearning.DatastoreDatalakeGen2("example",
431
431
  name="example-datastore",
432
432
  workspace_id=example_workspace.id,
433
- storage_container_id=example_container.resource_manager_id)
433
+ storage_container_id=example_container.id)
434
434
  ```
435
435
 
436
436
  ## API Providers
@@ -514,7 +514,7 @@ class DatastoreDatalakeGen2(pulumi.CustomResource):
514
514
  example_datastore_datalake_gen2 = azure.machinelearning.DatastoreDatalakeGen2("example",
515
515
  name="example-datastore",
516
516
  workspace_id=example_workspace.id,
517
- storage_container_id=example_container.resource_manager_id)
517
+ storage_container_id=example_container.id)
518
518
  ```
519
519
 
520
520
  ## API Providers
@@ -431,7 +431,7 @@ class InferenceCluster(pulumi.CustomResource):
431
431
  <!-- This section is generated, changes will be overwritten -->
432
432
  This resource uses the following Azure API Providers:
433
433
 
434
- * `Microsoft.ContainerService` - 2025-02-01
434
+ * `Microsoft.ContainerService` - 2025-05-01
435
435
 
436
436
  * `Microsoft.MachineLearningServices` - 2025-06-01
437
437
 
@@ -550,7 +550,7 @@ class InferenceCluster(pulumi.CustomResource):
550
550
  <!-- This section is generated, changes will be overwritten -->
551
551
  This resource uses the following Azure API Providers:
552
552
 
553
- * `Microsoft.ContainerService` - 2025-02-01
553
+ * `Microsoft.ContainerService` - 2025-05-01
554
554
 
555
555
  * `Microsoft.MachineLearningServices` - 2025-06-01
556
556
 
@@ -891,6 +891,8 @@ class WorkspaceManagedNetwork(dict):
891
891
  suggest = None
892
892
  if key == "isolationMode":
893
893
  suggest = "isolation_mode"
894
+ elif key == "provisionOnCreationEnabled":
895
+ suggest = "provision_on_creation_enabled"
894
896
 
895
897
  if suggest:
896
898
  pulumi.log.warn(f"Key '{key}' not found in WorkspaceManagedNetwork. Access the value via the '{suggest}' property getter instead.")
@@ -904,21 +906,33 @@ class WorkspaceManagedNetwork(dict):
904
906
  return super().get(key, default)
905
907
 
906
908
  def __init__(__self__, *,
907
- isolation_mode: Optional[_builtins.str] = None):
909
+ isolation_mode: Optional[_builtins.str] = None,
910
+ provision_on_creation_enabled: Optional[_builtins.bool] = None):
908
911
  """
909
- :param _builtins.str isolation_mode: The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`
912
+ :param _builtins.str isolation_mode: The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`.
913
+ :param _builtins.bool provision_on_creation_enabled: Set to trigger the provisioning of the managed VNet with the default options when creating a Machine Learning Workspace with the managed VNet enabled. Defaults to `false`. Changing this forces a new resource to be created.
910
914
  """
911
915
  if isolation_mode is not None:
912
916
  pulumi.set(__self__, "isolation_mode", isolation_mode)
917
+ if provision_on_creation_enabled is not None:
918
+ pulumi.set(__self__, "provision_on_creation_enabled", provision_on_creation_enabled)
913
919
 
914
920
  @_builtins.property
915
921
  @pulumi.getter(name="isolationMode")
916
922
  def isolation_mode(self) -> Optional[_builtins.str]:
917
923
  """
918
- The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`
924
+ The isolation mode of the Machine Learning Workspace. Possible values are `Disabled`, `AllowOnlyApprovedOutbound`, and `AllowInternetOutbound`.
919
925
  """
920
926
  return pulumi.get(self, "isolation_mode")
921
927
 
928
+ @_builtins.property
929
+ @pulumi.getter(name="provisionOnCreationEnabled")
930
+ def provision_on_creation_enabled(self) -> Optional[_builtins.bool]:
931
+ """
932
+ Set to trigger the provisioning of the managed VNet with the default options when creating a Machine Learning Workspace with the managed VNet enabled. Defaults to `false`. Changing this forces a new resource to be created.
933
+ """
934
+ return pulumi.get(self, "provision_on_creation_enabled")
935
+
922
936
 
923
937
  @pulumi.output_type
924
938
  class WorkspaceServerlessCompute(dict):
@@ -40,6 +40,7 @@ class WorkspaceArgs:
40
40
  primary_user_assigned_identity: Optional[pulumi.Input[_builtins.str]] = None,
41
41
  public_network_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
42
42
  serverless_compute: Optional[pulumi.Input['WorkspaceServerlessComputeArgs']] = None,
43
+ service_side_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
43
44
  sku_name: Optional[pulumi.Input[_builtins.str]] = None,
44
45
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
45
46
  v1_legacy_mode_enabled: Optional[pulumi.Input[_builtins.bool]] = None):
@@ -70,6 +71,9 @@ class WorkspaceArgs:
70
71
 
71
72
  > **Note:** `public_access_behind_virtual_network_enabled` is deprecated and will be removed in favour of the property `public_network_access_enabled`.
72
73
  :param pulumi.Input['WorkspaceServerlessComputeArgs'] serverless_compute: A `serverless_compute` block as defined below.
74
+ :param pulumi.Input[_builtins.bool] service_side_encryption_enabled: Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
75
+
76
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
73
77
  :param pulumi.Input[_builtins.str] sku_name: SKU/edition of the Machine Learning Workspace, possible values are `Free`, `Basic`, `Standard` and `Premium`. Defaults to `Basic`.
74
78
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
75
79
  :param pulumi.Input[_builtins.bool] v1_legacy_mode_enabled: Enable V1 API features, enabling `v1_legacy_mode` may prevent you from using features provided by the v2 API. Defaults to `false`.
@@ -107,6 +111,8 @@ class WorkspaceArgs:
107
111
  pulumi.set(__self__, "public_network_access_enabled", public_network_access_enabled)
108
112
  if serverless_compute is not None:
109
113
  pulumi.set(__self__, "serverless_compute", serverless_compute)
114
+ if service_side_encryption_enabled is not None:
115
+ pulumi.set(__self__, "service_side_encryption_enabled", service_side_encryption_enabled)
110
116
  if sku_name is not None:
111
117
  pulumi.set(__self__, "sku_name", sku_name)
112
118
  if tags is not None:
@@ -348,6 +354,20 @@ class WorkspaceArgs:
348
354
  def serverless_compute(self, value: Optional[pulumi.Input['WorkspaceServerlessComputeArgs']]):
349
355
  pulumi.set(self, "serverless_compute", value)
350
356
 
357
+ @_builtins.property
358
+ @pulumi.getter(name="serviceSideEncryptionEnabled")
359
+ def service_side_encryption_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
360
+ """
361
+ Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
362
+
363
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
364
+ """
365
+ return pulumi.get(self, "service_side_encryption_enabled")
366
+
367
+ @service_side_encryption_enabled.setter
368
+ def service_side_encryption_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
369
+ pulumi.set(self, "service_side_encryption_enabled", value)
370
+
351
371
  @_builtins.property
352
372
  @pulumi.getter(name="skuName")
353
373
  def sku_name(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -407,6 +427,7 @@ class _WorkspaceState:
407
427
  public_network_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
408
428
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
409
429
  serverless_compute: Optional[pulumi.Input['WorkspaceServerlessComputeArgs']] = None,
430
+ service_side_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
410
431
  sku_name: Optional[pulumi.Input[_builtins.str]] = None,
411
432
  storage_account_id: Optional[pulumi.Input[_builtins.str]] = None,
412
433
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -437,6 +458,9 @@ class _WorkspaceState:
437
458
  > **Note:** `public_access_behind_virtual_network_enabled` is deprecated and will be removed in favour of the property `public_network_access_enabled`.
438
459
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the name of the Resource Group in which the Machine Learning Workspace should exist. Changing this forces a new resource to be created.
439
460
  :param pulumi.Input['WorkspaceServerlessComputeArgs'] serverless_compute: A `serverless_compute` block as defined below.
461
+ :param pulumi.Input[_builtins.bool] service_side_encryption_enabled: Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
462
+
463
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
440
464
  :param pulumi.Input[_builtins.str] sku_name: SKU/edition of the Machine Learning Workspace, possible values are `Free`, `Basic`, `Standard` and `Premium`. Defaults to `Basic`.
441
465
  :param pulumi.Input[_builtins.str] storage_account_id: The ID of the Storage Account associated with this Machine Learning Workspace. Changing this forces a new resource to be created.
442
466
 
@@ -483,6 +507,8 @@ class _WorkspaceState:
483
507
  pulumi.set(__self__, "resource_group_name", resource_group_name)
484
508
  if serverless_compute is not None:
485
509
  pulumi.set(__self__, "serverless_compute", serverless_compute)
510
+ if service_side_encryption_enabled is not None:
511
+ pulumi.set(__self__, "service_side_encryption_enabled", service_side_encryption_enabled)
486
512
  if sku_name is not None:
487
513
  pulumi.set(__self__, "sku_name", sku_name)
488
514
  if storage_account_id is not None:
@@ -726,6 +752,20 @@ class _WorkspaceState:
726
752
  def serverless_compute(self, value: Optional[pulumi.Input['WorkspaceServerlessComputeArgs']]):
727
753
  pulumi.set(self, "serverless_compute", value)
728
754
 
755
+ @_builtins.property
756
+ @pulumi.getter(name="serviceSideEncryptionEnabled")
757
+ def service_side_encryption_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
758
+ """
759
+ Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
760
+
761
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
762
+ """
763
+ return pulumi.get(self, "service_side_encryption_enabled")
764
+
765
+ @service_side_encryption_enabled.setter
766
+ def service_side_encryption_enabled(self, value: Optional[pulumi.Input[_builtins.bool]]):
767
+ pulumi.set(self, "service_side_encryption_enabled", value)
768
+
729
769
  @_builtins.property
730
770
  @pulumi.getter(name="skuName")
731
771
  def sku_name(self) -> Optional[pulumi.Input[_builtins.str]]:
@@ -813,6 +853,7 @@ class Workspace(pulumi.CustomResource):
813
853
  public_network_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
814
854
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
815
855
  serverless_compute: Optional[pulumi.Input[Union['WorkspaceServerlessComputeArgs', 'WorkspaceServerlessComputeArgsDict']]] = None,
856
+ service_side_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
816
857
  sku_name: Optional[pulumi.Input[_builtins.str]] = None,
817
858
  storage_account_id: Optional[pulumi.Input[_builtins.str]] = None,
818
859
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -1112,6 +1153,9 @@ class Workspace(pulumi.CustomResource):
1112
1153
  > **Note:** `public_access_behind_virtual_network_enabled` is deprecated and will be removed in favour of the property `public_network_access_enabled`.
1113
1154
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the name of the Resource Group in which the Machine Learning Workspace should exist. Changing this forces a new resource to be created.
1114
1155
  :param pulumi.Input[Union['WorkspaceServerlessComputeArgs', 'WorkspaceServerlessComputeArgsDict']] serverless_compute: A `serverless_compute` block as defined below.
1156
+ :param pulumi.Input[_builtins.bool] service_side_encryption_enabled: Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
1157
+
1158
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
1115
1159
  :param pulumi.Input[_builtins.str] sku_name: SKU/edition of the Machine Learning Workspace, possible values are `Free`, `Basic`, `Standard` and `Premium`. Defaults to `Basic`.
1116
1160
  :param pulumi.Input[_builtins.str] storage_account_id: The ID of the Storage Account associated with this Machine Learning Workspace. Changing this forces a new resource to be created.
1117
1161
 
@@ -1428,6 +1472,7 @@ class Workspace(pulumi.CustomResource):
1428
1472
  public_network_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1429
1473
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
1430
1474
  serverless_compute: Optional[pulumi.Input[Union['WorkspaceServerlessComputeArgs', 'WorkspaceServerlessComputeArgsDict']]] = None,
1475
+ service_side_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1431
1476
  sku_name: Optional[pulumi.Input[_builtins.str]] = None,
1432
1477
  storage_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1433
1478
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -1467,6 +1512,7 @@ class Workspace(pulumi.CustomResource):
1467
1512
  raise TypeError("Missing required property 'resource_group_name'")
1468
1513
  __props__.__dict__["resource_group_name"] = resource_group_name
1469
1514
  __props__.__dict__["serverless_compute"] = serverless_compute
1515
+ __props__.__dict__["service_side_encryption_enabled"] = service_side_encryption_enabled
1470
1516
  __props__.__dict__["sku_name"] = sku_name
1471
1517
  if storage_account_id is None and not opts.urn:
1472
1518
  raise TypeError("Missing required property 'storage_account_id'")
@@ -1504,6 +1550,7 @@ class Workspace(pulumi.CustomResource):
1504
1550
  public_network_access_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1505
1551
  resource_group_name: Optional[pulumi.Input[_builtins.str]] = None,
1506
1552
  serverless_compute: Optional[pulumi.Input[Union['WorkspaceServerlessComputeArgs', 'WorkspaceServerlessComputeArgsDict']]] = None,
1553
+ service_side_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
1507
1554
  sku_name: Optional[pulumi.Input[_builtins.str]] = None,
1508
1555
  storage_account_id: Optional[pulumi.Input[_builtins.str]] = None,
1509
1556
  tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
@@ -1539,6 +1586,9 @@ class Workspace(pulumi.CustomResource):
1539
1586
  > **Note:** `public_access_behind_virtual_network_enabled` is deprecated and will be removed in favour of the property `public_network_access_enabled`.
1540
1587
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the name of the Resource Group in which the Machine Learning Workspace should exist. Changing this forces a new resource to be created.
1541
1588
  :param pulumi.Input[Union['WorkspaceServerlessComputeArgs', 'WorkspaceServerlessComputeArgsDict']] serverless_compute: A `serverless_compute` block as defined below.
1589
+ :param pulumi.Input[_builtins.bool] service_side_encryption_enabled: Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
1590
+
1591
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
1542
1592
  :param pulumi.Input[_builtins.str] sku_name: SKU/edition of the Machine Learning Workspace, possible values are `Free`, `Basic`, `Standard` and `Premium`. Defaults to `Basic`.
1543
1593
  :param pulumi.Input[_builtins.str] storage_account_id: The ID of the Storage Account associated with this Machine Learning Workspace. Changing this forces a new resource to be created.
1544
1594
 
@@ -1570,6 +1620,7 @@ class Workspace(pulumi.CustomResource):
1570
1620
  __props__.__dict__["public_network_access_enabled"] = public_network_access_enabled
1571
1621
  __props__.__dict__["resource_group_name"] = resource_group_name
1572
1622
  __props__.__dict__["serverless_compute"] = serverless_compute
1623
+ __props__.__dict__["service_side_encryption_enabled"] = service_side_encryption_enabled
1573
1624
  __props__.__dict__["sku_name"] = sku_name
1574
1625
  __props__.__dict__["storage_account_id"] = storage_account_id
1575
1626
  __props__.__dict__["tags"] = tags
@@ -1733,6 +1784,16 @@ class Workspace(pulumi.CustomResource):
1733
1784
  """
1734
1785
  return pulumi.get(self, "serverless_compute")
1735
1786
 
1787
+ @_builtins.property
1788
+ @pulumi.getter(name="serviceSideEncryptionEnabled")
1789
+ def service_side_encryption_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1790
+ """
1791
+ Whether to enable service-side encryption with customer-managed keys (CMK). Default to `false`. Changing this forces a new resource to be created.
1792
+
1793
+ !> **Note:** Setting `service_side_encryption_enabled` requires the `encryption` block to be set. When you use service-side encryption, Azure charges will continue to accrue during the soft delete retention period.
1794
+ """
1795
+ return pulumi.get(self, "service_side_encryption_enabled")
1796
+
1736
1797
  @_builtins.property
1737
1798
  @pulumi.getter(name="skuName")
1738
1799
  def sku_name(self) -> pulumi.Output[Optional[_builtins.str]]:
@@ -238,9 +238,6 @@ if not MYPY:
238
238
  class GroupPolicyAssignmentOverrideSelectorArgsDict(TypedDict):
239
239
  ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
240
240
  kind: NotRequired[pulumi.Input[_builtins.str]]
241
- """
242
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
243
- """
244
241
  not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
245
242
  elif False:
246
243
  GroupPolicyAssignmentOverrideSelectorArgsDict: TypeAlias = Mapping[str, Any]
@@ -251,9 +248,6 @@ class GroupPolicyAssignmentOverrideSelectorArgs:
251
248
  ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
252
249
  kind: Optional[pulumi.Input[_builtins.str]] = None,
253
250
  not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
254
- """
255
- :param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
256
- """
257
251
  if ins is not None:
258
252
  pulumi.set(__self__, "ins", ins)
259
253
  if kind is not None:
@@ -273,9 +267,6 @@ class GroupPolicyAssignmentOverrideSelectorArgs:
273
267
  @_builtins.property
274
268
  @pulumi.getter
275
269
  def kind(self) -> Optional[pulumi.Input[_builtins.str]]:
276
- """
277
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
278
- """
279
270
  return pulumi.get(self, "kind")
280
271
 
281
272
  @kind.setter
@@ -346,9 +337,6 @@ class GroupPolicyAssignmentResourceSelectorArgs:
346
337
  if not MYPY:
347
338
  class GroupPolicyAssignmentResourceSelectorSelectorArgsDict(TypedDict):
348
339
  kind: pulumi.Input[_builtins.str]
349
- """
350
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
351
- """
352
340
  ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
353
341
  not_ins: NotRequired[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]
354
342
  elif False:
@@ -360,9 +348,6 @@ class GroupPolicyAssignmentResourceSelectorSelectorArgs:
360
348
  kind: pulumi.Input[_builtins.str],
361
349
  ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
362
350
  not_ins: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
363
- """
364
- :param pulumi.Input[_builtins.str] kind: Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
365
- """
366
351
  pulumi.set(__self__, "kind", kind)
367
352
  if ins is not None:
368
353
  pulumi.set(__self__, "ins", ins)
@@ -372,9 +357,6 @@ class GroupPolicyAssignmentResourceSelectorSelectorArgs:
372
357
  @_builtins.property
373
358
  @pulumi.getter
374
359
  def kind(self) -> pulumi.Input[_builtins.str]:
375
- """
376
- Specifies which characteristic will narrow down the set of evaluated resources. Possible values are `resourceLocation`, `resourceType` and `resourceWithoutLocation`.
377
- """
378
360
  return pulumi.get(self, "kind")
379
361
 
380
362
  @kind.setter
@@ -50,7 +50,7 @@ class GroupPolicyAssignmentArgs:
50
50
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Policy Assignment. Cannot exceed 24 characters in length. Changing this forces a new Policy Assignment to be created.
51
51
  :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentNonComplianceMessageArgs']]] non_compliance_messages: One or more `non_compliance_message` blocks as defined below.
52
52
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_scopes: Specifies a list of Resource Scopes (for example a Subscription, or a Resource Group) within this Management Group which are excluded from this Policy.
53
- :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
53
+ :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
54
54
  :param pulumi.Input[_builtins.str] parameters: A JSON mapping of any Parameters for this Policy.
55
55
  :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentResourceSelectorArgs']]] resource_selectors: One or more `resource_selectors` blocks as defined below to filter polices by resource properties.
56
56
  """
@@ -219,7 +219,7 @@ class GroupPolicyAssignmentArgs:
219
219
  @pulumi.getter
220
220
  def overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]]]:
221
221
  """
222
- One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
222
+ One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
223
223
  """
224
224
  return pulumi.get(self, "overrides")
225
225
 
@@ -283,7 +283,7 @@ class _GroupPolicyAssignmentState:
283
283
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Policy Assignment. Cannot exceed 24 characters in length. Changing this forces a new Policy Assignment to be created.
284
284
  :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentNonComplianceMessageArgs']]] non_compliance_messages: One or more `non_compliance_message` blocks as defined below.
285
285
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_scopes: Specifies a list of Resource Scopes (for example a Subscription, or a Resource Group) within this Management Group which are excluded from this Policy.
286
- :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
286
+ :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
287
287
  :param pulumi.Input[_builtins.str] parameters: A JSON mapping of any Parameters for this Policy.
288
288
  :param pulumi.Input[_builtins.str] policy_definition_id: The ID of the Policy Definition or Policy Definition Set. Changing this forces a new Policy Assignment to be created.
289
289
  :param pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentResourceSelectorArgs']]] resource_selectors: One or more `resource_selectors` blocks as defined below to filter polices by resource properties.
@@ -443,7 +443,7 @@ class _GroupPolicyAssignmentState:
443
443
  @pulumi.getter
444
444
  def overrides(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['GroupPolicyAssignmentOverrideArgs']]]]:
445
445
  """
446
- One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
446
+ One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
447
447
  """
448
448
  return pulumi.get(self, "overrides")
449
449
 
@@ -572,7 +572,7 @@ class GroupPolicyAssignment(pulumi.CustomResource):
572
572
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Policy Assignment. Cannot exceed 24 characters in length. Changing this forces a new Policy Assignment to be created.
573
573
  :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentNonComplianceMessageArgs', 'GroupPolicyAssignmentNonComplianceMessageArgsDict']]]] non_compliance_messages: One or more `non_compliance_message` blocks as defined below.
574
574
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_scopes: Specifies a list of Resource Scopes (for example a Subscription, or a Resource Group) within this Management Group which are excluded from this Policy.
575
- :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentOverrideArgs', 'GroupPolicyAssignmentOverrideArgsDict']]]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
575
+ :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentOverrideArgs', 'GroupPolicyAssignmentOverrideArgsDict']]]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
576
576
  :param pulumi.Input[_builtins.str] parameters: A JSON mapping of any Parameters for this Policy.
577
577
  :param pulumi.Input[_builtins.str] policy_definition_id: The ID of the Policy Definition or Policy Definition Set. Changing this forces a new Policy Assignment to be created.
578
578
  :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentResourceSelectorArgs', 'GroupPolicyAssignmentResourceSelectorArgsDict']]]] resource_selectors: One or more `resource_selectors` blocks as defined below to filter polices by resource properties.
@@ -731,7 +731,7 @@ class GroupPolicyAssignment(pulumi.CustomResource):
731
731
  :param pulumi.Input[_builtins.str] name: The name which should be used for this Policy Assignment. Cannot exceed 24 characters in length. Changing this forces a new Policy Assignment to be created.
732
732
  :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentNonComplianceMessageArgs', 'GroupPolicyAssignmentNonComplianceMessageArgsDict']]]] non_compliance_messages: One or more `non_compliance_message` blocks as defined below.
733
733
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] not_scopes: Specifies a list of Resource Scopes (for example a Subscription, or a Resource Group) within this Management Group which are excluded from this Policy.
734
- :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentOverrideArgs', 'GroupPolicyAssignmentOverrideArgsDict']]]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
734
+ :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentOverrideArgs', 'GroupPolicyAssignmentOverrideArgsDict']]]] overrides: One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
735
735
  :param pulumi.Input[_builtins.str] parameters: A JSON mapping of any Parameters for this Policy.
736
736
  :param pulumi.Input[_builtins.str] policy_definition_id: The ID of the Policy Definition or Policy Definition Set. Changing this forces a new Policy Assignment to be created.
737
737
  :param pulumi.Input[Sequence[pulumi.Input[Union['GroupPolicyAssignmentResourceSelectorArgs', 'GroupPolicyAssignmentResourceSelectorArgsDict']]]] resource_selectors: One or more `resource_selectors` blocks as defined below to filter polices by resource properties.
@@ -842,7 +842,7 @@ class GroupPolicyAssignment(pulumi.CustomResource):
842
842
  @pulumi.getter
843
843
  def overrides(self) -> pulumi.Output[Optional[Sequence['outputs.GroupPolicyAssignmentOverride']]]:
844
844
  """
845
- One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure#resource-selectors-preview)
845
+ One or more `overrides` blocks as defined below. More detail about `overrides` and `resource_selectors` see [policy assignment structure](https://learn.microsoft.com/en-us/azure/governance/policy/concepts/assignment-structure)
846
846
  """
847
847
  return pulumi.get(self, "overrides")
848
848