1. Packages
  2. Azure Native
  3. API Docs
  4. redisenterprise
  5. RedisEnterprise
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi

    Describes the Redis Enterprise cluster

    Uses Azure REST API version 2025-05-01-preview.

    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, 2025-07-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 for details.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native:redisenterprise:RedisEnterprise cache1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redisEnterprise/{clusterName} 
    

    Create RedisEnterprise Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new RedisEnterprise(name: string, args: RedisEnterpriseArgs, opts?: CustomResourceOptions);
    @overload
    def RedisEnterprise(resource_name: str,
                        args: RedisEnterpriseArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def RedisEnterprise(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        sku: Optional[SkuArgs] = None,
                        cluster_name: Optional[str] = None,
                        encryption: Optional[ClusterPropertiesEncryptionArgs] = None,
                        high_availability: Optional[Union[str, HighAvailability]] = None,
                        identity: Optional[ManagedServiceIdentityArgs] = None,
                        location: Optional[str] = None,
                        minimum_tls_version: Optional[Union[str, TlsVersion]] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        zones: Optional[Sequence[str]] = None)
    func NewRedisEnterprise(ctx *Context, name string, args RedisEnterpriseArgs, opts ...ResourceOption) (*RedisEnterprise, error)
    public RedisEnterprise(string name, RedisEnterpriseArgs args, CustomResourceOptions? opts = null)
    public RedisEnterprise(String name, RedisEnterpriseArgs args)
    public RedisEnterprise(String name, RedisEnterpriseArgs args, CustomResourceOptions options)
    
    type: azure-native:redisenterprise:RedisEnterprise
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RedisEnterpriseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args RedisEnterpriseArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args RedisEnterpriseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RedisEnterpriseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RedisEnterpriseArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var redisEnterpriseResource = new AzureNative.RedisEnterprise.RedisEnterprise("redisEnterpriseResource", new()
    {
        ResourceGroupName = "string",
        Sku = new AzureNative.RedisEnterprise.Inputs.SkuArgs
        {
            Name = "string",
            Capacity = 0,
        },
        ClusterName = "string",
        Encryption = new AzureNative.RedisEnterprise.Inputs.ClusterPropertiesEncryptionArgs
        {
            CustomerManagedKeyEncryption = new AzureNative.RedisEnterprise.Inputs.ClusterPropertiesCustomerManagedKeyEncryptionArgs
            {
                KeyEncryptionKeyIdentity = new AzureNative.RedisEnterprise.Inputs.ClusterPropertiesKeyEncryptionKeyIdentityArgs
                {
                    IdentityType = "string",
                    UserAssignedIdentityResourceId = "string",
                },
                KeyEncryptionKeyUrl = "string",
            },
        },
        HighAvailability = "string",
        Identity = new AzureNative.RedisEnterprise.Inputs.ManagedServiceIdentityArgs
        {
            Type = "string",
            UserAssignedIdentities = new[]
            {
                "string",
            },
        },
        Location = "string",
        MinimumTlsVersion = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := redisenterprise.NewRedisEnterprise(ctx, "redisEnterpriseResource", &redisenterprise.RedisEnterpriseArgs{
    	ResourceGroupName: pulumi.String("string"),
    	Sku: &redisenterprise.SkuArgs{
    		Name:     pulumi.String("string"),
    		Capacity: pulumi.Int(0),
    	},
    	ClusterName: pulumi.String("string"),
    	Encryption: &redisenterprise.ClusterPropertiesEncryptionArgs{
    		CustomerManagedKeyEncryption: &redisenterprise.ClusterPropertiesCustomerManagedKeyEncryptionArgs{
    			KeyEncryptionKeyIdentity: &redisenterprise.ClusterPropertiesKeyEncryptionKeyIdentityArgs{
    				IdentityType:                   pulumi.String("string"),
    				UserAssignedIdentityResourceId: pulumi.String("string"),
    			},
    			KeyEncryptionKeyUrl: pulumi.String("string"),
    		},
    	},
    	HighAvailability: pulumi.String("string"),
    	Identity: &redisenterprise.ManagedServiceIdentityArgs{
    		Type: pulumi.String("string"),
    		UserAssignedIdentities: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Location:          pulumi.String("string"),
    	MinimumTlsVersion: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Zones: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    })
    
    var redisEnterpriseResource = new RedisEnterprise("redisEnterpriseResource", RedisEnterpriseArgs.builder()
        .resourceGroupName("string")
        .sku(SkuArgs.builder()
            .name("string")
            .capacity(0)
            .build())
        .clusterName("string")
        .encryption(ClusterPropertiesEncryptionArgs.builder()
            .customerManagedKeyEncryption(ClusterPropertiesCustomerManagedKeyEncryptionArgs.builder()
                .keyEncryptionKeyIdentity(ClusterPropertiesKeyEncryptionKeyIdentityArgs.builder()
                    .identityType("string")
                    .userAssignedIdentityResourceId("string")
                    .build())
                .keyEncryptionKeyUrl("string")
                .build())
            .build())
        .highAvailability("string")
        .identity(ManagedServiceIdentityArgs.builder()
            .type("string")
            .userAssignedIdentities("string")
            .build())
        .location("string")
        .minimumTlsVersion("string")
        .tags(Map.of("string", "string"))
        .zones("string")
        .build());
    
    redis_enterprise_resource = azure_native.redisenterprise.RedisEnterprise("redisEnterpriseResource",
        resource_group_name="string",
        sku={
            "name": "string",
            "capacity": 0,
        },
        cluster_name="string",
        encryption={
            "customer_managed_key_encryption": {
                "key_encryption_key_identity": {
                    "identity_type": "string",
                    "user_assigned_identity_resource_id": "string",
                },
                "key_encryption_key_url": "string",
            },
        },
        high_availability="string",
        identity={
            "type": "string",
            "user_assigned_identities": ["string"],
        },
        location="string",
        minimum_tls_version="string",
        tags={
            "string": "string",
        },
        zones=["string"])
    
    const redisEnterpriseResource = new azure_native.redisenterprise.RedisEnterprise("redisEnterpriseResource", {
        resourceGroupName: "string",
        sku: {
            name: "string",
            capacity: 0,
        },
        clusterName: "string",
        encryption: {
            customerManagedKeyEncryption: {
                keyEncryptionKeyIdentity: {
                    identityType: "string",
                    userAssignedIdentityResourceId: "string",
                },
                keyEncryptionKeyUrl: "string",
            },
        },
        highAvailability: "string",
        identity: {
            type: "string",
            userAssignedIdentities: ["string"],
        },
        location: "string",
        minimumTlsVersion: "string",
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure-native:redisenterprise:RedisEnterprise
    properties:
        clusterName: string
        encryption:
            customerManagedKeyEncryption:
                keyEncryptionKeyIdentity:
                    identityType: string
                    userAssignedIdentityResourceId: string
                keyEncryptionKeyUrl: string
        highAvailability: string
        identity:
            type: string
            userAssignedIdentities:
                - string
        location: string
        minimumTlsVersion: string
        resourceGroupName: string
        sku:
            capacity: 0
            name: string
        tags:
            string: string
        zones:
            - string
    

    RedisEnterprise Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The RedisEnterprise resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.RedisEnterprise.Inputs.Sku
    The SKU to create, which affects price, performance, and features.
    ClusterName string
    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
    Encryption Pulumi.AzureNative.RedisEnterprise.Inputs.ClusterPropertiesEncryption
    Encryption-at-rest configuration for the cluster.
    HighAvailability string | Pulumi.AzureNative.RedisEnterprise.HighAvailability
    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.
    Identity Pulumi.AzureNative.RedisEnterprise.Inputs.ManagedServiceIdentity
    The identity of the resource.
    Location string
    The geo-location where the resource lives
    MinimumTlsVersion string | Pulumi.AzureNative.RedisEnterprise.TlsVersion
    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.
    Tags Dictionary<string, string>
    Resource tags.
    Zones List<string>
    The Availability Zones where this cluster will be deployed.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku SkuArgs
    The SKU to create, which affects price, performance, and features.
    ClusterName string
    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
    Encryption ClusterPropertiesEncryptionArgs
    Encryption-at-rest configuration for the cluster.
    HighAvailability string | HighAvailability
    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.
    Identity ManagedServiceIdentityArgs
    The identity of the resource.
    Location string
    The geo-location where the resource lives
    MinimumTlsVersion string | TlsVersion
    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.
    Tags map[string]string
    Resource tags.
    Zones []string
    The Availability Zones where this cluster will be deployed.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU to create, which affects price, performance, and features.
    clusterName String
    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
    encryption ClusterPropertiesEncryption
    Encryption-at-rest configuration for the cluster.
    highAvailability String | HighAvailability
    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.
    identity ManagedServiceIdentity
    The identity of the resource.
    location String
    The geo-location where the resource lives
    minimumTlsVersion String | TlsVersion
    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.
    tags Map<String,String>
    Resource tags.
    zones List<String>
    The Availability Zones where this cluster will be deployed.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku Sku
    The SKU to create, which affects price, performance, and features.
    clusterName string
    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
    encryption ClusterPropertiesEncryption
    Encryption-at-rest configuration for the cluster.
    highAvailability string | HighAvailability
    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.
    identity ManagedServiceIdentity
    The identity of the resource.
    location string
    The geo-location where the resource lives
    minimumTlsVersion string | TlsVersion
    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.
    tags {[key: string]: string}
    Resource tags.
    zones string[]
    The Availability Zones where this cluster will be deployed.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku SkuArgs
    The SKU to create, which affects price, performance, and features.
    cluster_name str
    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
    encryption ClusterPropertiesEncryptionArgs
    Encryption-at-rest configuration for the cluster.
    high_availability str | HighAvailability
    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.
    identity ManagedServiceIdentityArgs
    The identity of the resource.
    location str
    The geo-location where the resource lives
    minimum_tls_version str | TlsVersion
    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.
    tags Mapping[str, str]
    Resource tags.
    zones Sequence[str]
    The Availability Zones where this cluster will be deployed.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The SKU to create, which affects price, performance, and features.
    clusterName String
    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
    encryption Property Map
    Encryption-at-rest configuration for the cluster.
    highAvailability String | "Enabled" | "Disabled"
    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.
    identity Property Map
    The identity of the resource.
    location String
    The geo-location where the resource lives
    minimumTlsVersion String | "1.0" | "1.1" | "1.2"
    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.
    tags Map<String>
    Resource tags.
    zones List<String>
    The Availability Zones where this cluster will be deployed.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the RedisEnterprise resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    HostName string
    DNS name of the cluster endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Distinguishes the kind of cluster. Read-only.
    Name string
    The name of the resource
    PrivateEndpointConnections List<Pulumi.AzureNative.RedisEnterprise.Outputs.PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    ProvisioningState string
    Current provisioning status of the cluster
    RedisVersion string
    Version of redis the cluster supports, e.g. '6'
    RedundancyMode string
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    ResourceState string
    Current resource status of the cluster
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    AzureApiVersion string
    The Azure API version of the resource.
    HostName string
    DNS name of the cluster endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    Kind string
    Distinguishes the kind of cluster. Read-only.
    Name string
    The name of the resource
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    ProvisioningState string
    Current provisioning status of the cluster
    RedisVersion string
    Version of redis the cluster supports, e.g. '6'
    RedundancyMode string
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    ResourceState string
    Current resource status of the cluster
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    hostName String
    DNS name of the cluster endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Distinguishes the kind of cluster. Read-only.
    name String
    The name of the resource
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    provisioningState String
    Current provisioning status of the cluster
    redisVersion String
    Version of redis the cluster supports, e.g. '6'
    redundancyMode String
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    resourceState String
    Current resource status of the cluster
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion string
    The Azure API version of the resource.
    hostName string
    DNS name of the cluster endpoint
    id string
    The provider-assigned unique ID for this managed resource.
    kind string
    Distinguishes the kind of cluster. Read-only.
    name string
    The name of the resource
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    provisioningState string
    Current provisioning status of the cluster
    redisVersion string
    Version of redis the cluster supports, e.g. '6'
    redundancyMode string
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    resourceState string
    Current resource status of the cluster
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azure_api_version str
    The Azure API version of the resource.
    host_name str
    DNS name of the cluster endpoint
    id str
    The provider-assigned unique ID for this managed resource.
    kind str
    Distinguishes the kind of cluster. Read-only.
    name str
    The name of the resource
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    provisioning_state str
    Current provisioning status of the cluster
    redis_version str
    Version of redis the cluster supports, e.g. '6'
    redundancy_mode str
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    resource_state str
    Current resource status of the cluster
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    azureApiVersion String
    The Azure API version of the resource.
    hostName String
    DNS name of the cluster endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    kind String
    Distinguishes the kind of cluster. Read-only.
    name String
    The name of the resource
    privateEndpointConnections List<Property Map>
    List of private endpoint connections associated with the specified Redis Enterprise cluster
    provisioningState String
    Current provisioning status of the cluster
    redisVersion String
    Version of redis the cluster supports, e.g. '6'
    redundancyMode String
    Explains the current redundancy strategy of the cluster, which affects the expected SLA.
    resourceState String
    Current resource status of the cluster
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    ClusterPropertiesCustomerManagedKeyEncryption, ClusterPropertiesCustomerManagedKeyEncryptionArgs

    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    KeyEncryptionKeyIdentity Pulumi.AzureNative.RedisEnterprise.Inputs.ClusterPropertiesKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    KeyEncryptionKeyIdentity ClusterPropertiesKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity ClusterPropertiesKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity ClusterPropertiesKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    key_encryption_key_identity ClusterPropertiesKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78

    ClusterPropertiesEncryption, ClusterPropertiesEncryptionArgs

    Encryption-at-rest configuration for the cluster.
    CustomerManagedKeyEncryption Pulumi.AzureNative.RedisEnterprise.Inputs.ClusterPropertiesCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    CustomerManagedKeyEncryption ClusterPropertiesCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption ClusterPropertiesCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption ClusterPropertiesCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customer_managed_key_encryption ClusterPropertiesCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.

    ClusterPropertiesKeyEncryptionKeyIdentity, ClusterPropertiesKeyEncryptionKeyIdentityArgs

    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    IdentityType string | Pulumi.AzureNative.RedisEnterprise.CmkIdentityType
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    IdentityType string | CmkIdentityType
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType String | CmkIdentityType
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType string | CmkIdentityType
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identity_type str | CmkIdentityType
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType String | "systemAssignedIdentity" | "userAssignedIdentity"
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.

    ClusterPropertiesResponseCustomerManagedKeyEncryption, ClusterPropertiesResponseCustomerManagedKeyEncryptionArgs

    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    KeyEncryptionKeyIdentity Pulumi.AzureNative.RedisEnterprise.Inputs.ClusterPropertiesResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    KeyEncryptionKeyIdentity ClusterPropertiesResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    KeyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity ClusterPropertiesResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity ClusterPropertiesResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl string
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    key_encryption_key_identity ClusterPropertiesResponseKeyEncryptionKeyIdentity
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    key_encryption_key_url str
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78
    keyEncryptionKeyIdentity Property Map
    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    keyEncryptionKeyUrl String
    Key encryption key Url, versioned only. Ex: https://contosovault.vault.azure.net/keys/contosokek/562a4bb76b524a1493a6afe8e536ee78

    ClusterPropertiesResponseEncryption, ClusterPropertiesResponseEncryptionArgs

    Encryption-at-rest configuration for the cluster.
    CustomerManagedKeyEncryption Pulumi.AzureNative.RedisEnterprise.Inputs.ClusterPropertiesResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    CustomerManagedKeyEncryption ClusterPropertiesResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption ClusterPropertiesResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption ClusterPropertiesResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customer_managed_key_encryption ClusterPropertiesResponseCustomerManagedKeyEncryption
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.
    customerManagedKeyEncryption Property Map
    All Customer-managed key encryption properties for the resource. Set this to an empty object to use Microsoft-managed key encryption.

    ClusterPropertiesResponseKeyEncryptionKeyIdentity, ClusterPropertiesResponseKeyEncryptionKeyIdentityArgs

    All identity configuration for Customer-managed key settings defining which identity should be used to auth to Key Vault.
    IdentityType string
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    IdentityType string
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    UserAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType String
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType string
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId string
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identity_type str
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    user_assigned_identity_resource_id str
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.
    identityType String
    Only userAssignedIdentity is supported in this API version; other types may be supported in the future
    userAssignedIdentityResourceId String
    User assigned identity to use for accessing key encryption key Url. Ex: /subscriptions//resourceGroups//providers/Microsoft.ManagedIdentity/userAssignedIdentities/myId.

    CmkIdentityType, CmkIdentityTypeArgs

    SystemAssignedIdentity
    systemAssignedIdentity
    UserAssignedIdentity
    userAssignedIdentity
    CmkIdentityTypeSystemAssignedIdentity
    systemAssignedIdentity
    CmkIdentityTypeUserAssignedIdentity
    userAssignedIdentity
    SystemAssignedIdentity
    systemAssignedIdentity
    UserAssignedIdentity
    userAssignedIdentity
    SystemAssignedIdentity
    systemAssignedIdentity
    UserAssignedIdentity
    userAssignedIdentity
    SYSTEM_ASSIGNED_IDENTITY
    systemAssignedIdentity
    USER_ASSIGNED_IDENTITY
    userAssignedIdentity
    "systemAssignedIdentity"
    systemAssignedIdentity
    "userAssignedIdentity"
    userAssignedIdentity

    HighAvailability, HighAvailabilityArgs

    Enabled
    Enabled
    Disabled
    Disabled
    HighAvailabilityEnabled
    Enabled
    HighAvailabilityDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    ManagedServiceIdentity, ManagedServiceIdentityArgs

    Managed service identity (system assigned and/or user assigned identities)
    Type string | Pulumi.AzureNative.RedisEnterprise.ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities List<string>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    Type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities []string
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type string | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities string[]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type str | ManagedServiceIdentityType
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Sequence[str]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    type String | "None" | "SystemAssigned" | "UserAssigned" | "SystemAssigned, UserAssigned"
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities List<String>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityResponse, ManagedServiceIdentityResponseArgs

    Managed service identity (system assigned and/or user assigned identities)
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities Dictionary<string, Pulumi.AzureNative.RedisEnterprise.Inputs.UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    PrincipalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    TenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    Type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    UserAssignedIdentities map[string]UserAssignedIdentityResponse
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<String,UserAssignedIdentityResponse>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId string
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId string
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type string
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities {[key: string]: UserAssignedIdentityResponse}
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principal_id str
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenant_id str
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type str
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    user_assigned_identities Mapping[str, UserAssignedIdentityResponse]
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
    principalId String
    The service principal ID of the system assigned identity. This property will only be provided for a system assigned identity.
    tenantId String
    The tenant ID of the system assigned identity. This property will only be provided for a system assigned identity.
    type String
    Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
    userAssignedIdentities Map<Property Map>
    The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.

    ManagedServiceIdentityType, ManagedServiceIdentityTypeArgs

    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    ManagedServiceIdentityTypeNone
    None
    ManagedServiceIdentityTypeSystemAssigned
    SystemAssigned
    ManagedServiceIdentityTypeUserAssigned
    UserAssigned
    ManagedServiceIdentityType_SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    None
    None
    SystemAssigned
    SystemAssigned
    UserAssigned
    UserAssigned
    SystemAssigned_UserAssigned
    SystemAssigned, UserAssigned
    NONE
    None
    SYSTEM_ASSIGNED
    SystemAssigned
    USER_ASSIGNED
    UserAssigned
    SYSTEM_ASSIGNED_USER_ASSIGNED
    SystemAssigned, UserAssigned
    "None"
    None
    "SystemAssigned"
    SystemAssigned
    "UserAssigned"
    UserAssigned
    "SystemAssigned, UserAssigned"
    SystemAssigned, UserAssigned

    PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs

    The Private Endpoint Connection resource.
    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState Pulumi.AzureNative.RedisEnterprise.Inputs.PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateEndpoint Pulumi.AzureNative.RedisEnterprise.Inputs.PrivateEndpointResponse
    The resource of private end point.
    Id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    Name string
    The name of the resource
    PrivateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    ProvisioningState string
    The provisioning state of the private endpoint connection resource.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    PrivateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id string
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name string
    The name of the resource
    privateLinkServiceConnectionState PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState string
    The provisioning state of the private endpoint connection resource.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint PrivateEndpointResponse
    The resource of private end point.
    id str
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name str
    The name of the resource
    private_link_service_connection_state PrivateLinkServiceConnectionStateResponse
    A collection of information about the state of the connection between service consumer and provider.
    provisioning_state str
    The provisioning state of the private endpoint connection resource.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    private_endpoint PrivateEndpointResponse
    The resource of private end point.
    id String
    Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
    name String
    The name of the resource
    privateLinkServiceConnectionState Property Map
    A collection of information about the state of the connection between service consumer and provider.
    provisioningState String
    The provisioning state of the private endpoint connection resource.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    privateEndpoint Property Map
    The resource of private end point.

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    The Private Endpoint resource.
    Id string
    The ARM identifier for Private Endpoint
    Id string
    The ARM identifier for Private Endpoint
    id String
    The ARM identifier for Private Endpoint
    id string
    The ARM identifier for Private Endpoint
    id str
    The ARM identifier for Private Endpoint
    id String
    The ARM identifier for Private Endpoint

    PrivateLinkServiceConnectionStateResponse, PrivateLinkServiceConnectionStateResponseArgs

    A collection of information about the state of the connection between service consumer and provider.
    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    ActionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    Description string
    The reason for approval/rejection of the connection.
    Status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired string
    A message indicating if changes on the service provider require any updates on the consumer.
    description string
    The reason for approval/rejection of the connection.
    status string
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actions_required str
    A message indicating if changes on the service provider require any updates on the consumer.
    description str
    The reason for approval/rejection of the connection.
    status str
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.
    actionsRequired String
    A message indicating if changes on the service provider require any updates on the consumer.
    description String
    The reason for approval/rejection of the connection.
    status String
    Indicates whether the connection has been Approved/Rejected/Removed by the owner of the service.

    Sku, SkuArgs

    SKU parameters supplied to the create Redis Enterprise cluster operation.
    Name string | Pulumi.AzureNative.RedisEnterprise.SkuName
    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.
    Capacity int
    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.
    Name string | SkuName
    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.
    Capacity int
    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.
    name String | SkuName
    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.
    capacity Integer
    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.
    name string | SkuName
    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.
    capacity number
    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.
    name str | SkuName
    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.
    capacity int
    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.
    name String | "Enterprise_E1" | "Enterprise_E5" | "Enterprise_E10" | "Enterprise_E20" | "Enterprise_E50" | "Enterprise_E100" | "Enterprise_E200" | "Enterprise_E400" | "EnterpriseFlash_F300" | "EnterpriseFlash_F700" | "EnterpriseFlash_F1500" | "Balanced_B0" | "Balanced_B1" | "Balanced_B3" | "Balanced_B5" | "Balanced_B10" | "Balanced_B20" | "Balanced_B50" | "Balanced_B100" | "Balanced_B150" | "Balanced_B250" | "Balanced_B350" | "Balanced_B500" | "Balanced_B700" | "Balanced_B1000" | "MemoryOptimized_M10" | "MemoryOptimized_M20" | "MemoryOptimized_M50" | "MemoryOptimized_M100" | "MemoryOptimized_M150" | "MemoryOptimized_M250" | "MemoryOptimized_M350" | "MemoryOptimized_M500" | "MemoryOptimized_M700" | "MemoryOptimized_M1000" | "MemoryOptimized_M1500" | "MemoryOptimized_M2000" | "ComputeOptimized_X3" | "ComputeOptimized_X5" | "ComputeOptimized_X10" | "ComputeOptimized_X20" | "ComputeOptimized_X50" | "ComputeOptimized_X100" | "ComputeOptimized_X150" | "ComputeOptimized_X250" | "ComputeOptimized_X350" | "ComputeOptimized_X500" | "ComputeOptimized_X700" | "FlashOptimized_A250" | "FlashOptimized_A500" | "FlashOptimized_A700" | "FlashOptimized_A1000" | "FlashOptimized_A1500" | "FlashOptimized_A2000" | "FlashOptimized_A4500"
    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.
    capacity Number
    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.

    SkuName, SkuNameArgs

    Enterprise_E1
    Enterprise_E1
    Enterprise_E5
    Enterprise_E5
    Enterprise_E10
    Enterprise_E10
    Enterprise_E20
    Enterprise_E20
    Enterprise_E50
    Enterprise_E50
    Enterprise_E100
    Enterprise_E100
    Enterprise_E200
    Enterprise_E200
    Enterprise_E400
    Enterprise_E400
    EnterpriseFlash_F300
    EnterpriseFlash_F300
    EnterpriseFlash_F700
    EnterpriseFlash_F700
    EnterpriseFlash_F1500
    EnterpriseFlash_F1500
    Balanced_B0
    Balanced_B0
    Balanced_B1
    Balanced_B1
    Balanced_B3
    Balanced_B3
    Balanced_B5
    Balanced_B5
    Balanced_B10
    Balanced_B10
    Balanced_B20
    Balanced_B20
    Balanced_B50
    Balanced_B50
    Balanced_B100
    Balanced_B100
    Balanced_B150
    Balanced_B150
    Balanced_B250
    Balanced_B250
    Balanced_B350
    Balanced_B350
    Balanced_B500
    Balanced_B500
    Balanced_B700
    Balanced_B700
    Balanced_B1000
    Balanced_B1000
    MemoryOptimized_M10
    MemoryOptimized_M10
    MemoryOptimized_M20
    MemoryOptimized_M20
    MemoryOptimized_M50
    MemoryOptimized_M50
    MemoryOptimized_M100
    MemoryOptimized_M100
    MemoryOptimized_M150
    MemoryOptimized_M150
    MemoryOptimized_M250
    MemoryOptimized_M250
    MemoryOptimized_M350
    MemoryOptimized_M350
    MemoryOptimized_M500
    MemoryOptimized_M500
    MemoryOptimized_M700
    MemoryOptimized_M700
    MemoryOptimized_M1000
    MemoryOptimized_M1000
    MemoryOptimized_M1500
    MemoryOptimized_M1500
    MemoryOptimized_M2000
    MemoryOptimized_M2000
    ComputeOptimized_X3
    ComputeOptimized_X3
    ComputeOptimized_X5
    ComputeOptimized_X5
    ComputeOptimized_X10
    ComputeOptimized_X10
    ComputeOptimized_X20
    ComputeOptimized_X20
    ComputeOptimized_X50
    ComputeOptimized_X50
    ComputeOptimized_X100
    ComputeOptimized_X100
    ComputeOptimized_X150
    ComputeOptimized_X150
    ComputeOptimized_X250
    ComputeOptimized_X250
    ComputeOptimized_X350
    ComputeOptimized_X350
    ComputeOptimized_X500
    ComputeOptimized_X500
    ComputeOptimized_X700
    ComputeOptimized_X700
    FlashOptimized_A250
    FlashOptimized_A250
    FlashOptimized_A500
    FlashOptimized_A500
    FlashOptimized_A700
    FlashOptimized_A700
    FlashOptimized_A1000
    FlashOptimized_A1000
    FlashOptimized_A1500
    FlashOptimized_A1500
    FlashOptimized_A2000
    FlashOptimized_A2000
    FlashOptimized_A4500
    FlashOptimized_A4500
    SkuName_Enterprise_E1
    Enterprise_E1
    SkuName_Enterprise_E5
    Enterprise_E5
    SkuName_Enterprise_E10
    Enterprise_E10
    SkuName_Enterprise_E20
    Enterprise_E20
    SkuName_Enterprise_E50
    Enterprise_E50
    SkuName_Enterprise_E100
    Enterprise_E100
    SkuName_Enterprise_E200
    Enterprise_E200
    SkuName_Enterprise_E400
    Enterprise_E400
    SkuName_EnterpriseFlash_F300
    EnterpriseFlash_F300
    SkuName_EnterpriseFlash_F700
    EnterpriseFlash_F700
    SkuName_EnterpriseFlash_F1500
    EnterpriseFlash_F1500
    SkuName_Balanced_B0
    Balanced_B0
    SkuName_Balanced_B1
    Balanced_B1
    SkuName_Balanced_B3
    Balanced_B3
    SkuName_Balanced_B5
    Balanced_B5
    SkuName_Balanced_B10
    Balanced_B10
    SkuName_Balanced_B20
    Balanced_B20
    SkuName_Balanced_B50
    Balanced_B50
    SkuName_Balanced_B100
    Balanced_B100
    SkuName_Balanced_B150
    Balanced_B150
    SkuName_Balanced_B250
    Balanced_B250
    SkuName_Balanced_B350
    Balanced_B350
    SkuName_Balanced_B500
    Balanced_B500
    SkuName_Balanced_B700
    Balanced_B700
    SkuName_Balanced_B1000
    Balanced_B1000
    SkuName_MemoryOptimized_M10
    MemoryOptimized_M10
    SkuName_MemoryOptimized_M20
    MemoryOptimized_M20
    SkuName_MemoryOptimized_M50
    MemoryOptimized_M50
    SkuName_MemoryOptimized_M100
    MemoryOptimized_M100
    SkuName_MemoryOptimized_M150
    MemoryOptimized_M150
    SkuName_MemoryOptimized_M250
    MemoryOptimized_M250
    SkuName_MemoryOptimized_M350
    MemoryOptimized_M350
    SkuName_MemoryOptimized_M500
    MemoryOptimized_M500
    SkuName_MemoryOptimized_M700
    MemoryOptimized_M700
    SkuName_MemoryOptimized_M1000
    MemoryOptimized_M1000
    SkuName_MemoryOptimized_M1500
    MemoryOptimized_M1500
    SkuName_MemoryOptimized_M2000
    MemoryOptimized_M2000
    SkuName_ComputeOptimized_X3
    ComputeOptimized_X3
    SkuName_ComputeOptimized_X5
    ComputeOptimized_X5
    SkuName_ComputeOptimized_X10
    ComputeOptimized_X10
    SkuName_ComputeOptimized_X20
    ComputeOptimized_X20
    SkuName_ComputeOptimized_X50
    ComputeOptimized_X50
    SkuName_ComputeOptimized_X100
    ComputeOptimized_X100
    SkuName_ComputeOptimized_X150
    ComputeOptimized_X150
    SkuName_ComputeOptimized_X250
    ComputeOptimized_X250
    SkuName_ComputeOptimized_X350
    ComputeOptimized_X350
    SkuName_ComputeOptimized_X500
    ComputeOptimized_X500
    SkuName_ComputeOptimized_X700
    ComputeOptimized_X700
    SkuName_FlashOptimized_A250
    FlashOptimized_A250
    SkuName_FlashOptimized_A500
    FlashOptimized_A500
    SkuName_FlashOptimized_A700
    FlashOptimized_A700
    SkuName_FlashOptimized_A1000
    FlashOptimized_A1000
    SkuName_FlashOptimized_A1500
    FlashOptimized_A1500
    SkuName_FlashOptimized_A2000
    FlashOptimized_A2000
    SkuName_FlashOptimized_A4500
    FlashOptimized_A4500
    Enterprise_E1
    Enterprise_E1
    Enterprise_E5
    Enterprise_E5
    Enterprise_E10
    Enterprise_E10
    Enterprise_E20
    Enterprise_E20
    Enterprise_E50
    Enterprise_E50
    Enterprise_E100
    Enterprise_E100
    Enterprise_E200
    Enterprise_E200
    Enterprise_E400
    Enterprise_E400
    EnterpriseFlash_F300
    EnterpriseFlash_F300
    EnterpriseFlash_F700
    EnterpriseFlash_F700
    EnterpriseFlash_F1500
    EnterpriseFlash_F1500
    Balanced_B0
    Balanced_B0
    Balanced_B1
    Balanced_B1
    Balanced_B3
    Balanced_B3
    Balanced_B5
    Balanced_B5
    Balanced_B10
    Balanced_B10
    Balanced_B20
    Balanced_B20
    Balanced_B50
    Balanced_B50
    Balanced_B100
    Balanced_B100
    Balanced_B150
    Balanced_B150
    Balanced_B250
    Balanced_B250
    Balanced_B350
    Balanced_B350
    Balanced_B500
    Balanced_B500
    Balanced_B700
    Balanced_B700
    Balanced_B1000
    Balanced_B1000
    MemoryOptimized_M10
    MemoryOptimized_M10
    MemoryOptimized_M20
    MemoryOptimized_M20
    MemoryOptimized_M50
    MemoryOptimized_M50
    MemoryOptimized_M100
    MemoryOptimized_M100
    MemoryOptimized_M150
    MemoryOptimized_M150
    MemoryOptimized_M250
    MemoryOptimized_M250
    MemoryOptimized_M350
    MemoryOptimized_M350
    MemoryOptimized_M500
    MemoryOptimized_M500
    MemoryOptimized_M700
    MemoryOptimized_M700
    MemoryOptimized_M1000
    MemoryOptimized_M1000
    MemoryOptimized_M1500
    MemoryOptimized_M1500
    MemoryOptimized_M2000
    MemoryOptimized_M2000
    ComputeOptimized_X3
    ComputeOptimized_X3
    ComputeOptimized_X5
    ComputeOptimized_X5
    ComputeOptimized_X10
    ComputeOptimized_X10
    ComputeOptimized_X20
    ComputeOptimized_X20
    ComputeOptimized_X50
    ComputeOptimized_X50
    ComputeOptimized_X100
    ComputeOptimized_X100
    ComputeOptimized_X150
    ComputeOptimized_X150
    ComputeOptimized_X250
    ComputeOptimized_X250
    ComputeOptimized_X350
    ComputeOptimized_X350
    ComputeOptimized_X500
    ComputeOptimized_X500
    ComputeOptimized_X700
    ComputeOptimized_X700
    FlashOptimized_A250
    FlashOptimized_A250
    FlashOptimized_A500
    FlashOptimized_A500
    FlashOptimized_A700
    FlashOptimized_A700
    FlashOptimized_A1000
    FlashOptimized_A1000
    FlashOptimized_A1500
    FlashOptimized_A1500
    FlashOptimized_A2000
    FlashOptimized_A2000
    FlashOptimized_A4500
    FlashOptimized_A4500
    Enterprise_E1
    Enterprise_E1
    Enterprise_E5
    Enterprise_E5
    Enterprise_E10
    Enterprise_E10
    Enterprise_E20
    Enterprise_E20
    Enterprise_E50
    Enterprise_E50
    Enterprise_E100
    Enterprise_E100
    Enterprise_E200
    Enterprise_E200
    Enterprise_E400
    Enterprise_E400
    EnterpriseFlash_F300
    EnterpriseFlash_F300
    EnterpriseFlash_F700
    EnterpriseFlash_F700
    EnterpriseFlash_F1500
    EnterpriseFlash_F1500
    Balanced_B0
    Balanced_B0
    Balanced_B1
    Balanced_B1
    Balanced_B3
    Balanced_B3
    Balanced_B5
    Balanced_B5
    Balanced_B10
    Balanced_B10
    Balanced_B20
    Balanced_B20
    Balanced_B50
    Balanced_B50
    Balanced_B100
    Balanced_B100
    Balanced_B150
    Balanced_B150
    Balanced_B250
    Balanced_B250
    Balanced_B350
    Balanced_B350
    Balanced_B500
    Balanced_B500
    Balanced_B700
    Balanced_B700
    Balanced_B1000
    Balanced_B1000
    MemoryOptimized_M10
    MemoryOptimized_M10
    MemoryOptimized_M20
    MemoryOptimized_M20
    MemoryOptimized_M50
    MemoryOptimized_M50
    MemoryOptimized_M100
    MemoryOptimized_M100
    MemoryOptimized_M150
    MemoryOptimized_M150
    MemoryOptimized_M250
    MemoryOptimized_M250
    MemoryOptimized_M350
    MemoryOptimized_M350
    MemoryOptimized_M500
    MemoryOptimized_M500
    MemoryOptimized_M700
    MemoryOptimized_M700
    MemoryOptimized_M1000
    MemoryOptimized_M1000
    MemoryOptimized_M1500
    MemoryOptimized_M1500
    MemoryOptimized_M2000
    MemoryOptimized_M2000
    ComputeOptimized_X3
    ComputeOptimized_X3
    ComputeOptimized_X5
    ComputeOptimized_X5
    ComputeOptimized_X10
    ComputeOptimized_X10
    ComputeOptimized_X20
    ComputeOptimized_X20
    ComputeOptimized_X50
    ComputeOptimized_X50
    ComputeOptimized_X100
    ComputeOptimized_X100
    ComputeOptimized_X150
    ComputeOptimized_X150
    ComputeOptimized_X250
    ComputeOptimized_X250
    ComputeOptimized_X350
    ComputeOptimized_X350
    ComputeOptimized_X500
    ComputeOptimized_X500
    ComputeOptimized_X700
    ComputeOptimized_X700
    FlashOptimized_A250
    FlashOptimized_A250
    FlashOptimized_A500
    FlashOptimized_A500
    FlashOptimized_A700
    FlashOptimized_A700
    FlashOptimized_A1000
    FlashOptimized_A1000
    FlashOptimized_A1500
    FlashOptimized_A1500
    FlashOptimized_A2000
    FlashOptimized_A2000
    FlashOptimized_A4500
    FlashOptimized_A4500
    ENTERPRISE_E1
    Enterprise_E1
    ENTERPRISE_E5
    Enterprise_E5
    ENTERPRISE_E10
    Enterprise_E10
    ENTERPRISE_E20
    Enterprise_E20
    ENTERPRISE_E50
    Enterprise_E50
    ENTERPRISE_E100
    Enterprise_E100
    ENTERPRISE_E200
    Enterprise_E200
    ENTERPRISE_E400
    Enterprise_E400
    ENTERPRISE_FLASH_F300
    EnterpriseFlash_F300
    ENTERPRISE_FLASH_F700
    EnterpriseFlash_F700
    ENTERPRISE_FLASH_F1500
    EnterpriseFlash_F1500
    BALANCED_B0
    Balanced_B0
    BALANCED_B1
    Balanced_B1
    BALANCED_B3
    Balanced_B3
    BALANCED_B5
    Balanced_B5
    BALANCED_B10
    Balanced_B10
    BALANCED_B20
    Balanced_B20
    BALANCED_B50
    Balanced_B50
    BALANCED_B100
    Balanced_B100
    BALANCED_B150
    Balanced_B150
    BALANCED_B250
    Balanced_B250
    BALANCED_B350
    Balanced_B350
    BALANCED_B500
    Balanced_B500
    BALANCED_B700
    Balanced_B700
    BALANCED_B1000
    Balanced_B1000
    MEMORY_OPTIMIZED_M10
    MemoryOptimized_M10
    MEMORY_OPTIMIZED_M20
    MemoryOptimized_M20
    MEMORY_OPTIMIZED_M50
    MemoryOptimized_M50
    MEMORY_OPTIMIZED_M100
    MemoryOptimized_M100
    MEMORY_OPTIMIZED_M150
    MemoryOptimized_M150
    MEMORY_OPTIMIZED_M250
    MemoryOptimized_M250
    MEMORY_OPTIMIZED_M350
    MemoryOptimized_M350
    MEMORY_OPTIMIZED_M500
    MemoryOptimized_M500
    MEMORY_OPTIMIZED_M700
    MemoryOptimized_M700
    MEMORY_OPTIMIZED_M1000
    MemoryOptimized_M1000
    MEMORY_OPTIMIZED_M1500
    MemoryOptimized_M1500
    MEMORY_OPTIMIZED_M2000
    MemoryOptimized_M2000
    COMPUTE_OPTIMIZED_X3
    ComputeOptimized_X3
    COMPUTE_OPTIMIZED_X5
    ComputeOptimized_X5
    COMPUTE_OPTIMIZED_X10
    ComputeOptimized_X10
    COMPUTE_OPTIMIZED_X20
    ComputeOptimized_X20
    COMPUTE_OPTIMIZED_X50
    ComputeOptimized_X50
    COMPUTE_OPTIMIZED_X100
    ComputeOptimized_X100
    COMPUTE_OPTIMIZED_X150
    ComputeOptimized_X150
    COMPUTE_OPTIMIZED_X250
    ComputeOptimized_X250
    COMPUTE_OPTIMIZED_X350
    ComputeOptimized_X350
    COMPUTE_OPTIMIZED_X500
    ComputeOptimized_X500
    COMPUTE_OPTIMIZED_X700
    ComputeOptimized_X700
    FLASH_OPTIMIZED_A250
    FlashOptimized_A250
    FLASH_OPTIMIZED_A500
    FlashOptimized_A500
    FLASH_OPTIMIZED_A700
    FlashOptimized_A700
    FLASH_OPTIMIZED_A1000
    FlashOptimized_A1000
    FLASH_OPTIMIZED_A1500
    FlashOptimized_A1500
    FLASH_OPTIMIZED_A2000
    FlashOptimized_A2000
    FLASH_OPTIMIZED_A4500
    FlashOptimized_A4500
    "Enterprise_E1"
    Enterprise_E1
    "Enterprise_E5"
    Enterprise_E5
    "Enterprise_E10"
    Enterprise_E10
    "Enterprise_E20"
    Enterprise_E20
    "Enterprise_E50"
    Enterprise_E50
    "Enterprise_E100"
    Enterprise_E100
    "Enterprise_E200"
    Enterprise_E200
    "Enterprise_E400"
    Enterprise_E400
    "EnterpriseFlash_F300"
    EnterpriseFlash_F300
    "EnterpriseFlash_F700"
    EnterpriseFlash_F700
    "EnterpriseFlash_F1500"
    EnterpriseFlash_F1500
    "Balanced_B0"
    Balanced_B0
    "Balanced_B1"
    Balanced_B1
    "Balanced_B3"
    Balanced_B3
    "Balanced_B5"
    Balanced_B5
    "Balanced_B10"
    Balanced_B10
    "Balanced_B20"
    Balanced_B20
    "Balanced_B50"
    Balanced_B50
    "Balanced_B100"
    Balanced_B100
    "Balanced_B150"
    Balanced_B150
    "Balanced_B250"
    Balanced_B250
    "Balanced_B350"
    Balanced_B350
    "Balanced_B500"
    Balanced_B500
    "Balanced_B700"
    Balanced_B700
    "Balanced_B1000"
    Balanced_B1000
    "MemoryOptimized_M10"
    MemoryOptimized_M10
    "MemoryOptimized_M20"
    MemoryOptimized_M20
    "MemoryOptimized_M50"
    MemoryOptimized_M50
    "MemoryOptimized_M100"
    MemoryOptimized_M100
    "MemoryOptimized_M150"
    MemoryOptimized_M150
    "MemoryOptimized_M250"
    MemoryOptimized_M250
    "MemoryOptimized_M350"
    MemoryOptimized_M350
    "MemoryOptimized_M500"
    MemoryOptimized_M500
    "MemoryOptimized_M700"
    MemoryOptimized_M700
    "MemoryOptimized_M1000"
    MemoryOptimized_M1000
    "MemoryOptimized_M1500"
    MemoryOptimized_M1500
    "MemoryOptimized_M2000"
    MemoryOptimized_M2000
    "ComputeOptimized_X3"
    ComputeOptimized_X3
    "ComputeOptimized_X5"
    ComputeOptimized_X5
    "ComputeOptimized_X10"
    ComputeOptimized_X10
    "ComputeOptimized_X20"
    ComputeOptimized_X20
    "ComputeOptimized_X50"
    ComputeOptimized_X50
    "ComputeOptimized_X100"
    ComputeOptimized_X100
    "ComputeOptimized_X150"
    ComputeOptimized_X150
    "ComputeOptimized_X250"
    ComputeOptimized_X250
    "ComputeOptimized_X350"
    ComputeOptimized_X350
    "ComputeOptimized_X500"
    ComputeOptimized_X500
    "ComputeOptimized_X700"
    ComputeOptimized_X700
    "FlashOptimized_A250"
    FlashOptimized_A250
    "FlashOptimized_A500"
    FlashOptimized_A500
    "FlashOptimized_A700"
    FlashOptimized_A700
    "FlashOptimized_A1000"
    FlashOptimized_A1000
    "FlashOptimized_A1500"
    FlashOptimized_A1500
    "FlashOptimized_A2000"
    FlashOptimized_A2000
    "FlashOptimized_A4500"
    FlashOptimized_A4500

    SkuResponse, SkuResponseArgs

    SKU parameters supplied to the create Redis Enterprise cluster operation.
    Name string
    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.
    Capacity int
    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.
    Name string
    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.
    Capacity int
    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.
    name String
    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.
    capacity Integer
    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.
    name string
    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.
    capacity number
    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.
    name str
    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.
    capacity int
    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.
    name String
    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.
    capacity Number
    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.

    TlsVersion, TlsVersionArgs

    TlsVersion_1_0
    1.0
    TlsVersion_1_1
    1.1
    TlsVersion_1_2
    1.2
    TlsVersion_1_0
    1.0
    TlsVersion_1_1
    1.1
    TlsVersion_1_2
    1.2
    _1_0
    1.0
    _1_1
    1.1
    _1_2
    1.2
    TlsVersion_1_0
    1.0
    TlsVersion_1_1
    1.1
    TlsVersion_1_2
    1.2
    TLS_VERSION_1_0
    1.0
    TLS_VERSION_1_1
    1.1
    TLS_VERSION_1_2
    1.2
    "1.0"
    1.0
    "1.1"
    1.1
    "1.2"
    1.2

    UserAssignedIdentityResponse, UserAssignedIdentityResponseArgs

    User assigned identity properties
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    ClientId string
    The client ID of the assigned identity.
    PrincipalId string
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.
    clientId string
    The client ID of the assigned identity.
    principalId string
    The principal ID of the assigned identity.
    client_id str
    The client ID of the assigned identity.
    principal_id str
    The principal ID of the assigned identity.
    clientId String
    The client ID of the assigned identity.
    principalId String
    The principal ID of the assigned identity.

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
    Azure Native v3.10.1 published on Friday, Nov 7, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate