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
@@ -29,6 +29,7 @@ class ClusterArgs:
29
29
  disk_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
30
30
  double_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
31
31
  identity: Optional[pulumi.Input['ClusterIdentityArgs']] = None,
32
+ language_extension: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]] = None,
32
33
  language_extensions: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]] = None,
33
34
  location: Optional[pulumi.Input[_builtins.str]] = None,
34
35
  name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -46,23 +47,21 @@ class ClusterArgs:
46
47
  The set of arguments for constructing a Cluster resource.
47
48
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created.
48
49
  :param pulumi.Input['ClusterSkuArgs'] sku: A `sku` block as defined below.
49
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
50
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
50
51
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: The list of ips in the format of CIDR allowed to connect to the cluster.
51
52
  :param pulumi.Input[_builtins.bool] auto_stop_enabled: Specifies if the cluster could be automatically stopped (due to lack of data or no activity for many days). Defaults to `true`.
52
- :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted.
53
+ :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted. Defaults to `false`.
53
54
  :param pulumi.Input[_builtins.bool] double_encryption_enabled: Is the cluster's double encryption enabled? Changing this forces a new resource to be created.
54
55
  :param pulumi.Input['ClusterIdentityArgs'] identity: An `identity` block as defined below.
55
- :param pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]] language_extensions: An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
56
-
57
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
56
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]] language_extension: A `language_extension` block as defined below.
58
57
  :param pulumi.Input[_builtins.str] location: The location where the Kusto Cluster should be created. Changing this forces a new resource to be created.
59
58
  :param pulumi.Input[_builtins.str] name: The name of the Kusto Cluster to create. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
60
59
  :param pulumi.Input['ClusterOptimizedAutoScaleArgs'] optimized_auto_scale: An `optimized_auto_scale` block as defined below.
61
- :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
60
+ :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Defaults to `false`.
62
61
  :param pulumi.Input[_builtins.str] public_ip_type: Indicates what public IP type to create - IPv4 (default), or DualStack (both IPv4 and IPv6). Defaults to `IPv4`.
63
62
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Is the public network access enabled? Defaults to `true`.
64
- :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled.
65
- :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled.
63
+ :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled. Defaults to `false`.
64
+ :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled. Defaults to `false`.
66
65
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
67
66
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] trusted_external_tenants: Specifies a list of tenant IDs that are trusted by the cluster. Default setting trusts all other tenants. Use `trusted_external_tenants = ["*"]` to explicitly allow all other tenants, `trusted_external_tenants = ["MyTenantOnly"]` for only your tenant or `trusted_external_tenants = ["<tenantId1>", "<tenantIdx>"]` to allow specific other tenants.
68
67
 
@@ -83,6 +82,11 @@ class ClusterArgs:
83
82
  pulumi.set(__self__, "double_encryption_enabled", double_encryption_enabled)
84
83
  if identity is not None:
85
84
  pulumi.set(__self__, "identity", identity)
85
+ if language_extension is not None:
86
+ pulumi.set(__self__, "language_extension", language_extension)
87
+ if language_extensions is not None:
88
+ warnings.warn("""`language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""", DeprecationWarning)
89
+ pulumi.log.warn("""language_extensions is deprecated: `language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""")
86
90
  if language_extensions is not None:
87
91
  pulumi.set(__self__, "language_extensions", language_extensions)
88
92
  if location is not None:
@@ -141,7 +145,7 @@ class ClusterArgs:
141
145
  @pulumi.getter(name="allowedFqdns")
142
146
  def allowed_fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
143
147
  """
144
- List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
148
+ List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
145
149
  """
146
150
  return pulumi.get(self, "allowed_fqdns")
147
151
 
@@ -177,7 +181,7 @@ class ClusterArgs:
177
181
  @pulumi.getter(name="diskEncryptionEnabled")
178
182
  def disk_encryption_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
179
183
  """
180
- Specifies if the cluster's disks are encrypted.
184
+ Specifies if the cluster's disks are encrypted. Defaults to `false`.
181
185
  """
182
186
  return pulumi.get(self, "disk_encryption_enabled")
183
187
 
@@ -210,13 +214,21 @@ class ClusterArgs:
210
214
  pulumi.set(self, "identity", value)
211
215
 
212
216
  @_builtins.property
213
- @pulumi.getter(name="languageExtensions")
214
- def language_extensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
217
+ @pulumi.getter(name="languageExtension")
218
+ def language_extension(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
215
219
  """
216
- An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
217
-
218
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
220
+ A `language_extension` block as defined below.
219
221
  """
222
+ return pulumi.get(self, "language_extension")
223
+
224
+ @language_extension.setter
225
+ def language_extension(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]):
226
+ pulumi.set(self, "language_extension", value)
227
+
228
+ @_builtins.property
229
+ @pulumi.getter(name="languageExtensions")
230
+ @_utilities.deprecated("""`language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""")
231
+ def language_extensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
220
232
  return pulumi.get(self, "language_extensions")
221
233
 
222
234
  @language_extensions.setter
@@ -263,7 +275,7 @@ class ClusterArgs:
263
275
  @pulumi.getter(name="outboundNetworkAccessRestricted")
264
276
  def outbound_network_access_restricted(self) -> Optional[pulumi.Input[_builtins.bool]]:
265
277
  """
266
- Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
278
+ Whether to restrict outbound network access. Defaults to `false`.
267
279
  """
268
280
  return pulumi.get(self, "outbound_network_access_restricted")
269
281
 
@@ -299,7 +311,7 @@ class ClusterArgs:
299
311
  @pulumi.getter(name="purgeEnabled")
300
312
  def purge_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
301
313
  """
302
- Specifies if the purge operations are enabled.
314
+ Specifies if the purge operations are enabled. Defaults to `false`.
303
315
  """
304
316
  return pulumi.get(self, "purge_enabled")
305
317
 
@@ -311,7 +323,7 @@ class ClusterArgs:
311
323
  @pulumi.getter(name="streamingIngestionEnabled")
312
324
  def streaming_ingestion_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
313
325
  """
314
- Specifies if the streaming ingest is enabled.
326
+ Specifies if the streaming ingest is enabled. Defaults to `false`.
315
327
  """
316
328
  return pulumi.get(self, "streaming_ingestion_enabled")
317
329
 
@@ -378,6 +390,7 @@ class _ClusterState:
378
390
  disk_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
379
391
  double_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
380
392
  identity: Optional[pulumi.Input['ClusterIdentityArgs']] = None,
393
+ language_extension: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]] = None,
381
394
  language_extensions: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]] = None,
382
395
  location: Optional[pulumi.Input[_builtins.str]] = None,
383
396
  name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -396,26 +409,24 @@ class _ClusterState:
396
409
  zones: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None):
397
410
  """
398
411
  Input properties used for looking up and filtering Cluster resources.
399
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
412
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
400
413
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: The list of ips in the format of CIDR allowed to connect to the cluster.
401
414
  :param pulumi.Input[_builtins.bool] auto_stop_enabled: Specifies if the cluster could be automatically stopped (due to lack of data or no activity for many days). Defaults to `true`.
402
415
  :param pulumi.Input[_builtins.str] data_ingestion_uri: The Kusto Cluster URI to be used for data ingestion.
403
- :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted.
416
+ :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted. Defaults to `false`.
404
417
  :param pulumi.Input[_builtins.bool] double_encryption_enabled: Is the cluster's double encryption enabled? Changing this forces a new resource to be created.
405
418
  :param pulumi.Input['ClusterIdentityArgs'] identity: An `identity` block as defined below.
406
- :param pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]] language_extensions: An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
407
-
408
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
419
+ :param pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]] language_extension: A `language_extension` block as defined below.
409
420
  :param pulumi.Input[_builtins.str] location: The location where the Kusto Cluster should be created. Changing this forces a new resource to be created.
410
421
  :param pulumi.Input[_builtins.str] name: The name of the Kusto Cluster to create. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
411
422
  :param pulumi.Input['ClusterOptimizedAutoScaleArgs'] optimized_auto_scale: An `optimized_auto_scale` block as defined below.
412
- :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
423
+ :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Defaults to `false`.
413
424
  :param pulumi.Input[_builtins.str] public_ip_type: Indicates what public IP type to create - IPv4 (default), or DualStack (both IPv4 and IPv6). Defaults to `IPv4`.
414
425
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Is the public network access enabled? Defaults to `true`.
415
- :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled.
426
+ :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled. Defaults to `false`.
416
427
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created.
417
428
  :param pulumi.Input['ClusterSkuArgs'] sku: A `sku` block as defined below.
418
- :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled.
429
+ :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled. Defaults to `false`.
419
430
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
420
431
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] trusted_external_tenants: Specifies a list of tenant IDs that are trusted by the cluster. Default setting trusts all other tenants. Use `trusted_external_tenants = ["*"]` to explicitly allow all other tenants, `trusted_external_tenants = ["MyTenantOnly"]` for only your tenant or `trusted_external_tenants = ["<tenantId1>", "<tenantIdx>"]` to allow specific other tenants.
421
432
 
@@ -437,6 +448,11 @@ class _ClusterState:
437
448
  pulumi.set(__self__, "double_encryption_enabled", double_encryption_enabled)
438
449
  if identity is not None:
439
450
  pulumi.set(__self__, "identity", identity)
451
+ if language_extension is not None:
452
+ pulumi.set(__self__, "language_extension", language_extension)
453
+ if language_extensions is not None:
454
+ warnings.warn("""`language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""", DeprecationWarning)
455
+ pulumi.log.warn("""language_extensions is deprecated: `language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""")
440
456
  if language_extensions is not None:
441
457
  pulumi.set(__self__, "language_extensions", language_extensions)
442
458
  if location is not None:
@@ -477,7 +493,7 @@ class _ClusterState:
477
493
  @pulumi.getter(name="allowedFqdns")
478
494
  def allowed_fqdns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
479
495
  """
480
- List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
496
+ List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
481
497
  """
482
498
  return pulumi.get(self, "allowed_fqdns")
483
499
 
@@ -525,7 +541,7 @@ class _ClusterState:
525
541
  @pulumi.getter(name="diskEncryptionEnabled")
526
542
  def disk_encryption_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
527
543
  """
528
- Specifies if the cluster's disks are encrypted.
544
+ Specifies if the cluster's disks are encrypted. Defaults to `false`.
529
545
  """
530
546
  return pulumi.get(self, "disk_encryption_enabled")
531
547
 
@@ -558,13 +574,21 @@ class _ClusterState:
558
574
  pulumi.set(self, "identity", value)
559
575
 
560
576
  @_builtins.property
561
- @pulumi.getter(name="languageExtensions")
562
- def language_extensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
577
+ @pulumi.getter(name="languageExtension")
578
+ def language_extension(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
563
579
  """
564
- An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
565
-
566
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
580
+ A `language_extension` block as defined below.
567
581
  """
582
+ return pulumi.get(self, "language_extension")
583
+
584
+ @language_extension.setter
585
+ def language_extension(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]):
586
+ pulumi.set(self, "language_extension", value)
587
+
588
+ @_builtins.property
589
+ @pulumi.getter(name="languageExtensions")
590
+ @_utilities.deprecated("""`language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""")
591
+ def language_extensions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ClusterLanguageExtensionArgs']]]]:
568
592
  return pulumi.get(self, "language_extensions")
569
593
 
570
594
  @language_extensions.setter
@@ -611,7 +635,7 @@ class _ClusterState:
611
635
  @pulumi.getter(name="outboundNetworkAccessRestricted")
612
636
  def outbound_network_access_restricted(self) -> Optional[pulumi.Input[_builtins.bool]]:
613
637
  """
614
- Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
638
+ Whether to restrict outbound network access. Defaults to `false`.
615
639
  """
616
640
  return pulumi.get(self, "outbound_network_access_restricted")
617
641
 
@@ -647,7 +671,7 @@ class _ClusterState:
647
671
  @pulumi.getter(name="purgeEnabled")
648
672
  def purge_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
649
673
  """
650
- Specifies if the purge operations are enabled.
674
+ Specifies if the purge operations are enabled. Defaults to `false`.
651
675
  """
652
676
  return pulumi.get(self, "purge_enabled")
653
677
 
@@ -683,7 +707,7 @@ class _ClusterState:
683
707
  @pulumi.getter(name="streamingIngestionEnabled")
684
708
  def streaming_ingestion_enabled(self) -> Optional[pulumi.Input[_builtins.bool]]:
685
709
  """
686
- Specifies if the streaming ingest is enabled.
710
+ Specifies if the streaming ingest is enabled. Defaults to `false`.
687
711
  """
688
712
  return pulumi.get(self, "streaming_ingestion_enabled")
689
713
 
@@ -764,6 +788,7 @@ class Cluster(pulumi.CustomResource):
764
788
  disk_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
765
789
  double_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
766
790
  identity: Optional[pulumi.Input[Union['ClusterIdentityArgs', 'ClusterIdentityArgsDict']]] = None,
791
+ language_extension: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
767
792
  language_extensions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
768
793
  location: Optional[pulumi.Input[_builtins.str]] = None,
769
794
  name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -790,10 +815,10 @@ class Cluster(pulumi.CustomResource):
790
815
  import pulumi_azure as azure
791
816
 
792
817
  example = azure.core.ResourceGroup("example",
793
- name="my-kusto-cluster-rg",
818
+ name="example",
794
819
  location="West Europe")
795
820
  example_cluster = azure.kusto.Cluster("example",
796
- name="kustocluster",
821
+ name="example",
797
822
  location=example.location,
798
823
  resource_group_name=example.name,
799
824
  sku={
@@ -822,25 +847,23 @@ class Cluster(pulumi.CustomResource):
822
847
 
823
848
  :param str resource_name: The name of the resource.
824
849
  :param pulumi.ResourceOptions opts: Options for the resource.
825
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
850
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
826
851
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: The list of ips in the format of CIDR allowed to connect to the cluster.
827
852
  :param pulumi.Input[_builtins.bool] auto_stop_enabled: Specifies if the cluster could be automatically stopped (due to lack of data or no activity for many days). Defaults to `true`.
828
- :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted.
853
+ :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted. Defaults to `false`.
829
854
  :param pulumi.Input[_builtins.bool] double_encryption_enabled: Is the cluster's double encryption enabled? Changing this forces a new resource to be created.
830
855
  :param pulumi.Input[Union['ClusterIdentityArgs', 'ClusterIdentityArgsDict']] identity: An `identity` block as defined below.
831
- :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]] language_extensions: An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
832
-
833
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
856
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]] language_extension: A `language_extension` block as defined below.
834
857
  :param pulumi.Input[_builtins.str] location: The location where the Kusto Cluster should be created. Changing this forces a new resource to be created.
835
858
  :param pulumi.Input[_builtins.str] name: The name of the Kusto Cluster to create. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
836
859
  :param pulumi.Input[Union['ClusterOptimizedAutoScaleArgs', 'ClusterOptimizedAutoScaleArgsDict']] optimized_auto_scale: An `optimized_auto_scale` block as defined below.
837
- :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
860
+ :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Defaults to `false`.
838
861
  :param pulumi.Input[_builtins.str] public_ip_type: Indicates what public IP type to create - IPv4 (default), or DualStack (both IPv4 and IPv6). Defaults to `IPv4`.
839
862
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Is the public network access enabled? Defaults to `true`.
840
- :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled.
863
+ :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled. Defaults to `false`.
841
864
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created.
842
865
  :param pulumi.Input[Union['ClusterSkuArgs', 'ClusterSkuArgsDict']] sku: A `sku` block as defined below.
843
- :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled.
866
+ :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled. Defaults to `false`.
844
867
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
845
868
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] trusted_external_tenants: Specifies a list of tenant IDs that are trusted by the cluster. Default setting trusts all other tenants. Use `trusted_external_tenants = ["*"]` to explicitly allow all other tenants, `trusted_external_tenants = ["MyTenantOnly"]` for only your tenant or `trusted_external_tenants = ["<tenantId1>", "<tenantIdx>"]` to allow specific other tenants.
846
869
 
@@ -863,10 +886,10 @@ class Cluster(pulumi.CustomResource):
863
886
  import pulumi_azure as azure
864
887
 
865
888
  example = azure.core.ResourceGroup("example",
866
- name="my-kusto-cluster-rg",
889
+ name="example",
867
890
  location="West Europe")
868
891
  example_cluster = azure.kusto.Cluster("example",
869
- name="kustocluster",
892
+ name="example",
870
893
  location=example.location,
871
894
  resource_group_name=example.name,
872
895
  sku={
@@ -914,6 +937,7 @@ class Cluster(pulumi.CustomResource):
914
937
  disk_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
915
938
  double_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
916
939
  identity: Optional[pulumi.Input[Union['ClusterIdentityArgs', 'ClusterIdentityArgsDict']]] = None,
940
+ language_extension: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
917
941
  language_extensions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
918
942
  location: Optional[pulumi.Input[_builtins.str]] = None,
919
943
  name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -944,6 +968,7 @@ class Cluster(pulumi.CustomResource):
944
968
  __props__.__dict__["disk_encryption_enabled"] = disk_encryption_enabled
945
969
  __props__.__dict__["double_encryption_enabled"] = double_encryption_enabled
946
970
  __props__.__dict__["identity"] = identity
971
+ __props__.__dict__["language_extension"] = language_extension
947
972
  __props__.__dict__["language_extensions"] = language_extensions
948
973
  __props__.__dict__["location"] = location
949
974
  __props__.__dict__["name"] = name
@@ -982,6 +1007,7 @@ class Cluster(pulumi.CustomResource):
982
1007
  disk_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
983
1008
  double_encryption_enabled: Optional[pulumi.Input[_builtins.bool]] = None,
984
1009
  identity: Optional[pulumi.Input[Union['ClusterIdentityArgs', 'ClusterIdentityArgsDict']]] = None,
1010
+ language_extension: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
985
1011
  language_extensions: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]]] = None,
986
1012
  location: Optional[pulumi.Input[_builtins.str]] = None,
987
1013
  name: Optional[pulumi.Input[_builtins.str]] = None,
@@ -1005,26 +1031,24 @@ class Cluster(pulumi.CustomResource):
1005
1031
  :param str resource_name: The unique name of the resulting resource.
1006
1032
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
1007
1033
  :param pulumi.ResourceOptions opts: Options for the resource.
1008
- :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
1034
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_fqdns: List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
1009
1035
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] allowed_ip_ranges: The list of ips in the format of CIDR allowed to connect to the cluster.
1010
1036
  :param pulumi.Input[_builtins.bool] auto_stop_enabled: Specifies if the cluster could be automatically stopped (due to lack of data or no activity for many days). Defaults to `true`.
1011
1037
  :param pulumi.Input[_builtins.str] data_ingestion_uri: The Kusto Cluster URI to be used for data ingestion.
1012
- :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted.
1038
+ :param pulumi.Input[_builtins.bool] disk_encryption_enabled: Specifies if the cluster's disks are encrypted. Defaults to `false`.
1013
1039
  :param pulumi.Input[_builtins.bool] double_encryption_enabled: Is the cluster's double encryption enabled? Changing this forces a new resource to be created.
1014
1040
  :param pulumi.Input[Union['ClusterIdentityArgs', 'ClusterIdentityArgsDict']] identity: An `identity` block as defined below.
1015
- :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]] language_extensions: An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
1016
-
1017
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
1041
+ :param pulumi.Input[Sequence[pulumi.Input[Union['ClusterLanguageExtensionArgs', 'ClusterLanguageExtensionArgsDict']]]] language_extension: A `language_extension` block as defined below.
1018
1042
  :param pulumi.Input[_builtins.str] location: The location where the Kusto Cluster should be created. Changing this forces a new resource to be created.
1019
1043
  :param pulumi.Input[_builtins.str] name: The name of the Kusto Cluster to create. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
1020
1044
  :param pulumi.Input[Union['ClusterOptimizedAutoScaleArgs', 'ClusterOptimizedAutoScaleArgsDict']] optimized_auto_scale: An `optimized_auto_scale` block as defined below.
1021
- :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
1045
+ :param pulumi.Input[_builtins.bool] outbound_network_access_restricted: Whether to restrict outbound network access. Defaults to `false`.
1022
1046
  :param pulumi.Input[_builtins.str] public_ip_type: Indicates what public IP type to create - IPv4 (default), or DualStack (both IPv4 and IPv6). Defaults to `IPv4`.
1023
1047
  :param pulumi.Input[_builtins.bool] public_network_access_enabled: Is the public network access enabled? Defaults to `true`.
1024
- :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled.
1048
+ :param pulumi.Input[_builtins.bool] purge_enabled: Specifies if the purge operations are enabled. Defaults to `false`.
1025
1049
  :param pulumi.Input[_builtins.str] resource_group_name: Specifies the Resource Group where the Kusto Cluster should exist. Changing this forces a new resource to be created.
1026
1050
  :param pulumi.Input[Union['ClusterSkuArgs', 'ClusterSkuArgsDict']] sku: A `sku` block as defined below.
1027
- :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled.
1051
+ :param pulumi.Input[_builtins.bool] streaming_ingestion_enabled: Specifies if the streaming ingest is enabled. Defaults to `false`.
1028
1052
  :param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] tags: A mapping of tags to assign to the resource.
1029
1053
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] trusted_external_tenants: Specifies a list of tenant IDs that are trusted by the cluster. Default setting trusts all other tenants. Use `trusted_external_tenants = ["*"]` to explicitly allow all other tenants, `trusted_external_tenants = ["MyTenantOnly"]` for only your tenant or `trusted_external_tenants = ["<tenantId1>", "<tenantIdx>"]` to allow specific other tenants.
1030
1054
 
@@ -1043,6 +1067,7 @@ class Cluster(pulumi.CustomResource):
1043
1067
  __props__.__dict__["disk_encryption_enabled"] = disk_encryption_enabled
1044
1068
  __props__.__dict__["double_encryption_enabled"] = double_encryption_enabled
1045
1069
  __props__.__dict__["identity"] = identity
1070
+ __props__.__dict__["language_extension"] = language_extension
1046
1071
  __props__.__dict__["language_extensions"] = language_extensions
1047
1072
  __props__.__dict__["location"] = location
1048
1073
  __props__.__dict__["name"] = name
@@ -1065,7 +1090,7 @@ class Cluster(pulumi.CustomResource):
1065
1090
  @pulumi.getter(name="allowedFqdns")
1066
1091
  def allowed_fqdns(self) -> pulumi.Output[Optional[Sequence[_builtins.str]]]:
1067
1092
  """
1068
- List of allowed FQDNs(Fully Qualified Domain Name) for egress from Cluster.
1093
+ List of allowed FQDNs (Fully Qualified Domain Name) for egress from Cluster.
1069
1094
  """
1070
1095
  return pulumi.get(self, "allowed_fqdns")
1071
1096
 
@@ -1097,7 +1122,7 @@ class Cluster(pulumi.CustomResource):
1097
1122
  @pulumi.getter(name="diskEncryptionEnabled")
1098
1123
  def disk_encryption_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1099
1124
  """
1100
- Specifies if the cluster's disks are encrypted.
1125
+ Specifies if the cluster's disks are encrypted. Defaults to `false`.
1101
1126
  """
1102
1127
  return pulumi.get(self, "disk_encryption_enabled")
1103
1128
 
@@ -1118,13 +1143,17 @@ class Cluster(pulumi.CustomResource):
1118
1143
  return pulumi.get(self, "identity")
1119
1144
 
1120
1145
  @_builtins.property
1121
- @pulumi.getter(name="languageExtensions")
1122
- def language_extensions(self) -> pulumi.Output[Optional[Sequence['outputs.ClusterLanguageExtension']]]:
1146
+ @pulumi.getter(name="languageExtension")
1147
+ def language_extension(self) -> pulumi.Output[Sequence['outputs.ClusterLanguageExtension']]:
1123
1148
  """
1124
- An list of `language_extensions` to enable. Valid values are: `PYTHON`, `PYTHON_3.10.8` and `R`. `PYTHON` is used to specify Python 3.6.5 image and `PYTHON_3.10.8` is used to specify Python 3.10.8 image. Note that `PYTHON_3.10.8` is only available in skus which support nested virtualization.
1125
-
1126
- > **Note:** In `v4.0.0` and later version of the AzureRM Provider, `language_extensions` will be changed to a list of `language_extension` block. In each block, `name` and `image` are required. `name` is the name of the language extension, possible values are `PYTHON`, `R`. `image` is the image of the language extension, possible values are `Python3_6_5`, `Python3_10_8` and `R`.
1149
+ A `language_extension` block as defined below.
1127
1150
  """
1151
+ return pulumi.get(self, "language_extension")
1152
+
1153
+ @_builtins.property
1154
+ @pulumi.getter(name="languageExtensions")
1155
+ @_utilities.deprecated("""`language_extensions` has been deprecated in favour of `language_extension` and will be removed in v5.0 of the AzureRM provider""")
1156
+ def language_extensions(self) -> pulumi.Output[Sequence['outputs.ClusterLanguageExtension']]:
1128
1157
  return pulumi.get(self, "language_extensions")
1129
1158
 
1130
1159
  @_builtins.property
@@ -1155,7 +1184,7 @@ class Cluster(pulumi.CustomResource):
1155
1184
  @pulumi.getter(name="outboundNetworkAccessRestricted")
1156
1185
  def outbound_network_access_restricted(self) -> pulumi.Output[Optional[_builtins.bool]]:
1157
1186
  """
1158
- Whether to restrict outbound network access. Value is optional but if passed in, must be `true` or `false`, default is `false`.
1187
+ Whether to restrict outbound network access. Defaults to `false`.
1159
1188
  """
1160
1189
  return pulumi.get(self, "outbound_network_access_restricted")
1161
1190
 
@@ -1179,7 +1208,7 @@ class Cluster(pulumi.CustomResource):
1179
1208
  @pulumi.getter(name="purgeEnabled")
1180
1209
  def purge_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1181
1210
  """
1182
- Specifies if the purge operations are enabled.
1211
+ Specifies if the purge operations are enabled. Defaults to `false`.
1183
1212
  """
1184
1213
  return pulumi.get(self, "purge_enabled")
1185
1214
 
@@ -1203,7 +1232,7 @@ class Cluster(pulumi.CustomResource):
1203
1232
  @pulumi.getter(name="streamingIngestionEnabled")
1204
1233
  def streaming_ingestion_enabled(self) -> pulumi.Output[Optional[_builtins.bool]]:
1205
1234
  """
1206
- Specifies if the streaming ingest is enabled.
1235
+ Specifies if the streaming ingest is enabled. Defaults to `false`.
1207
1236
  """
1208
1237
  return pulumi.get(self, "streaming_ingestion_enabled")
1209
1238
 
@@ -215,6 +215,7 @@ class ClusterLanguageExtension(dict):
215
215
  image: _builtins.str,
216
216
  name: _builtins.str):
217
217
  """
218
+ :param _builtins.str image: The language extension image. Possible values are `Python3_11_7`, `Python3_11_7_DL`, `Python3_10_8`, `Python3_10_8_DL`, `Python3_6_5`, `PythonCustomImage`, and `R`.
218
219
  :param _builtins.str name: The name of the Kusto Cluster to create. Only lowercase Alphanumeric characters allowed, starting with a letter. Changing this forces a new resource to be created.
219
220
  """
220
221
  pulumi.set(__self__, "image", image)
@@ -223,6 +224,9 @@ class ClusterLanguageExtension(dict):
223
224
  @_builtins.property
224
225
  @pulumi.getter
225
226
  def image(self) -> _builtins.str:
227
+ """
228
+ The language extension image. Possible values are `Python3_11_7`, `Python3_11_7_DL`, `Python3_10_8`, `Python3_10_8_DL`, `Python3_6_5`, `PythonCustomImage`, and `R`.
229
+ """
226
230
  return pulumi.get(self, "image")
227
231
 
228
232
  @_builtins.property
@@ -259,8 +263,8 @@ class ClusterOptimizedAutoScale(dict):
259
263
  maximum_instances: _builtins.int,
260
264
  minimum_instances: _builtins.int):
261
265
  """
262
- :param _builtins.int maximum_instances: The maximum number of allowed instances. Must between `0` and `1000`.
263
- :param _builtins.int minimum_instances: The minimum number of allowed instances. Must between `0` and `1000`.
266
+ :param _builtins.int maximum_instances: The maximum number of allowed instances. Possible values range between `0` and `1000`.
267
+ :param _builtins.int minimum_instances: The minimum number of allowed instances. Possible values range between `0` and `1000`.
264
268
  """
265
269
  pulumi.set(__self__, "maximum_instances", maximum_instances)
266
270
  pulumi.set(__self__, "minimum_instances", minimum_instances)
@@ -269,7 +273,7 @@ class ClusterOptimizedAutoScale(dict):
269
273
  @pulumi.getter(name="maximumInstances")
270
274
  def maximum_instances(self) -> _builtins.int:
271
275
  """
272
- The maximum number of allowed instances. Must between `0` and `1000`.
276
+ The maximum number of allowed instances. Possible values range between `0` and `1000`.
273
277
  """
274
278
  return pulumi.get(self, "maximum_instances")
275
279
 
@@ -277,7 +281,7 @@ class ClusterOptimizedAutoScale(dict):
277
281
  @pulumi.getter(name="minimumInstances")
278
282
  def minimum_instances(self) -> _builtins.int:
279
283
  """
280
- The minimum number of allowed instances. Must between `0` and `1000`.
284
+ The minimum number of allowed instances. Possible values range between `0` and `1000`.
281
285
  """
282
286
  return pulumi.get(self, "minimum_instances")
283
287
 
@@ -292,6 +296,7 @@ class ClusterSku(dict):
292
296
  :param _builtins.int capacity: Specifies the node count for the cluster. Boundaries depend on the SKU name.
293
297
 
294
298
  > **Note:** If no `optimized_auto_scale` block is defined, then the capacity is required.
299
+
295
300
  > **Note:** If an `optimized_auto_scale` block is defined and no capacity is set, then the capacity is initially set to the value of `minimum_instances`.
296
301
  """
297
302
  pulumi.set(__self__, "name", name)
@@ -313,6 +318,7 @@ class ClusterSku(dict):
313
318
  Specifies the node count for the cluster. Boundaries depend on the SKU name.
314
319
 
315
320
  > **Note:** If no `optimized_auto_scale` block is defined, then the capacity is required.
321
+
316
322
  > **Note:** If an `optimized_auto_scale` block is defined and no capacity is set, then the capacity is initially set to the value of `minimum_instances`.
317
323
  """
318
324
  return pulumi.get(self, "capacity")
@@ -27,13 +27,16 @@ class GetLBOutboundRuleResult:
27
27
  """
28
28
  A collection of values returned by getLBOutboundRule.
29
29
  """
30
- def __init__(__self__, allocated_outbound_ports=None, backend_address_pool_id=None, frontend_ip_configurations=None, id=None, idle_timeout_in_minutes=None, loadbalancer_id=None, name=None, protocol=None, tcp_reset_enabled=None):
30
+ def __init__(__self__, allocated_outbound_ports=None, backend_address_pool_id=None, enable_tcp_reset=None, frontend_ip_configurations=None, id=None, idle_timeout_in_minutes=None, loadbalancer_id=None, name=None, protocol=None, tcp_reset_enabled=None):
31
31
  if allocated_outbound_ports and not isinstance(allocated_outbound_ports, int):
32
32
  raise TypeError("Expected argument 'allocated_outbound_ports' to be a int")
33
33
  pulumi.set(__self__, "allocated_outbound_ports", allocated_outbound_ports)
34
34
  if backend_address_pool_id and not isinstance(backend_address_pool_id, str):
35
35
  raise TypeError("Expected argument 'backend_address_pool_id' to be a str")
36
36
  pulumi.set(__self__, "backend_address_pool_id", backend_address_pool_id)
37
+ if enable_tcp_reset and not isinstance(enable_tcp_reset, bool):
38
+ raise TypeError("Expected argument 'enable_tcp_reset' to be a bool")
39
+ pulumi.set(__self__, "enable_tcp_reset", enable_tcp_reset)
37
40
  if frontend_ip_configurations and not isinstance(frontend_ip_configurations, list):
38
41
  raise TypeError("Expected argument 'frontend_ip_configurations' to be a list")
39
42
  pulumi.set(__self__, "frontend_ip_configurations", frontend_ip_configurations)
@@ -72,6 +75,11 @@ class GetLBOutboundRuleResult:
72
75
  """
73
76
  return pulumi.get(self, "backend_address_pool_id")
74
77
 
78
+ @_builtins.property
79
+ @pulumi.getter(name="enableTcpReset")
80
+ def enable_tcp_reset(self) -> _builtins.bool:
81
+ return pulumi.get(self, "enable_tcp_reset")
82
+
75
83
  @_builtins.property
76
84
  @pulumi.getter(name="frontendIpConfigurations")
77
85
  def frontend_ip_configurations(self) -> Sequence['outputs.GetLBOutboundRuleFrontendIpConfigurationResult']:
@@ -134,6 +142,7 @@ class AwaitableGetLBOutboundRuleResult(GetLBOutboundRuleResult):
134
142
  return GetLBOutboundRuleResult(
135
143
  allocated_outbound_ports=self.allocated_outbound_ports,
136
144
  backend_address_pool_id=self.backend_address_pool_id,
145
+ enable_tcp_reset=self.enable_tcp_reset,
137
146
  frontend_ip_configurations=self.frontend_ip_configurations,
138
147
  id=self.id,
139
148
  idle_timeout_in_minutes=self.idle_timeout_in_minutes,
@@ -180,6 +189,7 @@ def get_lb_outbound_rule(loadbalancer_id: Optional[_builtins.str] = None,
180
189
  return AwaitableGetLBOutboundRuleResult(
181
190
  allocated_outbound_ports=pulumi.get(__ret__, 'allocated_outbound_ports'),
182
191
  backend_address_pool_id=pulumi.get(__ret__, 'backend_address_pool_id'),
192
+ enable_tcp_reset=pulumi.get(__ret__, 'enable_tcp_reset'),
183
193
  frontend_ip_configurations=pulumi.get(__ret__, 'frontend_ip_configurations'),
184
194
  id=pulumi.get(__ret__, 'id'),
185
195
  idle_timeout_in_minutes=pulumi.get(__ret__, 'idle_timeout_in_minutes'),
@@ -223,6 +233,7 @@ def get_lb_outbound_rule_output(loadbalancer_id: Optional[pulumi.Input[_builtins
223
233
  return __ret__.apply(lambda __response__: GetLBOutboundRuleResult(
224
234
  allocated_outbound_ports=pulumi.get(__response__, 'allocated_outbound_ports'),
225
235
  backend_address_pool_id=pulumi.get(__response__, 'backend_address_pool_id'),
236
+ enable_tcp_reset=pulumi.get(__response__, 'enable_tcp_reset'),
226
237
  frontend_ip_configurations=pulumi.get(__response__, 'frontend_ip_configurations'),
227
238
  id=pulumi.get(__response__, 'id'),
228
239
  idle_timeout_in_minutes=pulumi.get(__response__, 'idle_timeout_in_minutes'),