pulumi-azure-native 3.8.0a1755616596__py3-none-any.whl → 3.9.0a1757522298__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-native might be problematic. Click here for more details.

Files changed (80) hide show
  1. pulumi_azure_native/cloudngfw/__init__.py +3 -3
  2. pulumi_azure_native/cloudngfw/certificate_object_global_rulestack.py +4 -4
  3. pulumi_azure_native/cloudngfw/certificate_object_local_rulestack.py +4 -4
  4. pulumi_azure_native/cloudngfw/firewall.py +4 -4
  5. pulumi_azure_native/cloudngfw/fqdn_list_global_rulestack.py +4 -4
  6. pulumi_azure_native/cloudngfw/fqdn_list_local_rulestack.py +4 -4
  7. pulumi_azure_native/cloudngfw/get_certificate_object_global_rulestack.py +4 -4
  8. pulumi_azure_native/cloudngfw/get_certificate_object_local_rulestack.py +4 -4
  9. pulumi_azure_native/cloudngfw/get_firewall.py +4 -4
  10. pulumi_azure_native/cloudngfw/get_firewall_global_rulestack.py +4 -4
  11. pulumi_azure_native/cloudngfw/get_firewall_log_profile.py +4 -4
  12. pulumi_azure_native/cloudngfw/get_firewall_support_info.py +6 -34
  13. pulumi_azure_native/cloudngfw/get_fqdn_list_global_rulestack.py +4 -4
  14. pulumi_azure_native/cloudngfw/get_fqdn_list_local_rulestack.py +4 -4
  15. pulumi_azure_native/cloudngfw/get_global_rulestack.py +4 -4
  16. pulumi_azure_native/cloudngfw/get_global_rulestack_change_log.py +4 -4
  17. pulumi_azure_native/cloudngfw/get_local_rule.py +4 -4
  18. pulumi_azure_native/cloudngfw/get_local_rule_counters.py +4 -4
  19. pulumi_azure_native/cloudngfw/get_local_rulestack.py +4 -4
  20. pulumi_azure_native/cloudngfw/get_local_rulestack_change_log.py +4 -4
  21. pulumi_azure_native/cloudngfw/get_local_rulestack_support_info.py +6 -34
  22. pulumi_azure_native/cloudngfw/get_post_rule.py +4 -4
  23. pulumi_azure_native/cloudngfw/get_post_rule_counters.py +4 -4
  24. pulumi_azure_native/cloudngfw/get_pre_rule.py +4 -4
  25. pulumi_azure_native/cloudngfw/get_pre_rule_counters.py +4 -4
  26. pulumi_azure_native/cloudngfw/get_prefix_list_global_rulestack.py +4 -4
  27. pulumi_azure_native/cloudngfw/get_prefix_list_local_rulestack.py +4 -4
  28. pulumi_azure_native/cloudngfw/global_rulestack.py +4 -4
  29. pulumi_azure_native/cloudngfw/list_global_rulestack_advanced_security_objects.py +4 -4
  30. pulumi_azure_native/cloudngfw/list_global_rulestack_app_ids.py +4 -4
  31. pulumi_azure_native/cloudngfw/list_global_rulestack_countries.py +4 -4
  32. pulumi_azure_native/cloudngfw/list_global_rulestack_firewalls.py +4 -4
  33. pulumi_azure_native/cloudngfw/list_global_rulestack_predefined_url_categories.py +4 -4
  34. pulumi_azure_native/cloudngfw/list_global_rulestack_security_services.py +4 -4
  35. pulumi_azure_native/cloudngfw/list_local_rulestack_advanced_security_objects.py +4 -4
  36. pulumi_azure_native/cloudngfw/list_local_rulestack_app_ids.py +4 -4
  37. pulumi_azure_native/cloudngfw/list_local_rulestack_countries.py +4 -4
  38. pulumi_azure_native/cloudngfw/list_local_rulestack_firewalls.py +4 -4
  39. pulumi_azure_native/cloudngfw/list_local_rulestack_predefined_url_categories.py +4 -4
  40. pulumi_azure_native/cloudngfw/list_local_rulestack_security_services.py +4 -4
  41. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_cloud_manager_tenants.py → list_palo_alto_networks_cloudngfw_operation_cloud_manager_tenants.py} +17 -17
  42. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_product_serial_number_status.py → list_palo_alto_networks_cloudngfw_operation_product_serial_number_status.py} +17 -17
  43. pulumi_azure_native/cloudngfw/{list_palo_alto_networks_cloudngfw_support_info.py → list_palo_alto_networks_cloudngfw_operation_support_info.py} +19 -47
  44. pulumi_azure_native/cloudngfw/local_rule.py +4 -4
  45. pulumi_azure_native/cloudngfw/local_rulestack.py +4 -4
  46. pulumi_azure_native/cloudngfw/post_rule.py +4 -4
  47. pulumi_azure_native/cloudngfw/pre_rule.py +4 -4
  48. pulumi_azure_native/cloudngfw/prefix_list_global_rulestack.py +4 -4
  49. pulumi_azure_native/cloudngfw/prefix_list_local_rulestack.py +4 -4
  50. pulumi_azure_native/config/__init__.pyi +11 -1
  51. pulumi_azure_native/config/vars.py +15 -1
  52. pulumi_azure_native/provider.py +43 -3
  53. pulumi_azure_native/pulumi-plugin.json +1 -1
  54. pulumi_azure_native/redisenterprise/_enums.py +82 -5
  55. pulumi_azure_native/redisenterprise/_inputs.py +19 -19
  56. pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
  57. pulumi_azure_native/redisenterprise/database.py +56 -17
  58. pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
  59. pulumi_azure_native/redisenterprise/get_database.py +40 -12
  60. pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
  61. pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
  62. pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
  63. pulumi_azure_native/redisenterprise/outputs.py +125 -14
  64. pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
  65. pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
  66. pulumi_azure_native/search/_enums.py +121 -10
  67. pulumi_azure_native/search/_inputs.py +109 -69
  68. pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
  69. pulumi_azure_native/search/get_service.py +117 -19
  70. pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
  71. pulumi_azure_native/search/list_admin_key.py +9 -9
  72. pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
  73. pulumi_azure_native/search/outputs.py +303 -57
  74. pulumi_azure_native/search/private_endpoint_connection.py +26 -16
  75. pulumi_azure_native/search/service.py +179 -33
  76. pulumi_azure_native/search/shared_private_link_resource.py +26 -16
  77. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/METADATA +1 -1
  78. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/RECORD +80 -80
  79. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/WHEEL +0 -0
  80. {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.9.0a1757522298.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,7 @@ class DatabaseArgs:
25
25
  def __init__(__self__, *,
26
26
  cluster_name: pulumi.Input[builtins.str],
27
27
  resource_group_name: pulumi.Input[builtins.str],
28
+ access_keys_authentication: Optional[pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']]] = None,
28
29
  client_protocol: Optional[pulumi.Input[Union[builtins.str, 'Protocol']]] = None,
29
30
  clustering_policy: Optional[pulumi.Input[Union[builtins.str, 'ClusteringPolicy']]] = None,
30
31
  database_name: Optional[pulumi.Input[builtins.str]] = None,
@@ -36,12 +37,13 @@ class DatabaseArgs:
36
37
  port: Optional[pulumi.Input[builtins.int]] = None):
37
38
  """
38
39
  The set of arguments for constructing a Database resource.
39
- :param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster.
40
+ :param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
40
41
  :param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
42
+ :param pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']] access_keys_authentication: This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
41
43
  :param pulumi.Input[Union[builtins.str, 'Protocol']] client_protocol: Specifies whether redis clients can connect using TLS-encrypted or plaintext redis protocols. Default is TLS-encrypted.
42
- :param pulumi.Input[Union[builtins.str, 'ClusteringPolicy']] clustering_policy: Clustering policy - default is OSSCluster. Specified at create time.
44
+ :param pulumi.Input[Union[builtins.str, 'ClusteringPolicy']] clustering_policy: Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.
43
45
  :param pulumi.Input[builtins.str] database_name: The name of the Redis Enterprise database.
44
- :param pulumi.Input[Union[builtins.str, 'DeferUpgradeSetting']] defer_upgrade: Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
46
+ :param pulumi.Input[Union[builtins.str, 'DeferUpgradeSetting']] defer_upgrade: Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
45
47
  :param pulumi.Input[Union[builtins.str, 'EvictionPolicy']] eviction_policy: Redis eviction policy - default is VolatileLRU
46
48
  :param pulumi.Input['DatabasePropertiesGeoReplicationArgs'] geo_replication: Optional set of properties to configure geo replication for this database.
47
49
  :param pulumi.Input[Sequence[pulumi.Input['ModuleArgs']]] modules: Optional set of redis modules to enable in this database - modules can only be added at creation time.
@@ -50,6 +52,8 @@ class DatabaseArgs:
50
52
  """
51
53
  pulumi.set(__self__, "cluster_name", cluster_name)
52
54
  pulumi.set(__self__, "resource_group_name", resource_group_name)
55
+ if access_keys_authentication is not None:
56
+ pulumi.set(__self__, "access_keys_authentication", access_keys_authentication)
53
57
  if client_protocol is not None:
54
58
  pulumi.set(__self__, "client_protocol", client_protocol)
55
59
  if clustering_policy is not None:
@@ -73,7 +77,7 @@ class DatabaseArgs:
73
77
  @pulumi.getter(name="clusterName")
74
78
  def cluster_name(self) -> pulumi.Input[builtins.str]:
75
79
  """
76
- The name of the Redis Enterprise cluster.
80
+ The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
77
81
  """
78
82
  return pulumi.get(self, "cluster_name")
79
83
 
@@ -93,6 +97,18 @@ class DatabaseArgs:
93
97
  def resource_group_name(self, value: pulumi.Input[builtins.str]):
94
98
  pulumi.set(self, "resource_group_name", value)
95
99
 
100
+ @property
101
+ @pulumi.getter(name="accessKeysAuthentication")
102
+ def access_keys_authentication(self) -> Optional[pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']]]:
103
+ """
104
+ This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
105
+ """
106
+ return pulumi.get(self, "access_keys_authentication")
107
+
108
+ @access_keys_authentication.setter
109
+ def access_keys_authentication(self, value: Optional[pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']]]):
110
+ pulumi.set(self, "access_keys_authentication", value)
111
+
96
112
  @property
97
113
  @pulumi.getter(name="clientProtocol")
98
114
  def client_protocol(self) -> Optional[pulumi.Input[Union[builtins.str, 'Protocol']]]:
@@ -109,7 +125,7 @@ class DatabaseArgs:
109
125
  @pulumi.getter(name="clusteringPolicy")
110
126
  def clustering_policy(self) -> Optional[pulumi.Input[Union[builtins.str, 'ClusteringPolicy']]]:
111
127
  """
112
- Clustering policy - default is OSSCluster. Specified at create time.
128
+ Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.
113
129
  """
114
130
  return pulumi.get(self, "clustering_policy")
115
131
 
@@ -133,7 +149,7 @@ class DatabaseArgs:
133
149
  @pulumi.getter(name="deferUpgrade")
134
150
  def defer_upgrade(self) -> Optional[pulumi.Input[Union[builtins.str, 'DeferUpgradeSetting']]]:
135
151
  """
136
- Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
152
+ Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
137
153
  """
138
154
  return pulumi.get(self, "defer_upgrade")
139
155
 
@@ -208,6 +224,7 @@ class Database(pulumi.CustomResource):
208
224
  def __init__(__self__,
209
225
  resource_name: str,
210
226
  opts: Optional[pulumi.ResourceOptions] = None,
227
+ access_keys_authentication: Optional[pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']]] = None,
211
228
  client_protocol: Optional[pulumi.Input[Union[builtins.str, 'Protocol']]] = None,
212
229
  cluster_name: Optional[pulumi.Input[builtins.str]] = None,
213
230
  clustering_policy: Optional[pulumi.Input[Union[builtins.str, 'ClusteringPolicy']]] = None,
@@ -221,19 +238,20 @@ class Database(pulumi.CustomResource):
221
238
  resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
222
239
  __props__=None):
223
240
  """
224
- Describes a database on the RedisEnterprise cluster
241
+ Describes a database on the Redis Enterprise cluster
225
242
 
226
- Uses Azure REST API version 2024-03-01-preview.
243
+ Uses Azure REST API version 2025-05-01-preview.
227
244
 
228
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
245
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
229
246
 
230
247
  :param str resource_name: The name of the resource.
231
248
  :param pulumi.ResourceOptions opts: Options for the resource.
249
+ :param pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']] access_keys_authentication: This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
232
250
  :param pulumi.Input[Union[builtins.str, 'Protocol']] client_protocol: Specifies whether redis clients can connect using TLS-encrypted or plaintext redis protocols. Default is TLS-encrypted.
233
- :param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster.
234
- :param pulumi.Input[Union[builtins.str, 'ClusteringPolicy']] clustering_policy: Clustering policy - default is OSSCluster. Specified at create time.
251
+ :param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
252
+ :param pulumi.Input[Union[builtins.str, 'ClusteringPolicy']] clustering_policy: Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.
235
253
  :param pulumi.Input[builtins.str] database_name: The name of the Redis Enterprise database.
236
- :param pulumi.Input[Union[builtins.str, 'DeferUpgradeSetting']] defer_upgrade: Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
254
+ :param pulumi.Input[Union[builtins.str, 'DeferUpgradeSetting']] defer_upgrade: Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
237
255
  :param pulumi.Input[Union[builtins.str, 'EvictionPolicy']] eviction_policy: Redis eviction policy - default is VolatileLRU
238
256
  :param pulumi.Input[Union['DatabasePropertiesGeoReplicationArgs', 'DatabasePropertiesGeoReplicationArgsDict']] geo_replication: Optional set of properties to configure geo replication for this database.
239
257
  :param pulumi.Input[Sequence[pulumi.Input[Union['ModuleArgs', 'ModuleArgsDict']]]] modules: Optional set of redis modules to enable in this database - modules can only be added at creation time.
@@ -248,11 +266,11 @@ class Database(pulumi.CustomResource):
248
266
  args: DatabaseArgs,
249
267
  opts: Optional[pulumi.ResourceOptions] = None):
250
268
  """
251
- Describes a database on the RedisEnterprise cluster
269
+ Describes a database on the Redis Enterprise cluster
252
270
 
253
- Uses Azure REST API version 2024-03-01-preview.
271
+ Uses Azure REST API version 2025-05-01-preview.
254
272
 
255
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
273
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
256
274
 
257
275
  :param str resource_name: The name of the resource.
258
276
  :param DatabaseArgs args: The arguments to use to populate this resource's properties.
@@ -269,6 +287,7 @@ class Database(pulumi.CustomResource):
269
287
  def _internal_init(__self__,
270
288
  resource_name: str,
271
289
  opts: Optional[pulumi.ResourceOptions] = None,
290
+ access_keys_authentication: Optional[pulumi.Input[Union[builtins.str, 'AccessKeysAuthentication']]] = None,
272
291
  client_protocol: Optional[pulumi.Input[Union[builtins.str, 'Protocol']]] = None,
273
292
  cluster_name: Optional[pulumi.Input[builtins.str]] = None,
274
293
  clustering_policy: Optional[pulumi.Input[Union[builtins.str, 'ClusteringPolicy']]] = None,
@@ -289,6 +308,7 @@ class Database(pulumi.CustomResource):
289
308
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
290
309
  __props__ = DatabaseArgs.__new__(DatabaseArgs)
291
310
 
311
+ __props__.__dict__["access_keys_authentication"] = access_keys_authentication
292
312
  __props__.__dict__["client_protocol"] = client_protocol
293
313
  if cluster_name is None and not opts.urn:
294
314
  raise TypeError("Missing required property 'cluster_name'")
@@ -309,6 +329,7 @@ class Database(pulumi.CustomResource):
309
329
  __props__.__dict__["provisioning_state"] = None
310
330
  __props__.__dict__["redis_version"] = None
311
331
  __props__.__dict__["resource_state"] = None
332
+ __props__.__dict__["system_data"] = None
312
333
  __props__.__dict__["type"] = None
313
334
  alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:cache/v20230301preview:Database"), pulumi.Alias(type_="azure-native:cache/v20230701:Database"), pulumi.Alias(type_="azure-native:cache/v20230801preview:Database"), pulumi.Alias(type_="azure-native:cache/v20231001preview:Database"), pulumi.Alias(type_="azure-native:cache/v20231101:Database"), pulumi.Alias(type_="azure-native:cache/v20240201:Database"), pulumi.Alias(type_="azure-native:cache/v20240301preview:Database"), pulumi.Alias(type_="azure-native:cache/v20240601preview:Database"), pulumi.Alias(type_="azure-native:cache/v20240901preview:Database"), pulumi.Alias(type_="azure-native:cache/v20241001:Database"), pulumi.Alias(type_="azure-native:cache:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20201001preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20210201preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20210301:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20210801:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20220101:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20221101preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20230301preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20230701:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20230801preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20231001preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20231101:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20240201:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20240301preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20240601preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20240901preview:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20241001:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20250401:Database"), pulumi.Alias(type_="azure-native:redisenterprise/v20250501preview:Database")])
314
335
  opts = pulumi.ResourceOptions.merge(opts, alias_opts)
@@ -334,6 +355,7 @@ class Database(pulumi.CustomResource):
334
355
 
335
356
  __props__ = DatabaseArgs.__new__(DatabaseArgs)
336
357
 
358
+ __props__.__dict__["access_keys_authentication"] = None
337
359
  __props__.__dict__["azure_api_version"] = None
338
360
  __props__.__dict__["client_protocol"] = None
339
361
  __props__.__dict__["clustering_policy"] = None
@@ -347,9 +369,18 @@ class Database(pulumi.CustomResource):
347
369
  __props__.__dict__["provisioning_state"] = None
348
370
  __props__.__dict__["redis_version"] = None
349
371
  __props__.__dict__["resource_state"] = None
372
+ __props__.__dict__["system_data"] = None
350
373
  __props__.__dict__["type"] = None
351
374
  return Database(resource_name, opts=opts, __props__=__props__)
352
375
 
376
+ @property
377
+ @pulumi.getter(name="accessKeysAuthentication")
378
+ def access_keys_authentication(self) -> pulumi.Output[Optional[builtins.str]]:
379
+ """
380
+ This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
381
+ """
382
+ return pulumi.get(self, "access_keys_authentication")
383
+
353
384
  @property
354
385
  @pulumi.getter(name="azureApiVersion")
355
386
  def azure_api_version(self) -> pulumi.Output[builtins.str]:
@@ -370,7 +401,7 @@ class Database(pulumi.CustomResource):
370
401
  @pulumi.getter(name="clusteringPolicy")
371
402
  def clustering_policy(self) -> pulumi.Output[Optional[builtins.str]]:
372
403
  """
373
- Clustering policy - default is OSSCluster. Specified at create time.
404
+ Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.
374
405
  """
375
406
  return pulumi.get(self, "clustering_policy")
376
407
 
@@ -378,7 +409,7 @@ class Database(pulumi.CustomResource):
378
409
  @pulumi.getter(name="deferUpgrade")
379
410
  def defer_upgrade(self) -> pulumi.Output[Optional[builtins.str]]:
380
411
  """
381
- Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
412
+ Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
382
413
  """
383
414
  return pulumi.get(self, "defer_upgrade")
384
415
 
@@ -454,6 +485,14 @@ class Database(pulumi.CustomResource):
454
485
  """
455
486
  return pulumi.get(self, "resource_state")
456
487
 
488
+ @property
489
+ @pulumi.getter(name="systemData")
490
+ def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
491
+ """
492
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
493
+ """
494
+ return pulumi.get(self, "system_data")
495
+
457
496
  @property
458
497
  @pulumi.getter
459
498
  def type(self) -> pulumi.Output[builtins.str]:
@@ -131,13 +131,13 @@ def get_access_policy_assignment(access_policy_assignment_name: Optional[builtin
131
131
  """
132
132
  Gets information about access policy assignment for database.
133
133
 
134
- Uses Azure REST API version 2024-09-01-preview.
134
+ Uses Azure REST API version 2025-05-01-preview.
135
135
 
136
- Other available API versions: 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
136
+ Other available API versions: 2024-09-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
137
137
 
138
138
 
139
139
  :param builtins.str access_policy_assignment_name: The name of the Redis Enterprise database access policy assignment.
140
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
140
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
141
141
  :param builtins.str database_name: The name of the Redis Enterprise database.
142
142
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
143
143
  """
@@ -165,13 +165,13 @@ def get_access_policy_assignment_output(access_policy_assignment_name: Optional[
165
165
  """
166
166
  Gets information about access policy assignment for database.
167
167
 
168
- Uses Azure REST API version 2024-09-01-preview.
168
+ Uses Azure REST API version 2025-05-01-preview.
169
169
 
170
- Other available API versions: 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
170
+ Other available API versions: 2024-09-01-preview, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
171
171
 
172
172
 
173
173
  :param builtins.str access_policy_assignment_name: The name of the Redis Enterprise database access policy assignment.
174
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
174
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
175
175
  :param builtins.str database_name: The name of the Redis Enterprise database.
176
176
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
177
177
  """
@@ -26,9 +26,12 @@ __all__ = [
26
26
  @pulumi.output_type
27
27
  class GetDatabaseResult:
28
28
  """
29
- Describes a database on the RedisEnterprise cluster
29
+ Describes a database on the Redis Enterprise cluster
30
30
  """
31
- def __init__(__self__, azure_api_version=None, client_protocol=None, clustering_policy=None, defer_upgrade=None, eviction_policy=None, geo_replication=None, id=None, modules=None, name=None, persistence=None, port=None, provisioning_state=None, redis_version=None, resource_state=None, type=None):
31
+ def __init__(__self__, access_keys_authentication=None, azure_api_version=None, client_protocol=None, clustering_policy=None, defer_upgrade=None, eviction_policy=None, geo_replication=None, id=None, modules=None, name=None, persistence=None, port=None, provisioning_state=None, redis_version=None, resource_state=None, system_data=None, type=None):
32
+ if access_keys_authentication and not isinstance(access_keys_authentication, str):
33
+ raise TypeError("Expected argument 'access_keys_authentication' to be a str")
34
+ pulumi.set(__self__, "access_keys_authentication", access_keys_authentication)
32
35
  if azure_api_version and not isinstance(azure_api_version, str):
33
36
  raise TypeError("Expected argument 'azure_api_version' to be a str")
34
37
  pulumi.set(__self__, "azure_api_version", azure_api_version)
@@ -71,10 +74,21 @@ class GetDatabaseResult:
71
74
  if resource_state and not isinstance(resource_state, str):
72
75
  raise TypeError("Expected argument 'resource_state' to be a str")
73
76
  pulumi.set(__self__, "resource_state", resource_state)
77
+ if system_data and not isinstance(system_data, dict):
78
+ raise TypeError("Expected argument 'system_data' to be a dict")
79
+ pulumi.set(__self__, "system_data", system_data)
74
80
  if type and not isinstance(type, str):
75
81
  raise TypeError("Expected argument 'type' to be a str")
76
82
  pulumi.set(__self__, "type", type)
77
83
 
84
+ @property
85
+ @pulumi.getter(name="accessKeysAuthentication")
86
+ def access_keys_authentication(self) -> Optional[builtins.str]:
87
+ """
88
+ This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
89
+ """
90
+ return pulumi.get(self, "access_keys_authentication")
91
+
78
92
  @property
79
93
  @pulumi.getter(name="azureApiVersion")
80
94
  def azure_api_version(self) -> builtins.str:
@@ -95,7 +109,7 @@ class GetDatabaseResult:
95
109
  @pulumi.getter(name="clusteringPolicy")
96
110
  def clustering_policy(self) -> Optional[builtins.str]:
97
111
  """
98
- Clustering policy - default is OSSCluster. Specified at create time.
112
+ Clustering policy - default is OSSCluster. This property can be updated only if the current value is NoCluster. If the value is OSSCluster or EnterpriseCluster, it cannot be updated without deleting the database.
99
113
  """
100
114
  return pulumi.get(self, "clustering_policy")
101
115
 
@@ -103,7 +117,7 @@ class GetDatabaseResult:
103
117
  @pulumi.getter(name="deferUpgrade")
104
118
  def defer_upgrade(self) -> Optional[builtins.str]:
105
119
  """
106
- Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
120
+ Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
107
121
  """
108
122
  return pulumi.get(self, "defer_upgrade")
109
123
 
@@ -187,6 +201,14 @@ class GetDatabaseResult:
187
201
  """
188
202
  return pulumi.get(self, "resource_state")
189
203
 
204
+ @property
205
+ @pulumi.getter(name="systemData")
206
+ def system_data(self) -> 'outputs.SystemDataResponse':
207
+ """
208
+ Azure Resource Manager metadata containing createdBy and modifiedBy information.
209
+ """
210
+ return pulumi.get(self, "system_data")
211
+
190
212
  @property
191
213
  @pulumi.getter
192
214
  def type(self) -> builtins.str:
@@ -202,6 +224,7 @@ class AwaitableGetDatabaseResult(GetDatabaseResult):
202
224
  if False:
203
225
  yield self
204
226
  return GetDatabaseResult(
227
+ access_keys_authentication=self.access_keys_authentication,
205
228
  azure_api_version=self.azure_api_version,
206
229
  client_protocol=self.client_protocol,
207
230
  clustering_policy=self.clustering_policy,
@@ -216,6 +239,7 @@ class AwaitableGetDatabaseResult(GetDatabaseResult):
216
239
  provisioning_state=self.provisioning_state,
217
240
  redis_version=self.redis_version,
218
241
  resource_state=self.resource_state,
242
+ system_data=self.system_data,
219
243
  type=self.type)
220
244
 
221
245
 
@@ -224,14 +248,14 @@ def get_database(cluster_name: Optional[builtins.str] = None,
224
248
  resource_group_name: Optional[builtins.str] = None,
225
249
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDatabaseResult:
226
250
  """
227
- Gets information about a database in a RedisEnterprise cluster.
251
+ Gets information about a database in a Redis Enterprise cluster.
228
252
 
229
- Uses Azure REST API version 2024-03-01-preview.
253
+ Uses Azure REST API version 2025-05-01-preview.
230
254
 
231
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
255
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
232
256
 
233
257
 
234
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
258
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
235
259
  :param builtins.str database_name: The name of the Redis Enterprise database.
236
260
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
237
261
  """
@@ -243,6 +267,7 @@ def get_database(cluster_name: Optional[builtins.str] = None,
243
267
  __ret__ = pulumi.runtime.invoke('azure-native:redisenterprise:getDatabase', __args__, opts=opts, typ=GetDatabaseResult).value
244
268
 
245
269
  return AwaitableGetDatabaseResult(
270
+ access_keys_authentication=pulumi.get(__ret__, 'access_keys_authentication'),
246
271
  azure_api_version=pulumi.get(__ret__, 'azure_api_version'),
247
272
  client_protocol=pulumi.get(__ret__, 'client_protocol'),
248
273
  clustering_policy=pulumi.get(__ret__, 'clustering_policy'),
@@ -257,20 +282,21 @@ def get_database(cluster_name: Optional[builtins.str] = None,
257
282
  provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
258
283
  redis_version=pulumi.get(__ret__, 'redis_version'),
259
284
  resource_state=pulumi.get(__ret__, 'resource_state'),
285
+ system_data=pulumi.get(__ret__, 'system_data'),
260
286
  type=pulumi.get(__ret__, 'type'))
261
287
  def get_database_output(cluster_name: Optional[pulumi.Input[builtins.str]] = None,
262
288
  database_name: Optional[pulumi.Input[builtins.str]] = None,
263
289
  resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
264
290
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetDatabaseResult]:
265
291
  """
266
- Gets information about a database in a RedisEnterprise cluster.
292
+ Gets information about a database in a Redis Enterprise cluster.
267
293
 
268
- Uses Azure REST API version 2024-03-01-preview.
294
+ Uses Azure REST API version 2025-05-01-preview.
269
295
 
270
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
296
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
271
297
 
272
298
 
273
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
299
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
274
300
  :param builtins.str database_name: The name of the Redis Enterprise database.
275
301
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
276
302
  """
@@ -281,6 +307,7 @@ def get_database_output(cluster_name: Optional[pulumi.Input[builtins.str]] = Non
281
307
  opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
282
308
  __ret__ = pulumi.runtime.invoke_output('azure-native:redisenterprise:getDatabase', __args__, opts=opts, typ=GetDatabaseResult)
283
309
  return __ret__.apply(lambda __response__: GetDatabaseResult(
310
+ access_keys_authentication=pulumi.get(__response__, 'access_keys_authentication'),
284
311
  azure_api_version=pulumi.get(__response__, 'azure_api_version'),
285
312
  client_protocol=pulumi.get(__response__, 'client_protocol'),
286
313
  clustering_policy=pulumi.get(__response__, 'clustering_policy'),
@@ -295,4 +322,5 @@ def get_database_output(cluster_name: Optional[pulumi.Input[builtins.str]] = Non
295
322
  provisioning_state=pulumi.get(__response__, 'provisioning_state'),
296
323
  redis_version=pulumi.get(__response__, 'redis_version'),
297
324
  resource_state=pulumi.get(__response__, 'resource_state'),
325
+ system_data=pulumi.get(__response__, 'system_data'),
298
326
  type=pulumi.get(__response__, 'type')))
@@ -128,14 +128,14 @@ def get_private_endpoint_connection(cluster_name: Optional[builtins.str] = None,
128
128
  resource_group_name: Optional[builtins.str] = None,
129
129
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointConnectionResult:
130
130
  """
131
- Gets the specified private endpoint connection associated with the RedisEnterprise cluster.
131
+ Gets the specified private endpoint connection associated with the Redis Enterprise cluster.
132
132
 
133
- Uses Azure REST API version 2024-03-01-preview.
133
+ Uses Azure REST API version 2025-05-01-preview.
134
134
 
135
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
135
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
136
136
 
137
137
 
138
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
138
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
139
139
  :param builtins.str private_endpoint_connection_name: The name of the private endpoint connection associated with the Azure resource
140
140
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
141
141
  """
@@ -159,14 +159,14 @@ def get_private_endpoint_connection_output(cluster_name: Optional[pulumi.Input[b
159
159
  resource_group_name: Optional[pulumi.Input[builtins.str]] = None,
160
160
  opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPrivateEndpointConnectionResult]:
161
161
  """
162
- Gets the specified private endpoint connection associated with the RedisEnterprise cluster.
162
+ Gets the specified private endpoint connection associated with the Redis Enterprise cluster.
163
163
 
164
- Uses Azure REST API version 2024-03-01-preview.
164
+ Uses Azure REST API version 2025-05-01-preview.
165
165
 
166
- Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01, 2025-05-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
166
+ Other available API versions: 2020-10-01-preview, 2021-02-01-preview, 2021-03-01, 2021-08-01, 2022-01-01, 2022-11-01-preview, 2023-03-01-preview, 2023-07-01, 2023-08-01-preview, 2023-10-01-preview, 2023-11-01, 2024-02-01, 2024-03-01-preview, 2024-06-01-preview, 2024-09-01-preview, 2024-10-01, 2025-04-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native redisenterprise [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details.
167
167
 
168
168
 
169
- :param builtins.str cluster_name: The name of the Redis Enterprise cluster.
169
+ :param builtins.str cluster_name: The name of the Redis Enterprise cluster. Name must be 1-60 characters long. Allowed characters(A-Z, a-z, 0-9) and hyphen(-). There can be no leading nor trailing nor consecutive hyphens
170
170
  :param builtins.str private_endpoint_connection_name: The name of the private endpoint connection associated with the Azure resource
171
171
  :param builtins.str resource_group_name: The name of the resource group. The name is case insensitive.
172
172
  """