pulumi-azure-native 3.8.0a1755616596__py3-none-any.whl → 3.8.0a1756942349__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.
- pulumi_azure_native/config/__init__.pyi +11 -1
- pulumi_azure_native/config/vars.py +15 -1
- pulumi_azure_native/provider.py +43 -3
- pulumi_azure_native/pulumi-plugin.json +1 -1
- pulumi_azure_native/redisenterprise/_enums.py +82 -5
- pulumi_azure_native/redisenterprise/_inputs.py +19 -19
- pulumi_azure_native/redisenterprise/access_policy_assignment.py +7 -7
- pulumi_azure_native/redisenterprise/database.py +56 -17
- pulumi_azure_native/redisenterprise/get_access_policy_assignment.py +6 -6
- pulumi_azure_native/redisenterprise/get_database.py +40 -12
- pulumi_azure_native/redisenterprise/get_private_endpoint_connection.py +8 -8
- pulumi_azure_native/redisenterprise/get_redis_enterprise.py +54 -12
- pulumi_azure_native/redisenterprise/list_database_keys.py +8 -8
- pulumi_azure_native/redisenterprise/outputs.py +125 -14
- pulumi_azure_native/redisenterprise/private_endpoint_connection.py +7 -7
- pulumi_azure_native/redisenterprise/redis_enterprise.py +63 -14
- pulumi_azure_native/search/_enums.py +121 -10
- pulumi_azure_native/search/_inputs.py +109 -69
- pulumi_azure_native/search/get_private_endpoint_connection.py +26 -12
- pulumi_azure_native/search/get_service.py +117 -19
- pulumi_azure_native/search/get_shared_private_link_resource.py +26 -12
- pulumi_azure_native/search/list_admin_key.py +9 -9
- pulumi_azure_native/search/list_query_key_by_search_service.py +10 -10
- pulumi_azure_native/search/outputs.py +303 -57
- pulumi_azure_native/search/private_endpoint_connection.py +26 -16
- pulumi_azure_native/search/service.py +179 -33
- pulumi_azure_native/search/shared_private_link_resource.py +26 -16
- {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/METADATA +1 -1
- {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/RECORD +31 -31
- {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-3.8.0a1755616596.dist-info → pulumi_azure_native-3.8.0a1756942349.dist-info}/top_level.txt +0 -0
|
@@ -40,6 +40,11 @@ clientSecret: Optional[str]
|
|
|
40
40
|
The Client Secret which should be used. For use when authenticating as a Service Principal using a Client Secret.
|
|
41
41
|
"""
|
|
42
42
|
|
|
43
|
+
disableInstanceDiscovery: Optional[bool]
|
|
44
|
+
"""
|
|
45
|
+
Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached, such as in private clouds or Azure Stack.
|
|
46
|
+
"""
|
|
47
|
+
|
|
43
48
|
disablePulumiPartnerId: Optional[bool]
|
|
44
49
|
"""
|
|
45
50
|
This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
|
|
@@ -47,7 +52,7 @@ This will disable the Pulumi Partner ID which is used if a custom `partnerId` is
|
|
|
47
52
|
|
|
48
53
|
environment: Optional[str]
|
|
49
54
|
"""
|
|
50
|
-
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
55
|
+
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used when metadataHost is specified or when ARM_METADATA_HOSTNAME is set.
|
|
51
56
|
"""
|
|
52
57
|
|
|
53
58
|
location: Optional[str]
|
|
@@ -100,6 +105,11 @@ tenantId: Optional[str]
|
|
|
100
105
|
The Tenant ID which should be used.
|
|
101
106
|
"""
|
|
102
107
|
|
|
108
|
+
useDefaultAzureCredential: Optional[bool]
|
|
109
|
+
"""
|
|
110
|
+
Use the default credential chain of the Azure SDK (see https://learn.microsoft.com/en-us/azure/developer/go/sdk/authentication/credential-chains#defaultazurecredential-overview).
|
|
111
|
+
"""
|
|
112
|
+
|
|
103
113
|
useMsi: Optional[bool]
|
|
104
114
|
"""
|
|
105
115
|
Allow Managed Service Identity be used for Authentication.
|
|
@@ -56,6 +56,13 @@ class _ExportableConfig(types.ModuleType):
|
|
|
56
56
|
"""
|
|
57
57
|
return __config__.get('clientSecret')
|
|
58
58
|
|
|
59
|
+
@property
|
|
60
|
+
def disable_instance_discovery(self) -> Optional[bool]:
|
|
61
|
+
"""
|
|
62
|
+
Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached, such as in private clouds or Azure Stack.
|
|
63
|
+
"""
|
|
64
|
+
return __config__.get_bool('disableInstanceDiscovery')
|
|
65
|
+
|
|
59
66
|
@property
|
|
60
67
|
def disable_pulumi_partner_id(self) -> Optional[bool]:
|
|
61
68
|
"""
|
|
@@ -66,7 +73,7 @@ class _ExportableConfig(types.ModuleType):
|
|
|
66
73
|
@property
|
|
67
74
|
def environment(self) -> Optional[str]:
|
|
68
75
|
"""
|
|
69
|
-
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
76
|
+
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used when metadataHost is specified or when ARM_METADATA_HOSTNAME is set.
|
|
70
77
|
"""
|
|
71
78
|
return __config__.get('environment')
|
|
72
79
|
|
|
@@ -140,6 +147,13 @@ class _ExportableConfig(types.ModuleType):
|
|
|
140
147
|
"""
|
|
141
148
|
return __config__.get('tenantId')
|
|
142
149
|
|
|
150
|
+
@property
|
|
151
|
+
def use_default_azure_credential(self) -> Optional[bool]:
|
|
152
|
+
"""
|
|
153
|
+
Use the default credential chain of the Azure SDK (see https://learn.microsoft.com/en-us/azure/developer/go/sdk/authentication/credential-chains#defaultazurecredential-overview).
|
|
154
|
+
"""
|
|
155
|
+
return __config__.get_bool('useDefaultAzureCredential')
|
|
156
|
+
|
|
143
157
|
@property
|
|
144
158
|
def use_msi(self) -> Optional[bool]:
|
|
145
159
|
"""
|
pulumi_azure_native/provider.py
CHANGED
|
@@ -25,6 +25,7 @@ class ProviderArgs:
|
|
|
25
25
|
client_certificate_path: Optional[pulumi.Input[builtins.str]] = None,
|
|
26
26
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
27
27
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
28
|
+
disable_instance_discovery: Optional[pulumi.Input[builtins.bool]] = None,
|
|
28
29
|
disable_pulumi_partner_id: Optional[pulumi.Input[builtins.bool]] = None,
|
|
29
30
|
environment: Optional[pulumi.Input[builtins.str]] = None,
|
|
30
31
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -36,6 +37,7 @@ class ProviderArgs:
|
|
|
36
37
|
partner_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
37
38
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
38
39
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
40
|
+
use_default_azure_credential: Optional[pulumi.Input[builtins.bool]] = None,
|
|
39
41
|
use_msi: Optional[pulumi.Input[builtins.bool]] = None,
|
|
40
42
|
use_oidc: Optional[pulumi.Input[builtins.bool]] = None):
|
|
41
43
|
"""
|
|
@@ -45,8 +47,9 @@ class ProviderArgs:
|
|
|
45
47
|
:param pulumi.Input[builtins.str] client_certificate_path: The path to the Client Certificate associated with the Service Principal for use when authenticating as a Service Principal using a Client Certificate.
|
|
46
48
|
:param pulumi.Input[builtins.str] client_id: The Client ID which should be used.
|
|
47
49
|
:param pulumi.Input[builtins.str] client_secret: The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret.
|
|
50
|
+
:param pulumi.Input[builtins.bool] disable_instance_discovery: Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached, such as in private clouds or Azure Stack.
|
|
48
51
|
:param pulumi.Input[builtins.bool] disable_pulumi_partner_id: This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
|
|
49
|
-
:param pulumi.Input[builtins.str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
52
|
+
:param pulumi.Input[builtins.str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used when metadataHost is specified or when ARM_METADATA_HOSTNAME is set.
|
|
50
53
|
:param pulumi.Input[builtins.str] location: The location to use. ResourceGroups will consult this property for a default location, if one was not supplied explicitly when defining the resource.
|
|
51
54
|
:param pulumi.Input[builtins.str] metadata_host: The Hostname of the Azure Metadata Service.
|
|
52
55
|
:param pulumi.Input[builtins.str] msi_endpoint: The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
@@ -56,6 +59,7 @@ class ProviderArgs:
|
|
|
56
59
|
:param pulumi.Input[builtins.str] partner_id: A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution.
|
|
57
60
|
:param pulumi.Input[builtins.str] subscription_id: The Subscription ID which should be used.
|
|
58
61
|
:param pulumi.Input[builtins.str] tenant_id: The Tenant ID which should be used.
|
|
62
|
+
:param pulumi.Input[builtins.bool] use_default_azure_credential: Use the default credential chain of the Azure SDK (see https://learn.microsoft.com/en-us/azure/developer/go/sdk/authentication/credential-chains#defaultazurecredential-overview).
|
|
59
63
|
:param pulumi.Input[builtins.bool] use_msi: Allow Managed Service Identity to be used for Authentication.
|
|
60
64
|
:param pulumi.Input[builtins.bool] use_oidc: Allow OpenID Connect (OIDC) to be used for Authentication.
|
|
61
65
|
"""
|
|
@@ -69,6 +73,8 @@ class ProviderArgs:
|
|
|
69
73
|
pulumi.set(__self__, "client_id", client_id)
|
|
70
74
|
if client_secret is not None:
|
|
71
75
|
pulumi.set(__self__, "client_secret", client_secret)
|
|
76
|
+
if disable_instance_discovery is not None:
|
|
77
|
+
pulumi.set(__self__, "disable_instance_discovery", disable_instance_discovery)
|
|
72
78
|
if disable_pulumi_partner_id is not None:
|
|
73
79
|
pulumi.set(__self__, "disable_pulumi_partner_id", disable_pulumi_partner_id)
|
|
74
80
|
if environment is None:
|
|
@@ -93,6 +99,8 @@ class ProviderArgs:
|
|
|
93
99
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
|
94
100
|
if tenant_id is not None:
|
|
95
101
|
pulumi.set(__self__, "tenant_id", tenant_id)
|
|
102
|
+
if use_default_azure_credential is not None:
|
|
103
|
+
pulumi.set(__self__, "use_default_azure_credential", use_default_azure_credential)
|
|
96
104
|
if use_msi is not None:
|
|
97
105
|
pulumi.set(__self__, "use_msi", use_msi)
|
|
98
106
|
if use_oidc is not None:
|
|
@@ -158,6 +166,18 @@ class ProviderArgs:
|
|
|
158
166
|
def client_secret(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
159
167
|
pulumi.set(self, "client_secret", value)
|
|
160
168
|
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="disableInstanceDiscovery")
|
|
171
|
+
def disable_instance_discovery(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
172
|
+
"""
|
|
173
|
+
Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached, such as in private clouds or Azure Stack.
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "disable_instance_discovery")
|
|
176
|
+
|
|
177
|
+
@disable_instance_discovery.setter
|
|
178
|
+
def disable_instance_discovery(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
179
|
+
pulumi.set(self, "disable_instance_discovery", value)
|
|
180
|
+
|
|
161
181
|
@property
|
|
162
182
|
@pulumi.getter(name="disablePulumiPartnerId")
|
|
163
183
|
def disable_pulumi_partner_id(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
@@ -174,7 +194,7 @@ class ProviderArgs:
|
|
|
174
194
|
@pulumi.getter
|
|
175
195
|
def environment(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
176
196
|
"""
|
|
177
|
-
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
197
|
+
The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used when metadataHost is specified or when ARM_METADATA_HOSTNAME is set.
|
|
178
198
|
"""
|
|
179
199
|
return pulumi.get(self, "environment")
|
|
180
200
|
|
|
@@ -290,6 +310,18 @@ class ProviderArgs:
|
|
|
290
310
|
def tenant_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
|
291
311
|
pulumi.set(self, "tenant_id", value)
|
|
292
312
|
|
|
313
|
+
@property
|
|
314
|
+
@pulumi.getter(name="useDefaultAzureCredential")
|
|
315
|
+
def use_default_azure_credential(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
316
|
+
"""
|
|
317
|
+
Use the default credential chain of the Azure SDK (see https://learn.microsoft.com/en-us/azure/developer/go/sdk/authentication/credential-chains#defaultazurecredential-overview).
|
|
318
|
+
"""
|
|
319
|
+
return pulumi.get(self, "use_default_azure_credential")
|
|
320
|
+
|
|
321
|
+
@use_default_azure_credential.setter
|
|
322
|
+
def use_default_azure_credential(self, value: Optional[pulumi.Input[builtins.bool]]):
|
|
323
|
+
pulumi.set(self, "use_default_azure_credential", value)
|
|
324
|
+
|
|
293
325
|
@property
|
|
294
326
|
@pulumi.getter(name="useMsi")
|
|
295
327
|
def use_msi(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
@@ -326,6 +358,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
326
358
|
client_certificate_path: Optional[pulumi.Input[builtins.str]] = None,
|
|
327
359
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
328
360
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
361
|
+
disable_instance_discovery: Optional[pulumi.Input[builtins.bool]] = None,
|
|
329
362
|
disable_pulumi_partner_id: Optional[pulumi.Input[builtins.bool]] = None,
|
|
330
363
|
environment: Optional[pulumi.Input[builtins.str]] = None,
|
|
331
364
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -337,6 +370,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
337
370
|
partner_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
338
371
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
339
372
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
373
|
+
use_default_azure_credential: Optional[pulumi.Input[builtins.bool]] = None,
|
|
340
374
|
use_msi: Optional[pulumi.Input[builtins.bool]] = None,
|
|
341
375
|
use_oidc: Optional[pulumi.Input[builtins.bool]] = None,
|
|
342
376
|
__props__=None):
|
|
@@ -350,8 +384,9 @@ class Provider(pulumi.ProviderResource):
|
|
|
350
384
|
:param pulumi.Input[builtins.str] client_certificate_path: The path to the Client Certificate associated with the Service Principal for use when authenticating as a Service Principal using a Client Certificate.
|
|
351
385
|
:param pulumi.Input[builtins.str] client_id: The Client ID which should be used.
|
|
352
386
|
:param pulumi.Input[builtins.str] client_secret: The Client Secret which should be used. For use When authenticating as a Service Principal using a Client Secret.
|
|
387
|
+
:param pulumi.Input[builtins.bool] disable_instance_discovery: Determines whether or not instance discovery is performed when attempting to authenticate. Setting this to true will completely disable both instance discovery and authority validation. This functionality is intended for use in scenarios where the metadata endpoint cannot be reached, such as in private clouds or Azure Stack.
|
|
353
388
|
:param pulumi.Input[builtins.bool] disable_pulumi_partner_id: This will disable the Pulumi Partner ID which is used if a custom `partnerId` isn't specified.
|
|
354
|
-
:param pulumi.Input[builtins.str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public.
|
|
389
|
+
:param pulumi.Input[builtins.str] environment: The Cloud Environment which should be used. Possible values are public, usgovernment, and china. Defaults to public. Not used when metadataHost is specified or when ARM_METADATA_HOSTNAME is set.
|
|
355
390
|
:param pulumi.Input[builtins.str] location: The location to use. ResourceGroups will consult this property for a default location, if one was not supplied explicitly when defining the resource.
|
|
356
391
|
:param pulumi.Input[builtins.str] metadata_host: The Hostname of the Azure Metadata Service.
|
|
357
392
|
:param pulumi.Input[builtins.str] msi_endpoint: The path to a custom endpoint for Managed Service Identity - in most circumstances this should be detected automatically.
|
|
@@ -361,6 +396,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
361
396
|
:param pulumi.Input[builtins.str] partner_id: A GUID/UUID that is registered with Microsoft to facilitate partner resource usage attribution.
|
|
362
397
|
:param pulumi.Input[builtins.str] subscription_id: The Subscription ID which should be used.
|
|
363
398
|
:param pulumi.Input[builtins.str] tenant_id: The Tenant ID which should be used.
|
|
399
|
+
:param pulumi.Input[builtins.bool] use_default_azure_credential: Use the default credential chain of the Azure SDK (see https://learn.microsoft.com/en-us/azure/developer/go/sdk/authentication/credential-chains#defaultazurecredential-overview).
|
|
364
400
|
:param pulumi.Input[builtins.bool] use_msi: Allow Managed Service Identity to be used for Authentication.
|
|
365
401
|
:param pulumi.Input[builtins.bool] use_oidc: Allow OpenID Connect (OIDC) to be used for Authentication.
|
|
366
402
|
"""
|
|
@@ -393,6 +429,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
393
429
|
client_certificate_path: Optional[pulumi.Input[builtins.str]] = None,
|
|
394
430
|
client_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
395
431
|
client_secret: Optional[pulumi.Input[builtins.str]] = None,
|
|
432
|
+
disable_instance_discovery: Optional[pulumi.Input[builtins.bool]] = None,
|
|
396
433
|
disable_pulumi_partner_id: Optional[pulumi.Input[builtins.bool]] = None,
|
|
397
434
|
environment: Optional[pulumi.Input[builtins.str]] = None,
|
|
398
435
|
location: Optional[pulumi.Input[builtins.str]] = None,
|
|
@@ -404,6 +441,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
404
441
|
partner_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
405
442
|
subscription_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
406
443
|
tenant_id: Optional[pulumi.Input[builtins.str]] = None,
|
|
444
|
+
use_default_azure_credential: Optional[pulumi.Input[builtins.bool]] = None,
|
|
407
445
|
use_msi: Optional[pulumi.Input[builtins.bool]] = None,
|
|
408
446
|
use_oidc: Optional[pulumi.Input[builtins.bool]] = None,
|
|
409
447
|
__props__=None):
|
|
@@ -420,6 +458,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
420
458
|
__props__.__dict__["client_certificate_path"] = client_certificate_path
|
|
421
459
|
__props__.__dict__["client_id"] = None if client_id is None else pulumi.Output.secret(client_id)
|
|
422
460
|
__props__.__dict__["client_secret"] = None if client_secret is None else pulumi.Output.secret(client_secret)
|
|
461
|
+
__props__.__dict__["disable_instance_discovery"] = pulumi.Output.from_input(disable_instance_discovery).apply(pulumi.runtime.to_json) if disable_instance_discovery is not None else None
|
|
423
462
|
__props__.__dict__["disable_pulumi_partner_id"] = pulumi.Output.from_input(disable_pulumi_partner_id).apply(pulumi.runtime.to_json) if disable_pulumi_partner_id is not None else None
|
|
424
463
|
if environment is None:
|
|
425
464
|
environment = 'public'
|
|
@@ -433,6 +472,7 @@ class Provider(pulumi.ProviderResource):
|
|
|
433
472
|
__props__.__dict__["partner_id"] = partner_id
|
|
434
473
|
__props__.__dict__["subscription_id"] = subscription_id
|
|
435
474
|
__props__.__dict__["tenant_id"] = tenant_id
|
|
475
|
+
__props__.__dict__["use_default_azure_credential"] = pulumi.Output.from_input(use_default_azure_credential).apply(pulumi.runtime.to_json) if use_default_azure_credential is not None else None
|
|
436
476
|
__props__.__dict__["use_msi"] = pulumi.Output.from_input(use_msi).apply(pulumi.runtime.to_json) if use_msi is not None else None
|
|
437
477
|
__props__.__dict__["use_oidc"] = pulumi.Output.from_input(use_oidc).apply(pulumi.runtime.to_json) if use_oidc is not None else None
|
|
438
478
|
super(Provider, __self__).__init__(
|
|
@@ -7,11 +7,13 @@ import pulumi
|
|
|
7
7
|
from enum import Enum
|
|
8
8
|
|
|
9
9
|
__all__ = [
|
|
10
|
+
'AccessKeysAuthentication',
|
|
10
11
|
'AofFrequency',
|
|
11
12
|
'ClusteringPolicy',
|
|
12
13
|
'CmkIdentityType',
|
|
13
14
|
'DeferUpgradeSetting',
|
|
14
15
|
'EvictionPolicy',
|
|
16
|
+
'HighAvailability',
|
|
15
17
|
'ManagedServiceIdentityType',
|
|
16
18
|
'PrivateEndpointServiceConnectionStatus',
|
|
17
19
|
'Protocol',
|
|
@@ -21,10 +23,19 @@ __all__ = [
|
|
|
21
23
|
]
|
|
22
24
|
|
|
23
25
|
|
|
26
|
+
@pulumi.type_token("azure-native:redisenterprise:AccessKeysAuthentication")
|
|
27
|
+
class AccessKeysAuthentication(builtins.str, Enum):
|
|
28
|
+
"""
|
|
29
|
+
This property can be Enabled/Disabled to allow or deny access with the current access keys. Can be updated even after database is created.
|
|
30
|
+
"""
|
|
31
|
+
DISABLED = "Disabled"
|
|
32
|
+
ENABLED = "Enabled"
|
|
33
|
+
|
|
34
|
+
|
|
24
35
|
@pulumi.type_token("azure-native:redisenterprise:AofFrequency")
|
|
25
36
|
class AofFrequency(builtins.str, Enum):
|
|
26
37
|
"""
|
|
27
|
-
Sets the frequency at which data is written to disk.
|
|
38
|
+
Sets the frequency at which data is written to disk. Defaults to '1s', meaning 'every second'. Note that the 'always' setting is deprecated, because of its performance impact.
|
|
28
39
|
"""
|
|
29
40
|
AOF_FREQUENCY_1S = "1s"
|
|
30
41
|
ALWAYS = "always"
|
|
@@ -33,10 +44,20 @@ class AofFrequency(builtins.str, Enum):
|
|
|
33
44
|
@pulumi.type_token("azure-native:redisenterprise:ClusteringPolicy")
|
|
34
45
|
class ClusteringPolicy(builtins.str, Enum):
|
|
35
46
|
"""
|
|
36
|
-
Clustering policy - default is OSSCluster.
|
|
47
|
+
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.
|
|
37
48
|
"""
|
|
38
49
|
ENTERPRISE_CLUSTER = "EnterpriseCluster"
|
|
50
|
+
"""
|
|
51
|
+
Enterprise clustering policy uses only the classic redis protocol, which does not support redis cluster commands.
|
|
52
|
+
"""
|
|
39
53
|
OSS_CLUSTER = "OSSCluster"
|
|
54
|
+
"""
|
|
55
|
+
OSS clustering policy follows the redis cluster specification, and requires all clients to support redis clustering.
|
|
56
|
+
"""
|
|
57
|
+
NO_CLUSTER = "NoCluster"
|
|
58
|
+
"""
|
|
59
|
+
The NoCluster policy is used for non-clustered Redis instances that do not require clustering features.
|
|
60
|
+
"""
|
|
40
61
|
|
|
41
62
|
|
|
42
63
|
@pulumi.type_token("azure-native:redisenterprise:CmkIdentityType")
|
|
@@ -51,7 +72,7 @@ class CmkIdentityType(builtins.str, Enum):
|
|
|
51
72
|
@pulumi.type_token("azure-native:redisenterprise:DeferUpgradeSetting")
|
|
52
73
|
class DeferUpgradeSetting(builtins.str, Enum):
|
|
53
74
|
"""
|
|
54
|
-
Option to defer upgrade when newest version is released - default is NotDeferred. Learn more:
|
|
75
|
+
Option to defer upgrade when newest version is released - default is NotDeferred. Learn more: https://aka.ms/redisversionupgrade
|
|
55
76
|
"""
|
|
56
77
|
DEFERRED = "Deferred"
|
|
57
78
|
NOT_DEFERRED = "NotDeferred"
|
|
@@ -72,6 +93,15 @@ class EvictionPolicy(builtins.str, Enum):
|
|
|
72
93
|
NO_EVICTION = "NoEviction"
|
|
73
94
|
|
|
74
95
|
|
|
96
|
+
@pulumi.type_token("azure-native:redisenterprise:HighAvailability")
|
|
97
|
+
class HighAvailability(builtins.str, Enum):
|
|
98
|
+
"""
|
|
99
|
+
Enabled by default. If highAvailability is disabled, the data set is not replicated. This affects the availability SLA, and increases the risk of data loss.
|
|
100
|
+
"""
|
|
101
|
+
ENABLED = "Enabled"
|
|
102
|
+
DISABLED = "Disabled"
|
|
103
|
+
|
|
104
|
+
|
|
75
105
|
@pulumi.type_token("azure-native:redisenterprise:ManagedServiceIdentityType")
|
|
76
106
|
class ManagedServiceIdentityType(builtins.str, Enum):
|
|
77
107
|
"""
|
|
@@ -115,22 +145,69 @@ class RdbFrequency(builtins.str, Enum):
|
|
|
115
145
|
@pulumi.type_token("azure-native:redisenterprise:SkuName")
|
|
116
146
|
class SkuName(builtins.str, Enum):
|
|
117
147
|
"""
|
|
118
|
-
The
|
|
148
|
+
The level of Redis Enterprise cluster to deploy. Possible values: ('Balanced_B5', 'MemoryOptimized_M10', 'ComputeOptimized_X5', etc.). For more information on SKUs see the latest pricing documentation. Note that additional SKUs may become supported in the future.
|
|
119
149
|
"""
|
|
150
|
+
ENTERPRISE_E1 = "Enterprise_E1"
|
|
120
151
|
ENTERPRISE_E5 = "Enterprise_E5"
|
|
121
152
|
ENTERPRISE_E10 = "Enterprise_E10"
|
|
122
153
|
ENTERPRISE_E20 = "Enterprise_E20"
|
|
123
154
|
ENTERPRISE_E50 = "Enterprise_E50"
|
|
124
155
|
ENTERPRISE_E100 = "Enterprise_E100"
|
|
156
|
+
ENTERPRISE_E200 = "Enterprise_E200"
|
|
157
|
+
ENTERPRISE_E400 = "Enterprise_E400"
|
|
125
158
|
ENTERPRISE_FLASH_F300 = "EnterpriseFlash_F300"
|
|
126
159
|
ENTERPRISE_FLASH_F700 = "EnterpriseFlash_F700"
|
|
127
160
|
ENTERPRISE_FLASH_F1500 = "EnterpriseFlash_F1500"
|
|
161
|
+
BALANCED_B0 = "Balanced_B0"
|
|
162
|
+
BALANCED_B1 = "Balanced_B1"
|
|
163
|
+
BALANCED_B3 = "Balanced_B3"
|
|
164
|
+
BALANCED_B5 = "Balanced_B5"
|
|
165
|
+
BALANCED_B10 = "Balanced_B10"
|
|
166
|
+
BALANCED_B20 = "Balanced_B20"
|
|
167
|
+
BALANCED_B50 = "Balanced_B50"
|
|
168
|
+
BALANCED_B100 = "Balanced_B100"
|
|
169
|
+
BALANCED_B150 = "Balanced_B150"
|
|
170
|
+
BALANCED_B250 = "Balanced_B250"
|
|
171
|
+
BALANCED_B350 = "Balanced_B350"
|
|
172
|
+
BALANCED_B500 = "Balanced_B500"
|
|
173
|
+
BALANCED_B700 = "Balanced_B700"
|
|
174
|
+
BALANCED_B1000 = "Balanced_B1000"
|
|
175
|
+
MEMORY_OPTIMIZED_M10 = "MemoryOptimized_M10"
|
|
176
|
+
MEMORY_OPTIMIZED_M20 = "MemoryOptimized_M20"
|
|
177
|
+
MEMORY_OPTIMIZED_M50 = "MemoryOptimized_M50"
|
|
178
|
+
MEMORY_OPTIMIZED_M100 = "MemoryOptimized_M100"
|
|
179
|
+
MEMORY_OPTIMIZED_M150 = "MemoryOptimized_M150"
|
|
180
|
+
MEMORY_OPTIMIZED_M250 = "MemoryOptimized_M250"
|
|
181
|
+
MEMORY_OPTIMIZED_M350 = "MemoryOptimized_M350"
|
|
182
|
+
MEMORY_OPTIMIZED_M500 = "MemoryOptimized_M500"
|
|
183
|
+
MEMORY_OPTIMIZED_M700 = "MemoryOptimized_M700"
|
|
184
|
+
MEMORY_OPTIMIZED_M1000 = "MemoryOptimized_M1000"
|
|
185
|
+
MEMORY_OPTIMIZED_M1500 = "MemoryOptimized_M1500"
|
|
186
|
+
MEMORY_OPTIMIZED_M2000 = "MemoryOptimized_M2000"
|
|
187
|
+
COMPUTE_OPTIMIZED_X3 = "ComputeOptimized_X3"
|
|
188
|
+
COMPUTE_OPTIMIZED_X5 = "ComputeOptimized_X5"
|
|
189
|
+
COMPUTE_OPTIMIZED_X10 = "ComputeOptimized_X10"
|
|
190
|
+
COMPUTE_OPTIMIZED_X20 = "ComputeOptimized_X20"
|
|
191
|
+
COMPUTE_OPTIMIZED_X50 = "ComputeOptimized_X50"
|
|
192
|
+
COMPUTE_OPTIMIZED_X100 = "ComputeOptimized_X100"
|
|
193
|
+
COMPUTE_OPTIMIZED_X150 = "ComputeOptimized_X150"
|
|
194
|
+
COMPUTE_OPTIMIZED_X250 = "ComputeOptimized_X250"
|
|
195
|
+
COMPUTE_OPTIMIZED_X350 = "ComputeOptimized_X350"
|
|
196
|
+
COMPUTE_OPTIMIZED_X500 = "ComputeOptimized_X500"
|
|
197
|
+
COMPUTE_OPTIMIZED_X700 = "ComputeOptimized_X700"
|
|
198
|
+
FLASH_OPTIMIZED_A250 = "FlashOptimized_A250"
|
|
199
|
+
FLASH_OPTIMIZED_A500 = "FlashOptimized_A500"
|
|
200
|
+
FLASH_OPTIMIZED_A700 = "FlashOptimized_A700"
|
|
201
|
+
FLASH_OPTIMIZED_A1000 = "FlashOptimized_A1000"
|
|
202
|
+
FLASH_OPTIMIZED_A1500 = "FlashOptimized_A1500"
|
|
203
|
+
FLASH_OPTIMIZED_A2000 = "FlashOptimized_A2000"
|
|
204
|
+
FLASH_OPTIMIZED_A4500 = "FlashOptimized_A4500"
|
|
128
205
|
|
|
129
206
|
|
|
130
207
|
@pulumi.type_token("azure-native:redisenterprise:TlsVersion")
|
|
131
208
|
class TlsVersion(builtins.str, Enum):
|
|
132
209
|
"""
|
|
133
|
-
The minimum TLS version for the cluster to support, e.g. '1.2'
|
|
210
|
+
The minimum TLS version for the cluster to support, e.g. '1.2'. Newer versions can be added in the future. Note that TLS 1.0 and TLS 1.1 are now completely obsolete -- you cannot use them. They are mentioned only for the sake of consistency with old API versions.
|
|
134
211
|
"""
|
|
135
212
|
TLS_VERSION_1_0 = "1.0"
|
|
136
213
|
TLS_VERSION_1_1 = "1.1"
|
|
@@ -432,19 +432,19 @@ class ModuleArgs:
|
|
|
432
432
|
if not MYPY:
|
|
433
433
|
class PersistenceArgsDict(TypedDict):
|
|
434
434
|
"""
|
|
435
|
-
Persistence-related configuration for the
|
|
435
|
+
Persistence-related configuration for the Redis Enterprise database
|
|
436
436
|
"""
|
|
437
437
|
aof_enabled: NotRequired[pulumi.Input[builtins.bool]]
|
|
438
438
|
"""
|
|
439
|
-
Sets whether AOF is enabled.
|
|
439
|
+
Sets whether AOF is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
440
440
|
"""
|
|
441
441
|
aof_frequency: NotRequired[pulumi.Input[Union[builtins.str, 'AofFrequency']]]
|
|
442
442
|
"""
|
|
443
|
-
Sets the frequency at which data is written to disk.
|
|
443
|
+
Sets the frequency at which data is written to disk. Defaults to '1s', meaning 'every second'. Note that the 'always' setting is deprecated, because of its performance impact.
|
|
444
444
|
"""
|
|
445
445
|
rdb_enabled: NotRequired[pulumi.Input[builtins.bool]]
|
|
446
446
|
"""
|
|
447
|
-
Sets whether RDB is enabled.
|
|
447
|
+
Sets whether RDB is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
448
448
|
"""
|
|
449
449
|
rdb_frequency: NotRequired[pulumi.Input[Union[builtins.str, 'RdbFrequency']]]
|
|
450
450
|
"""
|
|
@@ -461,10 +461,10 @@ class PersistenceArgs:
|
|
|
461
461
|
rdb_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
|
462
462
|
rdb_frequency: Optional[pulumi.Input[Union[builtins.str, 'RdbFrequency']]] = None):
|
|
463
463
|
"""
|
|
464
|
-
Persistence-related configuration for the
|
|
465
|
-
:param pulumi.Input[builtins.bool] aof_enabled: Sets whether AOF is enabled.
|
|
466
|
-
:param pulumi.Input[Union[builtins.str, 'AofFrequency']] aof_frequency: Sets the frequency at which data is written to disk.
|
|
467
|
-
:param pulumi.Input[builtins.bool] rdb_enabled: Sets whether RDB is enabled.
|
|
464
|
+
Persistence-related configuration for the Redis Enterprise database
|
|
465
|
+
:param pulumi.Input[builtins.bool] aof_enabled: Sets whether AOF is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
466
|
+
:param pulumi.Input[Union[builtins.str, 'AofFrequency']] aof_frequency: Sets the frequency at which data is written to disk. Defaults to '1s', meaning 'every second'. Note that the 'always' setting is deprecated, because of its performance impact.
|
|
467
|
+
:param pulumi.Input[builtins.bool] rdb_enabled: Sets whether RDB is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
468
468
|
:param pulumi.Input[Union[builtins.str, 'RdbFrequency']] rdb_frequency: Sets the frequency at which a snapshot of the database is created.
|
|
469
469
|
"""
|
|
470
470
|
if aof_enabled is not None:
|
|
@@ -480,7 +480,7 @@ class PersistenceArgs:
|
|
|
480
480
|
@pulumi.getter(name="aofEnabled")
|
|
481
481
|
def aof_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
482
482
|
"""
|
|
483
|
-
Sets whether AOF is enabled.
|
|
483
|
+
Sets whether AOF is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
484
484
|
"""
|
|
485
485
|
return pulumi.get(self, "aof_enabled")
|
|
486
486
|
|
|
@@ -492,7 +492,7 @@ class PersistenceArgs:
|
|
|
492
492
|
@pulumi.getter(name="aofFrequency")
|
|
493
493
|
def aof_frequency(self) -> Optional[pulumi.Input[Union[builtins.str, 'AofFrequency']]]:
|
|
494
494
|
"""
|
|
495
|
-
Sets the frequency at which data is written to disk.
|
|
495
|
+
Sets the frequency at which data is written to disk. Defaults to '1s', meaning 'every second'. Note that the 'always' setting is deprecated, because of its performance impact.
|
|
496
496
|
"""
|
|
497
497
|
return pulumi.get(self, "aof_frequency")
|
|
498
498
|
|
|
@@ -504,7 +504,7 @@ class PersistenceArgs:
|
|
|
504
504
|
@pulumi.getter(name="rdbEnabled")
|
|
505
505
|
def rdb_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
|
506
506
|
"""
|
|
507
|
-
Sets whether RDB is enabled.
|
|
507
|
+
Sets whether RDB is enabled. Note that at most one of AOF or RDB persistence may be enabled.
|
|
508
508
|
"""
|
|
509
509
|
return pulumi.get(self, "rdb_enabled")
|
|
510
510
|
|
|
@@ -604,15 +604,15 @@ class PrivateLinkServiceConnectionStateArgs:
|
|
|
604
604
|
if not MYPY:
|
|
605
605
|
class SkuArgsDict(TypedDict):
|
|
606
606
|
"""
|
|
607
|
-
SKU parameters supplied to the create
|
|
607
|
+
SKU parameters supplied to the create Redis Enterprise cluster operation.
|
|
608
608
|
"""
|
|
609
609
|
name: pulumi.Input[Union[builtins.str, 'SkuName']]
|
|
610
610
|
"""
|
|
611
|
-
The
|
|
611
|
+
The level of Redis Enterprise cluster to deploy. Possible values: ('Balanced_B5', 'MemoryOptimized_M10', 'ComputeOptimized_X5', etc.). For more information on SKUs see the latest pricing documentation. Note that additional SKUs may become supported in the future.
|
|
612
612
|
"""
|
|
613
613
|
capacity: NotRequired[pulumi.Input[builtins.int]]
|
|
614
614
|
"""
|
|
615
|
-
|
|
615
|
+
This property is only used with Enterprise and EnterpriseFlash SKUs. Determines the size of the cluster. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for EnterpriseFlash SKUs.
|
|
616
616
|
"""
|
|
617
617
|
elif False:
|
|
618
618
|
SkuArgsDict: TypeAlias = Mapping[str, Any]
|
|
@@ -623,9 +623,9 @@ class SkuArgs:
|
|
|
623
623
|
name: pulumi.Input[Union[builtins.str, 'SkuName']],
|
|
624
624
|
capacity: Optional[pulumi.Input[builtins.int]] = None):
|
|
625
625
|
"""
|
|
626
|
-
SKU parameters supplied to the create
|
|
627
|
-
:param pulumi.Input[Union[builtins.str, 'SkuName']] name: The
|
|
628
|
-
:param pulumi.Input[builtins.int] capacity:
|
|
626
|
+
SKU parameters supplied to the create Redis Enterprise cluster operation.
|
|
627
|
+
:param pulumi.Input[Union[builtins.str, 'SkuName']] name: The level of Redis Enterprise cluster to deploy. Possible values: ('Balanced_B5', 'MemoryOptimized_M10', 'ComputeOptimized_X5', etc.). For more information on SKUs see the latest pricing documentation. Note that additional SKUs may become supported in the future.
|
|
628
|
+
:param pulumi.Input[builtins.int] capacity: This property is only used with Enterprise and EnterpriseFlash SKUs. Determines the size of the cluster. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for EnterpriseFlash SKUs.
|
|
629
629
|
"""
|
|
630
630
|
pulumi.set(__self__, "name", name)
|
|
631
631
|
if capacity is not None:
|
|
@@ -635,7 +635,7 @@ class SkuArgs:
|
|
|
635
635
|
@pulumi.getter
|
|
636
636
|
def name(self) -> pulumi.Input[Union[builtins.str, 'SkuName']]:
|
|
637
637
|
"""
|
|
638
|
-
The
|
|
638
|
+
The level of Redis Enterprise cluster to deploy. Possible values: ('Balanced_B5', 'MemoryOptimized_M10', 'ComputeOptimized_X5', etc.). For more information on SKUs see the latest pricing documentation. Note that additional SKUs may become supported in the future.
|
|
639
639
|
"""
|
|
640
640
|
return pulumi.get(self, "name")
|
|
641
641
|
|
|
@@ -647,7 +647,7 @@ class SkuArgs:
|
|
|
647
647
|
@pulumi.getter
|
|
648
648
|
def capacity(self) -> Optional[pulumi.Input[builtins.int]]:
|
|
649
649
|
"""
|
|
650
|
-
|
|
650
|
+
This property is only used with Enterprise and EnterpriseFlash SKUs. Determines the size of the cluster. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for EnterpriseFlash SKUs.
|
|
651
651
|
"""
|
|
652
652
|
return pulumi.get(self, "capacity")
|
|
653
653
|
|
|
@@ -31,7 +31,7 @@ class AccessPolicyAssignmentArgs:
|
|
|
31
31
|
"""
|
|
32
32
|
The set of arguments for constructing a AccessPolicyAssignment resource.
|
|
33
33
|
:param pulumi.Input[builtins.str] access_policy_name: Name of access policy under specific access policy assignment. Only "default" policy is supported for now.
|
|
34
|
-
:param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster.
|
|
34
|
+
: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
|
|
35
35
|
:param pulumi.Input[builtins.str] database_name: The name of the Redis Enterprise database.
|
|
36
36
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
37
37
|
:param pulumi.Input['AccessPolicyAssignmentPropertiesUserArgs'] user: The user associated with the access policy.
|
|
@@ -61,7 +61,7 @@ class AccessPolicyAssignmentArgs:
|
|
|
61
61
|
@pulumi.getter(name="clusterName")
|
|
62
62
|
def cluster_name(self) -> pulumi.Input[builtins.str]:
|
|
63
63
|
"""
|
|
64
|
-
The name of the Redis Enterprise cluster.
|
|
64
|
+
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
|
|
65
65
|
"""
|
|
66
66
|
return pulumi.get(self, "cluster_name")
|
|
67
67
|
|
|
@@ -134,15 +134,15 @@ class AccessPolicyAssignment(pulumi.CustomResource):
|
|
|
134
134
|
"""
|
|
135
135
|
Describes the access policy assignment of Redis Enterprise database
|
|
136
136
|
|
|
137
|
-
Uses Azure REST API version
|
|
137
|
+
Uses Azure REST API version 2025-05-01-preview.
|
|
138
138
|
|
|
139
|
-
Other available API versions:
|
|
139
|
+
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.
|
|
140
140
|
|
|
141
141
|
:param str resource_name: The name of the resource.
|
|
142
142
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
143
143
|
:param pulumi.Input[builtins.str] access_policy_assignment_name: The name of the Redis Enterprise database access policy assignment.
|
|
144
144
|
:param pulumi.Input[builtins.str] access_policy_name: Name of access policy under specific access policy assignment. Only "default" policy is supported for now.
|
|
145
|
-
:param pulumi.Input[builtins.str] cluster_name: The name of the Redis Enterprise cluster.
|
|
145
|
+
: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
|
|
146
146
|
:param pulumi.Input[builtins.str] database_name: The name of the Redis Enterprise database.
|
|
147
147
|
:param pulumi.Input[builtins.str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
148
148
|
:param pulumi.Input[Union['AccessPolicyAssignmentPropertiesUserArgs', 'AccessPolicyAssignmentPropertiesUserArgsDict']] user: The user associated with the access policy.
|
|
@@ -156,9 +156,9 @@ class AccessPolicyAssignment(pulumi.CustomResource):
|
|
|
156
156
|
"""
|
|
157
157
|
Describes the access policy assignment of Redis Enterprise database
|
|
158
158
|
|
|
159
|
-
Uses Azure REST API version
|
|
159
|
+
Uses Azure REST API version 2025-05-01-preview.
|
|
160
160
|
|
|
161
|
-
Other available API versions:
|
|
161
|
+
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.
|
|
162
162
|
|
|
163
163
|
:param str resource_name: The name of the resource.
|
|
164
164
|
:param AccessPolicyAssignmentArgs args: The arguments to use to populate this resource's properties.
|