azure-native.cache.Redis
Explore with Pulumi AI
A single Redis item in List or Get Operation. Azure REST API version: 2023-04-01. Prior API version in Azure Native 1.x: 2020-06-01.
Other available API versions: 2020-06-01, 2023-05-01-preview, 2023-08-01, 2024-03-01, 2024-04-01-preview, 2024-11-01.
Example Usage
RedisCacheCreate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var redis = new AzureNative.Cache.Redis("redis", new()
    {
        EnableNonSslPort = true,
        Location = "West US",
        MinimumTlsVersion = AzureNative.Cache.TlsVersion.TlsVersion_1_2,
        Name = "cache1",
        RedisConfiguration = new AzureNative.Cache.Inputs.RedisCommonPropertiesRedisConfigurationArgs
        {
            MaxmemoryPolicy = "allkeys-lru",
        },
        RedisVersion = "4",
        ReplicasPerPrimary = 2,
        ResourceGroupName = "rg1",
        ShardCount = 2,
        Sku = new AzureNative.Cache.Inputs.SkuArgs
        {
            Capacity = 1,
            Family = AzureNative.Cache.SkuFamily.P,
            Name = "Premium",
        },
        StaticIP = "192.168.0.5",
        SubnetId = "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
        Zones = new[]
        {
            "1",
        },
    });
});
package main
import (
	cache "github.com/pulumi/pulumi-azure-native-sdk/cache/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cache.NewRedis(ctx, "redis", &cache.RedisArgs{
			EnableNonSslPort:  pulumi.Bool(true),
			Location:          pulumi.String("West US"),
			MinimumTlsVersion: pulumi.String(cache.TlsVersion_1_2),
			Name:              pulumi.String("cache1"),
			RedisConfiguration: &cache.RedisCommonPropertiesRedisConfigurationArgs{
				MaxmemoryPolicy: pulumi.String("allkeys-lru"),
			},
			RedisVersion:       pulumi.String("4"),
			ReplicasPerPrimary: pulumi.Int(2),
			ResourceGroupName:  pulumi.String("rg1"),
			ShardCount:         pulumi.Int(2),
			Sku: &cache.SkuArgs{
				Capacity: pulumi.Int(1),
				Family:   pulumi.String(cache.SkuFamilyP),
				Name:     pulumi.String("Premium"),
			},
			StaticIP: pulumi.String("192.168.0.5"),
			SubnetId: pulumi.String("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1"),
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cache.Redis;
import com.pulumi.azurenative.cache.RedisArgs;
import com.pulumi.azurenative.cache.inputs.RedisCommonPropertiesRedisConfigurationArgs;
import com.pulumi.azurenative.cache.inputs.SkuArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var redis = new Redis("redis", RedisArgs.builder()
            .enableNonSslPort(true)
            .location("West US")
            .minimumTlsVersion("1.2")
            .name("cache1")
            .redisConfiguration(RedisCommonPropertiesRedisConfigurationArgs.builder()
                .maxmemoryPolicy("allkeys-lru")
                .build())
            .redisVersion("4")
            .replicasPerPrimary(2)
            .resourceGroupName("rg1")
            .shardCount(2)
            .sku(SkuArgs.builder()
                .capacity(1)
                .family("P")
                .name("Premium")
                .build())
            .staticIP("192.168.0.5")
            .subnetId("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1")
            .zones("1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const redis = new azure_native.cache.Redis("redis", {
    enableNonSslPort: true,
    location: "West US",
    minimumTlsVersion: azure_native.cache.TlsVersion.TlsVersion_1_2,
    name: "cache1",
    redisConfiguration: {
        maxmemoryPolicy: "allkeys-lru",
    },
    redisVersion: "4",
    replicasPerPrimary: 2,
    resourceGroupName: "rg1",
    shardCount: 2,
    sku: {
        capacity: 1,
        family: azure_native.cache.SkuFamily.P,
        name: "Premium",
    },
    staticIP: "192.168.0.5",
    subnetId: "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones: ["1"],
});
import pulumi
import pulumi_azure_native as azure_native
redis = azure_native.cache.Redis("redis",
    enable_non_ssl_port=True,
    location="West US",
    minimum_tls_version=azure_native.cache.TlsVersion.TLS_VERSION_1_2,
    name="cache1",
    redis_configuration={
        "maxmemory_policy": "allkeys-lru",
    },
    redis_version="4",
    replicas_per_primary=2,
    resource_group_name="rg1",
    shard_count=2,
    sku={
        "capacity": 1,
        "family": azure_native.cache.SkuFamily.P,
        "name": "Premium",
    },
    static_ip="192.168.0.5",
    subnet_id="/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones=["1"])
resources:
  redis:
    type: azure-native:cache:Redis
    properties:
      enableNonSslPort: true
      location: West US
      minimumTlsVersion: '1.2'
      name: cache1
      redisConfiguration:
        maxmemoryPolicy: allkeys-lru
      redisVersion: '4'
      replicasPerPrimary: 2
      resourceGroupName: rg1
      shardCount: 2
      sku:
        capacity: 1
        family: P
        name: Premium
      staticIP: 192.168.0.5
      subnetId: /subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1
      zones:
        - '1'
RedisCacheCreateDefaultVersion
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var redis = new AzureNative.Cache.Redis("redis", new()
    {
        EnableNonSslPort = true,
        Location = "West US",
        MinimumTlsVersion = AzureNative.Cache.TlsVersion.TlsVersion_1_2,
        Name = "cache1",
        RedisConfiguration = new AzureNative.Cache.Inputs.RedisCommonPropertiesRedisConfigurationArgs
        {
            MaxmemoryPolicy = "allkeys-lru",
        },
        ReplicasPerPrimary = 2,
        ResourceGroupName = "rg1",
        ShardCount = 2,
        Sku = new AzureNative.Cache.Inputs.SkuArgs
        {
            Capacity = 1,
            Family = AzureNative.Cache.SkuFamily.P,
            Name = "Premium",
        },
        StaticIP = "192.168.0.5",
        SubnetId = "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
        Zones = new[]
        {
            "1",
        },
    });
});
package main
import (
	cache "github.com/pulumi/pulumi-azure-native-sdk/cache/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cache.NewRedis(ctx, "redis", &cache.RedisArgs{
			EnableNonSslPort:  pulumi.Bool(true),
			Location:          pulumi.String("West US"),
			MinimumTlsVersion: pulumi.String(cache.TlsVersion_1_2),
			Name:              pulumi.String("cache1"),
			RedisConfiguration: &cache.RedisCommonPropertiesRedisConfigurationArgs{
				MaxmemoryPolicy: pulumi.String("allkeys-lru"),
			},
			ReplicasPerPrimary: pulumi.Int(2),
			ResourceGroupName:  pulumi.String("rg1"),
			ShardCount:         pulumi.Int(2),
			Sku: &cache.SkuArgs{
				Capacity: pulumi.Int(1),
				Family:   pulumi.String(cache.SkuFamilyP),
				Name:     pulumi.String("Premium"),
			},
			StaticIP: pulumi.String("192.168.0.5"),
			SubnetId: pulumi.String("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1"),
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cache.Redis;
import com.pulumi.azurenative.cache.RedisArgs;
import com.pulumi.azurenative.cache.inputs.RedisCommonPropertiesRedisConfigurationArgs;
import com.pulumi.azurenative.cache.inputs.SkuArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var redis = new Redis("redis", RedisArgs.builder()
            .enableNonSslPort(true)
            .location("West US")
            .minimumTlsVersion("1.2")
            .name("cache1")
            .redisConfiguration(RedisCommonPropertiesRedisConfigurationArgs.builder()
                .maxmemoryPolicy("allkeys-lru")
                .build())
            .replicasPerPrimary(2)
            .resourceGroupName("rg1")
            .shardCount(2)
            .sku(SkuArgs.builder()
                .capacity(1)
                .family("P")
                .name("Premium")
                .build())
            .staticIP("192.168.0.5")
            .subnetId("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1")
            .zones("1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const redis = new azure_native.cache.Redis("redis", {
    enableNonSslPort: true,
    location: "West US",
    minimumTlsVersion: azure_native.cache.TlsVersion.TlsVersion_1_2,
    name: "cache1",
    redisConfiguration: {
        maxmemoryPolicy: "allkeys-lru",
    },
    replicasPerPrimary: 2,
    resourceGroupName: "rg1",
    shardCount: 2,
    sku: {
        capacity: 1,
        family: azure_native.cache.SkuFamily.P,
        name: "Premium",
    },
    staticIP: "192.168.0.5",
    subnetId: "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones: ["1"],
});
import pulumi
import pulumi_azure_native as azure_native
redis = azure_native.cache.Redis("redis",
    enable_non_ssl_port=True,
    location="West US",
    minimum_tls_version=azure_native.cache.TlsVersion.TLS_VERSION_1_2,
    name="cache1",
    redis_configuration={
        "maxmemory_policy": "allkeys-lru",
    },
    replicas_per_primary=2,
    resource_group_name="rg1",
    shard_count=2,
    sku={
        "capacity": 1,
        "family": azure_native.cache.SkuFamily.P,
        "name": "Premium",
    },
    static_ip="192.168.0.5",
    subnet_id="/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones=["1"])
resources:
  redis:
    type: azure-native:cache:Redis
    properties:
      enableNonSslPort: true
      location: West US
      minimumTlsVersion: '1.2'
      name: cache1
      redisConfiguration:
        maxmemoryPolicy: allkeys-lru
      replicasPerPrimary: 2
      resourceGroupName: rg1
      shardCount: 2
      sku:
        capacity: 1
        family: P
        name: Premium
      staticIP: 192.168.0.5
      subnetId: /subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1
      zones:
        - '1'
RedisCacheCreateLatestVersion
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var redis = new AzureNative.Cache.Redis("redis", new()
    {
        EnableNonSslPort = true,
        Location = "West US",
        MinimumTlsVersion = AzureNative.Cache.TlsVersion.TlsVersion_1_2,
        Name = "cache1",
        RedisConfiguration = new AzureNative.Cache.Inputs.RedisCommonPropertiesRedisConfigurationArgs
        {
            MaxmemoryPolicy = "allkeys-lru",
        },
        RedisVersion = "Latest",
        ReplicasPerPrimary = 2,
        ResourceGroupName = "rg1",
        ShardCount = 2,
        Sku = new AzureNative.Cache.Inputs.SkuArgs
        {
            Capacity = 1,
            Family = AzureNative.Cache.SkuFamily.P,
            Name = "Premium",
        },
        StaticIP = "192.168.0.5",
        SubnetId = "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
        Zones = new[]
        {
            "1",
        },
    });
});
package main
import (
	cache "github.com/pulumi/pulumi-azure-native-sdk/cache/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cache.NewRedis(ctx, "redis", &cache.RedisArgs{
			EnableNonSslPort:  pulumi.Bool(true),
			Location:          pulumi.String("West US"),
			MinimumTlsVersion: pulumi.String(cache.TlsVersion_1_2),
			Name:              pulumi.String("cache1"),
			RedisConfiguration: &cache.RedisCommonPropertiesRedisConfigurationArgs{
				MaxmemoryPolicy: pulumi.String("allkeys-lru"),
			},
			RedisVersion:       pulumi.String("Latest"),
			ReplicasPerPrimary: pulumi.Int(2),
			ResourceGroupName:  pulumi.String("rg1"),
			ShardCount:         pulumi.Int(2),
			Sku: &cache.SkuArgs{
				Capacity: pulumi.Int(1),
				Family:   pulumi.String(cache.SkuFamilyP),
				Name:     pulumi.String("Premium"),
			},
			StaticIP: pulumi.String("192.168.0.5"),
			SubnetId: pulumi.String("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1"),
			Zones: pulumi.StringArray{
				pulumi.String("1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cache.Redis;
import com.pulumi.azurenative.cache.RedisArgs;
import com.pulumi.azurenative.cache.inputs.RedisCommonPropertiesRedisConfigurationArgs;
import com.pulumi.azurenative.cache.inputs.SkuArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var redis = new Redis("redis", RedisArgs.builder()
            .enableNonSslPort(true)
            .location("West US")
            .minimumTlsVersion("1.2")
            .name("cache1")
            .redisConfiguration(RedisCommonPropertiesRedisConfigurationArgs.builder()
                .maxmemoryPolicy("allkeys-lru")
                .build())
            .redisVersion("Latest")
            .replicasPerPrimary(2)
            .resourceGroupName("rg1")
            .shardCount(2)
            .sku(SkuArgs.builder()
                .capacity(1)
                .family("P")
                .name("Premium")
                .build())
            .staticIP("192.168.0.5")
            .subnetId("/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1")
            .zones("1")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const redis = new azure_native.cache.Redis("redis", {
    enableNonSslPort: true,
    location: "West US",
    minimumTlsVersion: azure_native.cache.TlsVersion.TlsVersion_1_2,
    name: "cache1",
    redisConfiguration: {
        maxmemoryPolicy: "allkeys-lru",
    },
    redisVersion: "Latest",
    replicasPerPrimary: 2,
    resourceGroupName: "rg1",
    shardCount: 2,
    sku: {
        capacity: 1,
        family: azure_native.cache.SkuFamily.P,
        name: "Premium",
    },
    staticIP: "192.168.0.5",
    subnetId: "/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones: ["1"],
});
import pulumi
import pulumi_azure_native as azure_native
redis = azure_native.cache.Redis("redis",
    enable_non_ssl_port=True,
    location="West US",
    minimum_tls_version=azure_native.cache.TlsVersion.TLS_VERSION_1_2,
    name="cache1",
    redis_configuration={
        "maxmemory_policy": "allkeys-lru",
    },
    redis_version="Latest",
    replicas_per_primary=2,
    resource_group_name="rg1",
    shard_count=2,
    sku={
        "capacity": 1,
        "family": azure_native.cache.SkuFamily.P,
        "name": "Premium",
    },
    static_ip="192.168.0.5",
    subnet_id="/subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1",
    zones=["1"])
resources:
  redis:
    type: azure-native:cache:Redis
    properties:
      enableNonSslPort: true
      location: West US
      minimumTlsVersion: '1.2'
      name: cache1
      redisConfiguration:
        maxmemoryPolicy: allkeys-lru
      redisVersion: Latest
      replicasPerPrimary: 2
      resourceGroupName: rg1
      shardCount: 2
      sku:
        capacity: 1
        family: P
        name: Premium
      staticIP: 192.168.0.5
      subnetId: /subscriptions/subid/resourceGroups/rg2/providers/Microsoft.Network/virtualNetworks/network1/subnets/subnet1
      zones:
        - '1'
Create Redis Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Redis(name: string, args: RedisArgs, opts?: CustomResourceOptions);@overload
def Redis(resource_name: str,
          args: RedisArgs,
          opts: Optional[ResourceOptions] = None)
@overload
def Redis(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          resource_group_name: Optional[str] = None,
          sku: Optional[SkuArgs] = None,
          name: Optional[str] = None,
          replicas_per_primary: Optional[int] = None,
          enable_non_ssl_port: Optional[bool] = None,
          public_network_access: Optional[Union[str, PublicNetworkAccess]] = None,
          redis_configuration: Optional[RedisCommonPropertiesRedisConfigurationArgs] = None,
          redis_version: Optional[str] = None,
          replicas_per_master: Optional[int] = None,
          minimum_tls_version: Optional[Union[str, TlsVersion]] = None,
          location: Optional[str] = None,
          shard_count: Optional[int] = None,
          identity: Optional[ManagedServiceIdentityArgs] = None,
          static_ip: Optional[str] = None,
          subnet_id: Optional[str] = None,
          tags: Optional[Mapping[str, str]] = None,
          tenant_settings: Optional[Mapping[str, str]] = None,
          zones: Optional[Sequence[str]] = None)func NewRedis(ctx *Context, name string, args RedisArgs, opts ...ResourceOption) (*Redis, error)public Redis(string name, RedisArgs args, CustomResourceOptions? opts = null)type: azure-native:cache:Redis
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 RedisArgs
- 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 RedisArgs
- 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 RedisArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RedisArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RedisArgs
- 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 redisResource = new AzureNative.Cache.Redis("redisResource", new()
{
    ResourceGroupName = "string",
    Sku = new AzureNative.Cache.Inputs.SkuArgs
    {
        Capacity = 0,
        Family = "string",
        Name = "string",
    },
    Name = "string",
    ReplicasPerPrimary = 0,
    EnableNonSslPort = false,
    PublicNetworkAccess = "string",
    RedisConfiguration = new AzureNative.Cache.Inputs.RedisCommonPropertiesRedisConfigurationArgs
    {
        AofBackupEnabled = "string",
        AofStorageConnectionString0 = "string",
        AofStorageConnectionString1 = "string",
        Authnotrequired = "string",
        MaxfragmentationmemoryReserved = "string",
        MaxmemoryDelta = "string",
        MaxmemoryPolicy = "string",
        MaxmemoryReserved = "string",
        PreferredDataPersistenceAuthMethod = "string",
        RdbBackupEnabled = "string",
        RdbBackupFrequency = "string",
        RdbBackupMaxSnapshotCount = "string",
        RdbStorageConnectionString = "string",
        StorageSubscriptionId = "string",
    },
    RedisVersion = "string",
    ReplicasPerMaster = 0,
    MinimumTlsVersion = "string",
    Location = "string",
    ShardCount = 0,
    Identity = new AzureNative.Cache.Inputs.ManagedServiceIdentityArgs
    {
        Type = "string",
        UserAssignedIdentities = new[]
        {
            "string",
        },
    },
    StaticIP = "string",
    SubnetId = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TenantSettings = 
    {
        { "string", "string" },
    },
    Zones = new[]
    {
        "string",
    },
});
example, err := cache.NewRedis(ctx, "redisResource", &cache.RedisArgs{
	ResourceGroupName: pulumi.String("string"),
	Sku: &cache.SkuArgs{
		Capacity: pulumi.Int(0),
		Family:   pulumi.String("string"),
		Name:     pulumi.String("string"),
	},
	Name:                pulumi.String("string"),
	ReplicasPerPrimary:  pulumi.Int(0),
	EnableNonSslPort:    pulumi.Bool(false),
	PublicNetworkAccess: pulumi.String("string"),
	RedisConfiguration: &cache.RedisCommonPropertiesRedisConfigurationArgs{
		AofBackupEnabled:                   pulumi.String("string"),
		AofStorageConnectionString0:        pulumi.String("string"),
		AofStorageConnectionString1:        pulumi.String("string"),
		Authnotrequired:                    pulumi.String("string"),
		MaxfragmentationmemoryReserved:     pulumi.String("string"),
		MaxmemoryDelta:                     pulumi.String("string"),
		MaxmemoryPolicy:                    pulumi.String("string"),
		MaxmemoryReserved:                  pulumi.String("string"),
		PreferredDataPersistenceAuthMethod: pulumi.String("string"),
		RdbBackupEnabled:                   pulumi.String("string"),
		RdbBackupFrequency:                 pulumi.String("string"),
		RdbBackupMaxSnapshotCount:          pulumi.String("string"),
		RdbStorageConnectionString:         pulumi.String("string"),
		StorageSubscriptionId:              pulumi.String("string"),
	},
	RedisVersion:      pulumi.String("string"),
	ReplicasPerMaster: pulumi.Int(0),
	MinimumTlsVersion: pulumi.String("string"),
	Location:          pulumi.String("string"),
	ShardCount:        pulumi.Int(0),
	Identity: &cache.ManagedServiceIdentityArgs{
		Type: pulumi.String("string"),
		UserAssignedIdentities: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
	StaticIP: pulumi.String("string"),
	SubnetId: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TenantSettings: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	Zones: pulumi.StringArray{
		pulumi.String("string"),
	},
})
var redisResource = new Redis("redisResource", RedisArgs.builder()
    .resourceGroupName("string")
    .sku(SkuArgs.builder()
        .capacity(0)
        .family("string")
        .name("string")
        .build())
    .name("string")
    .replicasPerPrimary(0)
    .enableNonSslPort(false)
    .publicNetworkAccess("string")
    .redisConfiguration(RedisCommonPropertiesRedisConfigurationArgs.builder()
        .aofBackupEnabled("string")
        .aofStorageConnectionString0("string")
        .aofStorageConnectionString1("string")
        .authnotrequired("string")
        .maxfragmentationmemoryReserved("string")
        .maxmemoryDelta("string")
        .maxmemoryPolicy("string")
        .maxmemoryReserved("string")
        .preferredDataPersistenceAuthMethod("string")
        .rdbBackupEnabled("string")
        .rdbBackupFrequency("string")
        .rdbBackupMaxSnapshotCount("string")
        .rdbStorageConnectionString("string")
        .storageSubscriptionId("string")
        .build())
    .redisVersion("string")
    .replicasPerMaster(0)
    .minimumTlsVersion("string")
    .location("string")
    .shardCount(0)
    .identity(ManagedServiceIdentityArgs.builder()
        .type("string")
        .userAssignedIdentities("string")
        .build())
    .staticIP("string")
    .subnetId("string")
    .tags(Map.of("string", "string"))
    .tenantSettings(Map.of("string", "string"))
    .zones("string")
    .build());
redis_resource = azure_native.cache.Redis("redisResource",
    resource_group_name="string",
    sku={
        "capacity": 0,
        "family": "string",
        "name": "string",
    },
    name="string",
    replicas_per_primary=0,
    enable_non_ssl_port=False,
    public_network_access="string",
    redis_configuration={
        "aof_backup_enabled": "string",
        "aof_storage_connection_string0": "string",
        "aof_storage_connection_string1": "string",
        "authnotrequired": "string",
        "maxfragmentationmemory_reserved": "string",
        "maxmemory_delta": "string",
        "maxmemory_policy": "string",
        "maxmemory_reserved": "string",
        "preferred_data_persistence_auth_method": "string",
        "rdb_backup_enabled": "string",
        "rdb_backup_frequency": "string",
        "rdb_backup_max_snapshot_count": "string",
        "rdb_storage_connection_string": "string",
        "storage_subscription_id": "string",
    },
    redis_version="string",
    replicas_per_master=0,
    minimum_tls_version="string",
    location="string",
    shard_count=0,
    identity={
        "type": "string",
        "user_assigned_identities": ["string"],
    },
    static_ip="string",
    subnet_id="string",
    tags={
        "string": "string",
    },
    tenant_settings={
        "string": "string",
    },
    zones=["string"])
const redisResource = new azure_native.cache.Redis("redisResource", {
    resourceGroupName: "string",
    sku: {
        capacity: 0,
        family: "string",
        name: "string",
    },
    name: "string",
    replicasPerPrimary: 0,
    enableNonSslPort: false,
    publicNetworkAccess: "string",
    redisConfiguration: {
        aofBackupEnabled: "string",
        aofStorageConnectionString0: "string",
        aofStorageConnectionString1: "string",
        authnotrequired: "string",
        maxfragmentationmemoryReserved: "string",
        maxmemoryDelta: "string",
        maxmemoryPolicy: "string",
        maxmemoryReserved: "string",
        preferredDataPersistenceAuthMethod: "string",
        rdbBackupEnabled: "string",
        rdbBackupFrequency: "string",
        rdbBackupMaxSnapshotCount: "string",
        rdbStorageConnectionString: "string",
        storageSubscriptionId: "string",
    },
    redisVersion: "string",
    replicasPerMaster: 0,
    minimumTlsVersion: "string",
    location: "string",
    shardCount: 0,
    identity: {
        type: "string",
        userAssignedIdentities: ["string"],
    },
    staticIP: "string",
    subnetId: "string",
    tags: {
        string: "string",
    },
    tenantSettings: {
        string: "string",
    },
    zones: ["string"],
});
type: azure-native:cache:Redis
properties:
    enableNonSslPort: false
    identity:
        type: string
        userAssignedIdentities:
            - string
    location: string
    minimumTlsVersion: string
    name: string
    publicNetworkAccess: string
    redisConfiguration:
        aofBackupEnabled: string
        aofStorageConnectionString0: string
        aofStorageConnectionString1: string
        authnotrequired: string
        maxfragmentationmemoryReserved: string
        maxmemoryDelta: string
        maxmemoryPolicy: string
        maxmemoryReserved: string
        preferredDataPersistenceAuthMethod: string
        rdbBackupEnabled: string
        rdbBackupFrequency: string
        rdbBackupMaxSnapshotCount: string
        rdbStorageConnectionString: string
        storageSubscriptionId: string
    redisVersion: string
    replicasPerMaster: 0
    replicasPerPrimary: 0
    resourceGroupName: string
    shardCount: 0
    sku:
        capacity: 0
        family: string
        name: string
    staticIP: string
    subnetId: string
    tags:
        string: string
    tenantSettings:
        string: string
    zones:
        - string
Redis 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 Redis resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group.
- Sku
Pulumi.Azure Native. Cache. Inputs. Sku 
- The SKU of the Redis cache to deploy.
- EnableNon boolSsl Port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- Identity
Pulumi.Azure Native. Cache. Inputs. Managed Service Identity 
- The identity of the resource.
- Location string
- The geo-location where the resource lives
- MinimumTls string | Pulumi.Version Azure Native. Cache. Tls Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- Name string
- The name of the Redis cache.
- PublicNetwork string | Pulumi.Access Azure Native. Cache. Public Network Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- RedisConfiguration Pulumi.Azure Native. Cache. Inputs. Redis Common Properties Redis Configuration 
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- RedisVersion string
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- ReplicasPer intMaster 
- The number of replicas to be created per primary.
- ReplicasPer intPrimary 
- The number of replicas to be created per primary.
- int
- The number of shards to be created on a Premium Cluster Cache.
- StaticIP string
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- SubnetId string
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- Dictionary<string, string>
- Resource tags.
- TenantSettings Dictionary<string, string>
- A dictionary of tenant settings
- Zones List<string>
- A list of availability zones denoting where the resource needs to come from.
- ResourceGroup stringName 
- The name of the resource group.
- Sku
SkuArgs 
- The SKU of the Redis cache to deploy.
- EnableNon boolSsl Port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- Identity
ManagedService Identity Args 
- The identity of the resource.
- Location string
- The geo-location where the resource lives
- MinimumTls string | TlsVersion Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- Name string
- The name of the Redis cache.
- PublicNetwork string | PublicAccess Network Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- RedisConfiguration RedisCommon Properties Redis Configuration Args 
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- RedisVersion string
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- ReplicasPer intMaster 
- The number of replicas to be created per primary.
- ReplicasPer intPrimary 
- The number of replicas to be created per primary.
- int
- The number of shards to be created on a Premium Cluster Cache.
- StaticIP string
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- SubnetId string
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- map[string]string
- Resource tags.
- TenantSettings map[string]string
- A dictionary of tenant settings
- Zones []string
- A list of availability zones denoting where the resource needs to come from.
- resourceGroup StringName 
- The name of the resource group.
- sku Sku
- The SKU of the Redis cache to deploy.
- enableNon BooleanSsl Port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- identity
ManagedService Identity 
- The identity of the resource.
- location String
- The geo-location where the resource lives
- minimumTls String | TlsVersion Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- name String
- The name of the Redis cache.
- publicNetwork String | PublicAccess Network Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- redisConfiguration RedisCommon Properties Redis Configuration 
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- redisVersion String
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- replicasPer IntegerMaster 
- The number of replicas to be created per primary.
- replicasPer IntegerPrimary 
- The number of replicas to be created per primary.
- Integer
- The number of shards to be created on a Premium Cluster Cache.
- staticIP String
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- subnetId String
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- Map<String,String>
- Resource tags.
- tenantSettings Map<String,String>
- A dictionary of tenant settings
- zones List<String>
- A list of availability zones denoting where the resource needs to come from.
- resourceGroup stringName 
- The name of the resource group.
- sku Sku
- The SKU of the Redis cache to deploy.
- enableNon booleanSsl Port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- identity
ManagedService Identity 
- The identity of the resource.
- location string
- The geo-location where the resource lives
- minimumTls string | TlsVersion Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- name string
- The name of the Redis cache.
- publicNetwork string | PublicAccess Network Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- redisConfiguration RedisCommon Properties Redis Configuration 
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- redisVersion string
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- replicasPer numberMaster 
- The number of replicas to be created per primary.
- replicasPer numberPrimary 
- The number of replicas to be created per primary.
- number
- The number of shards to be created on a Premium Cluster Cache.
- staticIP string
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- subnetId string
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- {[key: string]: string}
- Resource tags.
- tenantSettings {[key: string]: string}
- A dictionary of tenant settings
- zones string[]
- A list of availability zones denoting where the resource needs to come from.
- resource_group_ strname 
- The name of the resource group.
- sku
SkuArgs 
- The SKU of the Redis cache to deploy.
- enable_non_ boolssl_ port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- identity
ManagedService Identity Args 
- The identity of the resource.
- location str
- The geo-location where the resource lives
- minimum_tls_ str | Tlsversion Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- name str
- The name of the Redis cache.
- public_network_ str | Publicaccess Network Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- redis_configuration RedisCommon Properties Redis Configuration Args 
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- redis_version str
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- replicas_per_ intmaster 
- The number of replicas to be created per primary.
- replicas_per_ intprimary 
- The number of replicas to be created per primary.
- int
- The number of shards to be created on a Premium Cluster Cache.
- static_ip str
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- subnet_id str
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- Mapping[str, str]
- Resource tags.
- tenant_settings Mapping[str, str]
- A dictionary of tenant settings
- zones Sequence[str]
- A list of availability zones denoting where the resource needs to come from.
- resourceGroup StringName 
- The name of the resource group.
- sku Property Map
- The SKU of the Redis cache to deploy.
- enableNon BooleanSsl Port 
- Specifies whether the non-ssl Redis server port (6379) is enabled.
- identity Property Map
- The identity of the resource.
- location String
- The geo-location where the resource lives
- minimumTls String | "1.0" | "1.1" | "1.2"Version 
- Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2')
- name String
- The name of the Redis cache.
- publicNetwork String | "Enabled" | "Disabled"Access 
- Whether or not public endpoint access is allowed for this cache. Value is optional, but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Note: This setting is important for caches with private endpoints. It has no effect on caches that are joined to, or injected into, a virtual network subnet.
- redisConfiguration Property Map
- All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.
- redisVersion String
- Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.
- replicasPer NumberMaster 
- The number of replicas to be created per primary.
- replicasPer NumberPrimary 
- The number of replicas to be created per primary.
- Number
- The number of shards to be created on a Premium Cluster Cache.
- staticIP String
- Static IP address. Optionally, may be specified when deploying a Redis cache inside an existing Azure Virtual Network; auto assigned by default.
- subnetId String
- The full resource ID of a subnet in a virtual network to deploy the Redis cache in. Example format: /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/Microsoft.{Network|ClassicNetwork}/VirtualNetworks/vnet1/subnets/subnet1
- Map<String>
- Resource tags.
- tenantSettings Map<String>
- A dictionary of tenant settings
- zones List<String>
- A list of availability zones denoting where the resource needs to come from.
Outputs
All input properties are implicitly available as output properties. Additionally, the Redis resource produces the following output properties:
- AccessKeys Pulumi.Azure Native. Cache. Outputs. Redis Access Keys Response 
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- HostName string
- Redis host name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instances
List<Pulumi.Azure Native. Cache. Outputs. Redis Instance Details Response> 
- List of the Redis instances associated with the cache
- LinkedServers List<Pulumi.Azure Native. Cache. Outputs. Redis Linked Server Response> 
- List of the linked servers associated with the cache
- Port int
- Redis non-SSL port.
- PrivateEndpoint List<Pulumi.Connections Azure Native. Cache. Outputs. Private Endpoint Connection Response> 
- List of private endpoint connection associated with the specified redis cache
- ProvisioningState string
- Redis instance provisioning status.
- SslPort int
- Redis SSL port.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- AccessKeys RedisAccess Keys Response 
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- HostName string
- Redis host name.
- Id string
- The provider-assigned unique ID for this managed resource.
- Instances
[]RedisInstance Details Response 
- List of the Redis instances associated with the cache
- LinkedServers []RedisLinked Server Response 
- List of the linked servers associated with the cache
- Port int
- Redis non-SSL port.
- PrivateEndpoint []PrivateConnections Endpoint Connection Response 
- List of private endpoint connection associated with the specified redis cache
- ProvisioningState string
- Redis instance provisioning status.
- SslPort int
- Redis SSL port.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accessKeys RedisAccess Keys Response 
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- hostName String
- Redis host name.
- id String
- The provider-assigned unique ID for this managed resource.
- instances
List<RedisInstance Details Response> 
- List of the Redis instances associated with the cache
- linkedServers List<RedisLinked Server Response> 
- List of the linked servers associated with the cache
- port Integer
- Redis non-SSL port.
- privateEndpoint List<PrivateConnections Endpoint Connection Response> 
- List of private endpoint connection associated with the specified redis cache
- provisioningState String
- Redis instance provisioning status.
- sslPort Integer
- Redis SSL port.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accessKeys RedisAccess Keys Response 
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- hostName string
- Redis host name.
- id string
- The provider-assigned unique ID for this managed resource.
- instances
RedisInstance Details Response[] 
- List of the Redis instances associated with the cache
- linkedServers RedisLinked Server Response[] 
- List of the linked servers associated with the cache
- port number
- Redis non-SSL port.
- privateEndpoint PrivateConnections Endpoint Connection Response[] 
- List of private endpoint connection associated with the specified redis cache
- provisioningState string
- Redis instance provisioning status.
- sslPort number
- Redis SSL port.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- access_keys RedisAccess Keys Response 
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- host_name str
- Redis host name.
- id str
- The provider-assigned unique ID for this managed resource.
- instances
Sequence[RedisInstance Details Response] 
- List of the Redis instances associated with the cache
- linked_servers Sequence[RedisLinked Server Response] 
- List of the linked servers associated with the cache
- port int
- Redis non-SSL port.
- private_endpoint_ Sequence[Privateconnections Endpoint Connection Response] 
- List of private endpoint connection associated with the specified redis cache
- provisioning_state str
- Redis instance provisioning status.
- ssl_port int
- Redis SSL port.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- accessKeys Property Map
- The keys of the Redis cache - not set if this object is not the response to Create or Update redis cache
- hostName String
- Redis host name.
- id String
- The provider-assigned unique ID for this managed resource.
- instances List<Property Map>
- List of the Redis instances associated with the cache
- linkedServers List<Property Map>
- List of the linked servers associated with the cache
- port Number
- Redis non-SSL port.
- privateEndpoint List<Property Map>Connections 
- List of private endpoint connection associated with the specified redis cache
- provisioningState String
- Redis instance provisioning status.
- sslPort Number
- Redis SSL port.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
ManagedServiceIdentity, ManagedServiceIdentityArgs      
- Type
string | Pulumi.Azure Native. Cache. Managed Service Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned List<string>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- UserAssigned []stringIdentities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned string[]Identities 
- 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 | ManagedService Identity Type 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- user_assigned_ Sequence[str]identities 
- 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" | "User Assigned" | "System Assigned, User Assigned" 
- Type of managed service identity (where both SystemAssigned and UserAssigned types are allowed).
- userAssigned List<String>Identities 
- 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        
- 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).
- UserAssigned Dictionary<string, Pulumi.Identities Azure Native. Cache. Inputs. User Assigned Identity Response> 
- 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).
- UserAssigned map[string]UserIdentities Assigned Identity Response 
- 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).
- userAssigned Map<String,UserIdentities Assigned Identity Response> 
- 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).
- userAssigned {[key: string]: UserIdentities Assigned Identity Response} 
- 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_ Mapping[str, Useridentities Assigned Identity Response] 
- 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).
- userAssigned Map<Property Map>Identities 
- 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_User Assigned 
- SystemAssigned, UserAssigned
- ManagedService Identity Type None 
- None
- ManagedService Identity Type System Assigned 
- SystemAssigned
- ManagedService Identity Type User Assigned 
- UserAssigned
- ManagedService Identity Type_System Assigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- None
- None
- SystemAssigned 
- SystemAssigned
- UserAssigned 
- UserAssigned
- SystemAssigned_User Assigned 
- SystemAssigned, UserAssigned
- NONE
- None
- SYSTEM_ASSIGNED
- SystemAssigned
- USER_ASSIGNED
- UserAssigned
- SYSTEM_ASSIGNED_USER_ASSIGNED
- SystemAssigned, UserAssigned
- "None"
- None
- "SystemAssigned" 
- SystemAssigned
- "UserAssigned" 
- UserAssigned
- "SystemAssigned, User Assigned" 
- SystemAssigned, UserAssigned
PrivateEndpointConnectionResponse, PrivateEndpointConnectionResponseArgs        
- 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
- PrivateLink Pulumi.Service Connection State Azure Native. Cache. Inputs. Private Link Service Connection State Response 
- 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.
- SystemData Pulumi.Azure Native. Cache. Inputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- PrivateEndpoint Pulumi.Azure Native. Cache. Inputs. Private Endpoint Response 
- 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
- PrivateLink PrivateService Connection State Link Service Connection State Response 
- 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.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- PrivateEndpoint PrivateEndpoint Response 
- 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- 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.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- privateEndpoint PrivateEndpoint Response 
- 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
- privateLink PrivateService Connection State Link Service Connection State Response 
- 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.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- privateEndpoint PrivateEndpoint Response 
- 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_ Privateservice_ connection_ state Link Service Connection State Response 
- 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.
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- private_endpoint PrivateEndpoint Response 
- 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
- privateLink Property MapService Connection State 
- 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.
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- 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      
- 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            
- 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.
PublicNetworkAccess, PublicNetworkAccessArgs      
- Enabled
- Enabled
- Disabled
- Disabled
- PublicNetwork Access Enabled 
- Enabled
- PublicNetwork Access Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
RedisAccessKeysResponse, RedisAccessKeysResponseArgs        
- PrimaryKey string
- The current primary key that clients can use to authenticate with Redis cache.
- SecondaryKey string
- The current secondary key that clients can use to authenticate with Redis cache.
- PrimaryKey string
- The current primary key that clients can use to authenticate with Redis cache.
- SecondaryKey string
- The current secondary key that clients can use to authenticate with Redis cache.
- primaryKey String
- The current primary key that clients can use to authenticate with Redis cache.
- secondaryKey String
- The current secondary key that clients can use to authenticate with Redis cache.
- primaryKey string
- The current primary key that clients can use to authenticate with Redis cache.
- secondaryKey string
- The current secondary key that clients can use to authenticate with Redis cache.
- primary_key str
- The current primary key that clients can use to authenticate with Redis cache.
- secondary_key str
- The current secondary key that clients can use to authenticate with Redis cache.
- primaryKey String
- The current primary key that clients can use to authenticate with Redis cache.
- secondaryKey String
- The current secondary key that clients can use to authenticate with Redis cache.
RedisCommonPropertiesRedisConfiguration, RedisCommonPropertiesRedisConfigurationArgs          
- AofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- AofStorage stringConnection String0 
- First storage account connection string
- AofStorage stringConnection String1 
- Second storage account connection string
- Authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- MaxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- MaxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- MaxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- MaxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- PreferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- RdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- RdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- RdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- RdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- StorageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- AofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- AofStorage stringConnection String0 
- First storage account connection string
- AofStorage stringConnection String1 
- Second storage account connection string
- Authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- MaxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- MaxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- MaxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- MaxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- PreferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- RdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- RdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- RdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- RdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- StorageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- aofBackup StringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage StringConnection String0 
- First storage account connection string
- aofStorage StringConnection String1 
- Second storage account connection string
- authnotrequired String
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved String
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy String
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData StringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup StringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup StringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup StringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage StringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription StringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- aofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage stringConnection String0 
- First storage account connection string
- aofStorage stringConnection String1 
- Second storage account connection string
- authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- aof_backup_ strenabled 
- Specifies whether the aof backup is enabled
- aof_storage_ strconnection_ string0 
- First storage account connection string
- aof_storage_ strconnection_ string1 
- Second storage account connection string
- authnotrequired str
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemory_reserved str
- Value in megabytes reserved for fragmentation per shard
- maxmemory_delta str
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemory_policy str
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemory_reserved str
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferred_data_ strpersistence_ auth_ method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdb_backup_ strenabled 
- Specifies whether the rdb backup is enabled
- rdb_backup_ strfrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdb_backup_ strmax_ snapshot_ count 
- Specifies the maximum number of snapshots for rdb backup
- rdb_storage_ strconnection_ string 
- The storage account connection string for storing rdb file
- storage_subscription_ strid 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- aofBackup StringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage StringConnection String0 
- First storage account connection string
- aofStorage StringConnection String1 
- Second storage account connection string
- authnotrequired String
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved String
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy String
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData StringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup StringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup StringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup StringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage StringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription StringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
RedisCommonPropertiesResponseRedisConfiguration, RedisCommonPropertiesResponseRedisConfigurationArgs            
- Maxclients string
- The max clients config
- PreferredData stringArchive Auth Method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- ZonalConfiguration string
- Zonal Configuration
- AofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- AofStorage stringConnection String0 
- First storage account connection string
- AofStorage stringConnection String1 
- Second storage account connection string
- Authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- MaxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- MaxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- MaxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- MaxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- PreferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- RdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- RdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- RdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- RdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- StorageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- Maxclients string
- The max clients config
- PreferredData stringArchive Auth Method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- ZonalConfiguration string
- Zonal Configuration
- AofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- AofStorage stringConnection String0 
- First storage account connection string
- AofStorage stringConnection String1 
- Second storage account connection string
- Authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- MaxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- MaxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- MaxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- MaxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- PreferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- RdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- RdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- RdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- RdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- StorageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- maxclients String
- The max clients config
- preferredData StringArchive Auth Method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- zonalConfiguration String
- Zonal Configuration
- aofBackup StringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage StringConnection String0 
- First storage account connection string
- aofStorage StringConnection String1 
- Second storage account connection string
- authnotrequired String
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved String
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy String
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData StringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup StringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup StringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup StringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage StringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription StringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- maxclients string
- The max clients config
- preferredData stringArchive Auth Method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- zonalConfiguration string
- Zonal Configuration
- aofBackup stringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage stringConnection String0 
- First storage account connection string
- aofStorage stringConnection String1 
- Second storage account connection string
- authnotrequired string
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved string
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy string
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved string
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData stringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup stringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup stringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup stringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage stringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription stringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- maxclients str
- The max clients config
- preferred_data_ strarchive_ auth_ method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- zonal_configuration str
- Zonal Configuration
- aof_backup_ strenabled 
- Specifies whether the aof backup is enabled
- aof_storage_ strconnection_ string0 
- First storage account connection string
- aof_storage_ strconnection_ string1 
- Second storage account connection string
- authnotrequired str
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemory_reserved str
- Value in megabytes reserved for fragmentation per shard
- maxmemory_delta str
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemory_policy str
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemory_reserved str
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferred_data_ strpersistence_ auth_ method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdb_backup_ strenabled 
- Specifies whether the rdb backup is enabled
- rdb_backup_ strfrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdb_backup_ strmax_ snapshot_ count 
- Specifies the maximum number of snapshots for rdb backup
- rdb_storage_ strconnection_ string 
- The storage account connection string for storing rdb file
- storage_subscription_ strid 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
- maxclients String
- The max clients config
- preferredData StringArchive Auth Method 
- Preferred auth method to communicate to storage account used for data archive, specify SAS or ManagedIdentity, default value is SAS
- zonalConfiguration String
- Zonal Configuration
- aofBackup StringEnabled 
- Specifies whether the aof backup is enabled
- aofStorage StringConnection String0 
- First storage account connection string
- aofStorage StringConnection String1 
- Second storage account connection string
- authnotrequired String
- Specifies whether the authentication is disabled. Setting this property is highly discouraged from security point of view.
- maxfragmentationmemoryReserved String
- Value in megabytes reserved for fragmentation per shard
- maxmemoryDelta String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- maxmemoryPolicy String
- The eviction strategy used when your data won't fit within its memory limit.
- maxmemoryReserved String
- Value in megabytes reserved for non-cache usage per shard e.g. failover.
- preferredData StringPersistence Auth Method 
- Preferred auth method to communicate to storage account used for data persistence, specify SAS or ManagedIdentity, default value is SAS
- rdbBackup StringEnabled 
- Specifies whether the rdb backup is enabled
- rdbBackup StringFrequency 
- Specifies the frequency for creating rdb backup in minutes. Valid values: (15, 30, 60, 360, 720, 1440)
- rdbBackup StringMax Snapshot Count 
- Specifies the maximum number of snapshots for rdb backup
- rdbStorage StringConnection String 
- The storage account connection string for storing rdb file
- storageSubscription StringId 
- SubscriptionId of the storage account for persistence (aof/rdb) using ManagedIdentity.
RedisInstanceDetailsResponse, RedisInstanceDetailsResponseArgs        
- IsMaster bool
- Specifies whether the instance is a primary node.
- IsPrimary bool
- Specifies whether the instance is a primary node.
- NonSsl intPort 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- int
- If clustering is enabled, the Shard ID of Redis Instance
- SslPort int
- Redis instance SSL port.
- Zone string
- If the Cache uses availability zones, specifies availability zone where this instance is located.
- IsMaster bool
- Specifies whether the instance is a primary node.
- IsPrimary bool
- Specifies whether the instance is a primary node.
- NonSsl intPort 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- int
- If clustering is enabled, the Shard ID of Redis Instance
- SslPort int
- Redis instance SSL port.
- Zone string
- If the Cache uses availability zones, specifies availability zone where this instance is located.
- isMaster Boolean
- Specifies whether the instance is a primary node.
- isPrimary Boolean
- Specifies whether the instance is a primary node.
- nonSsl IntegerPort 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- Integer
- If clustering is enabled, the Shard ID of Redis Instance
- sslPort Integer
- Redis instance SSL port.
- zone String
- If the Cache uses availability zones, specifies availability zone where this instance is located.
- isMaster boolean
- Specifies whether the instance is a primary node.
- isPrimary boolean
- Specifies whether the instance is a primary node.
- nonSsl numberPort 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- number
- If clustering is enabled, the Shard ID of Redis Instance
- sslPort number
- Redis instance SSL port.
- zone string
- If the Cache uses availability zones, specifies availability zone where this instance is located.
- is_master bool
- Specifies whether the instance is a primary node.
- is_primary bool
- Specifies whether the instance is a primary node.
- non_ssl_ intport 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- int
- If clustering is enabled, the Shard ID of Redis Instance
- ssl_port int
- Redis instance SSL port.
- zone str
- If the Cache uses availability zones, specifies availability zone where this instance is located.
- isMaster Boolean
- Specifies whether the instance is a primary node.
- isPrimary Boolean
- Specifies whether the instance is a primary node.
- nonSsl NumberPort 
- If enableNonSslPort is true, provides Redis instance Non-SSL port.
- Number
- If clustering is enabled, the Shard ID of Redis Instance
- sslPort Number
- Redis instance SSL port.
- zone String
- If the Cache uses availability zones, specifies availability zone where this instance is located.
RedisLinkedServerResponse, RedisLinkedServerResponseArgs        
- Id string
- Linked server Id.
- Id string
- Linked server Id.
- id String
- Linked server Id.
- id string
- Linked server Id.
- id str
- Linked server Id.
- id String
- Linked server Id.
Sku, SkuArgs  
- Capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- Family
string | Pulumi.Azure Native. Cache. Sku Family 
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- Name
string | Pulumi.Azure Native. Cache. Sku Name 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- Capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- Family
string | SkuFamily 
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- Name
string | SkuName 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity Integer
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family
String | SkuFamily 
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name
String | SkuName 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity number
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family
string | SkuFamily 
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name
string | SkuName 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family
str | SkuFamily 
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name
str | SkuName 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity Number
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family String | "C" | "P"
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name
String | "Enterprise_E10" | "Enterprise_E20" | "Enterprise_E50" | "Enterprise_E100" | "EnterpriseFlash_F300" | "Enterprise Flash_F700" | "Enterprise Flash_F1500" 
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
SkuFamily, SkuFamilyArgs    
- C
- C
- P
- P
- SkuFamily C 
- C
- SkuFamily P 
- P
- C
- C
- P
- P
- C
- C
- P
- P
- C
- C
- P
- P
- "C"
- C
- "P"
- P
SkuName, SkuNameArgs    
- Enterprise_E10
- Enterprise_E10
- Enterprise_E20
- Enterprise_E20
- Enterprise_E50
- Enterprise_E50
- Enterprise_E100
- Enterprise_E100
- EnterpriseFlash_F300 
- EnterpriseFlash_F300
- EnterpriseFlash_F700 
- EnterpriseFlash_F700
- EnterpriseFlash_F1500 
- EnterpriseFlash_F1500
- SkuName_Enterprise_E10 
- Enterprise_E10
- SkuName_Enterprise_E20 
- Enterprise_E20
- SkuName_Enterprise_E50 
- Enterprise_E50
- SkuName_Enterprise_E100 
- Enterprise_E100
- SkuName_Enterprise Flash_F300 
- EnterpriseFlash_F300
- SkuName_Enterprise Flash_F700 
- EnterpriseFlash_F700
- SkuName_Enterprise Flash_F1500 
- EnterpriseFlash_F1500
- Enterprise_E10
- Enterprise_E10
- Enterprise_E20
- Enterprise_E20
- Enterprise_E50
- Enterprise_E50
- Enterprise_E100
- Enterprise_E100
- EnterpriseFlash_F300 
- EnterpriseFlash_F300
- EnterpriseFlash_F700 
- EnterpriseFlash_F700
- EnterpriseFlash_F1500 
- EnterpriseFlash_F1500
- Enterprise_E10
- Enterprise_E10
- Enterprise_E20
- Enterprise_E20
- Enterprise_E50
- Enterprise_E50
- Enterprise_E100
- Enterprise_E100
- EnterpriseFlash_F300 
- EnterpriseFlash_F300
- EnterpriseFlash_F700 
- EnterpriseFlash_F700
- EnterpriseFlash_F1500 
- EnterpriseFlash_F1500
- ENTERPRISE_E10
- Enterprise_E10
- ENTERPRISE_E20
- Enterprise_E20
- ENTERPRISE_E50
- Enterprise_E50
- ENTERPRISE_E100
- Enterprise_E100
- ENTERPRISE_FLASH_F300
- EnterpriseFlash_F300
- ENTERPRISE_FLASH_F700
- EnterpriseFlash_F700
- ENTERPRISE_FLASH_F1500
- EnterpriseFlash_F1500
- "Enterprise_E10"
- Enterprise_E10
- "Enterprise_E20"
- Enterprise_E20
- "Enterprise_E50"
- Enterprise_E50
- "Enterprise_E100"
- Enterprise_E100
- "EnterpriseFlash_F300" 
- EnterpriseFlash_F300
- "EnterpriseFlash_F700" 
- EnterpriseFlash_F700
- "EnterpriseFlash_F1500" 
- EnterpriseFlash_F1500
SkuResponse, SkuResponseArgs    
- Capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- Family string
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- Name string
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- Capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- Family string
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- Name string
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity Integer
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family String
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name String
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity number
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family string
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name string
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity int
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family str
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name str
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
- capacity Number
- The size of the Redis cache to deploy. Valid values: for C (Basic/Standard) family (0, 1, 2, 3, 4, 5, 6), for P (Premium) family (1, 2, 3, 4).
- family String
- The SKU family to use. Valid values: (C, P). (C = Basic/Standard, P = Premium).
- name String
- The type of Redis cache to deploy. Valid values: (Basic, Standard, Premium)
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
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        
- 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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cache:Redis cache1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Cache/redis/{name} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0