1. Packages
  2. Azure Native v1
  3. API Docs
  4. cache
  5. RedisEnterprise
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

azure-native.cache.RedisEnterprise

Explore with Pulumi AI

azure-native-v1 logo
These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi

    Describes the RedisEnterprise cluster API Version: 2021-03-01.

    Example Usage

    RedisEnterpriseCreate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var redisEnterprise = new AzureNative.Cache.RedisEnterprise("redisEnterprise", new()
        {
            ClusterName = "cache1",
            Location = "West US",
            MinimumTlsVersion = "1.2",
            ResourceGroupName = "rg1",
            Sku = new AzureNative.Cache.Inputs.EnterpriseSkuArgs
            {
                Capacity = 3,
                Name = "EnterpriseFlash_F300",
            },
            Tags = 
            {
                { "tag1", "value1" },
            },
            Zones = new[]
            {
                "1",
                "2",
                "3",
            },
        });
    
    });
    
    package main
    
    import (
    	cache "github.com/pulumi/pulumi-azure-native-sdk/cache"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cache.NewRedisEnterprise(ctx, "redisEnterprise", &cache.RedisEnterpriseArgs{
    			ClusterName:       pulumi.String("cache1"),
    			Location:          pulumi.String("West US"),
    			MinimumTlsVersion: pulumi.String("1.2"),
    			ResourceGroupName: pulumi.String("rg1"),
    			Sku: &cache.EnterpriseSkuArgs{
    				Capacity: pulumi.Int(3),
    				Name:     pulumi.String("EnterpriseFlash_F300"),
    			},
    			Tags: pulumi.StringMap{
    				"tag1": pulumi.String("value1"),
    			},
    			Zones: pulumi.StringArray{
    				pulumi.String("1"),
    				pulumi.String("2"),
    				pulumi.String("3"),
    			},
    		})
    		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.RedisEnterprise;
    import com.pulumi.azurenative.cache.RedisEnterpriseArgs;
    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 redisEnterprise = new RedisEnterprise("redisEnterprise", RedisEnterpriseArgs.builder()        
                .clusterName("cache1")
                .location("West US")
                .minimumTlsVersion("1.2")
                .resourceGroupName("rg1")
                .sku(Map.ofEntries(
                    Map.entry("capacity", 3),
                    Map.entry("name", "EnterpriseFlash_F300")
                ))
                .tags(Map.of("tag1", "value1"))
                .zones(            
                    "1",
                    "2",
                    "3")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    redis_enterprise = azure_native.cache.RedisEnterprise("redisEnterprise",
        cluster_name="cache1",
        location="West US",
        minimum_tls_version="1.2",
        resource_group_name="rg1",
        sku=azure_native.cache.EnterpriseSkuArgs(
            capacity=3,
            name="EnterpriseFlash_F300",
        ),
        tags={
            "tag1": "value1",
        },
        zones=[
            "1",
            "2",
            "3",
        ])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const redisEnterprise = new azure_native.cache.RedisEnterprise("redisEnterprise", {
        clusterName: "cache1",
        location: "West US",
        minimumTlsVersion: "1.2",
        resourceGroupName: "rg1",
        sku: {
            capacity: 3,
            name: "EnterpriseFlash_F300",
        },
        tags: {
            tag1: "value1",
        },
        zones: [
            "1",
            "2",
            "3",
        ],
    });
    
    resources:
      redisEnterprise:
        type: azure-native:cache:RedisEnterprise
        properties:
          clusterName: cache1
          location: West US
          minimumTlsVersion: '1.2'
          resourceGroupName: rg1
          sku:
            capacity: 3
            name: EnterpriseFlash_F300
          tags:
            tag1: value1
          zones:
            - '1'
            - '2'
            - '3'
    

    Create RedisEnterprise Resource

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

    Constructor syntax

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

    Parameters

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

    Constructor example

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

    var redisEnterpriseResource = new AzureNative.Cache.RedisEnterprise("redisEnterpriseResource", new()
    {
        ResourceGroupName = "string",
        Sku = 
        {
            { "name", "string" },
            { "capacity", 0 },
        },
        ClusterName = "string",
        Location = "string",
        MinimumTlsVersion = "string",
        Tags = 
        {
            { "string", "string" },
        },
        Zones = new[]
        {
            "string",
        },
    });
    
    example, err := cache.NewRedisEnterprise(ctx, "redisEnterpriseResource", &cache.RedisEnterpriseArgs{
    	ResourceGroupName: "string",
    	Sku: map[string]interface{}{
    		"name":     "string",
    		"capacity": 0,
    	},
    	ClusterName:       "string",
    	Location:          "string",
    	MinimumTlsVersion: "string",
    	Tags: map[string]interface{}{
    		"string": "string",
    	},
    	Zones: []string{
    		"string",
    	},
    })
    
    var redisEnterpriseResource = new RedisEnterprise("redisEnterpriseResource", RedisEnterpriseArgs.builder()
        .resourceGroupName("string")
        .sku(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .clusterName("string")
        .location("string")
        .minimumTlsVersion("string")
        .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
        .zones("string")
        .build());
    
    redis_enterprise_resource = azure_native.cache.RedisEnterprise("redisEnterpriseResource",
        resource_group_name=string,
        sku={
            name: string,
            capacity: 0,
        },
        cluster_name=string,
        location=string,
        minimum_tls_version=string,
        tags={
            string: string,
        },
        zones=[string])
    
    const redisEnterpriseResource = new azure_native.cache.RedisEnterprise("redisEnterpriseResource", {
        resourceGroupName: "string",
        sku: {
            name: "string",
            capacity: 0,
        },
        clusterName: "string",
        location: "string",
        minimumTlsVersion: "string",
        tags: {
            string: "string",
        },
        zones: ["string"],
    });
    
    type: azure-native:cache:RedisEnterprise
    properties:
        clusterName: string
        location: string
        minimumTlsVersion: string
        resourceGroupName: string
        sku:
            capacity: 0
            name: string
        tags:
            string: string
        zones:
            - string
    

    RedisEnterprise Resource Properties

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

    Inputs

    The RedisEnterprise resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku Pulumi.AzureNative.Cache.Inputs.EnterpriseSku
    The SKU to create, which affects price, performance, and features.
    ClusterName string
    The name of the RedisEnterprise cluster.
    Location string
    The geo-location where the resource lives
    MinimumTlsVersion string | Pulumi.AzureNative.Cache.TlsVersion
    The minimum TLS version for the cluster to support, e.g. '1.2'
    Tags Dictionary<string, string>
    Resource tags.
    Zones List<string>
    The Availability Zones where this cluster will be deployed.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Sku EnterpriseSkuArgs
    The SKU to create, which affects price, performance, and features.
    ClusterName string
    The name of the RedisEnterprise cluster.
    Location string
    The geo-location where the resource lives
    MinimumTlsVersion string | TlsVersion
    The minimum TLS version for the cluster to support, e.g. '1.2'
    Tags map[string]string
    Resource tags.
    Zones []string
    The Availability Zones where this cluster will be deployed.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku EnterpriseSku
    The SKU to create, which affects price, performance, and features.
    clusterName String
    The name of the RedisEnterprise cluster.
    location String
    The geo-location where the resource lives
    minimumTlsVersion String | TlsVersion
    The minimum TLS version for the cluster to support, e.g. '1.2'
    tags Map<String,String>
    Resource tags.
    zones List<String>
    The Availability Zones where this cluster will be deployed.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    sku EnterpriseSku
    The SKU to create, which affects price, performance, and features.
    clusterName string
    The name of the RedisEnterprise cluster.
    location string
    The geo-location where the resource lives
    minimumTlsVersion string | TlsVersion
    The minimum TLS version for the cluster to support, e.g. '1.2'
    tags {[key: string]: string}
    Resource tags.
    zones string[]
    The Availability Zones where this cluster will be deployed.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    sku EnterpriseSkuArgs
    The SKU to create, which affects price, performance, and features.
    cluster_name str
    The name of the RedisEnterprise cluster.
    location str
    The geo-location where the resource lives
    minimum_tls_version str | TlsVersion
    The minimum TLS version for the cluster to support, e.g. '1.2'
    tags Mapping[str, str]
    Resource tags.
    zones Sequence[str]
    The Availability Zones where this cluster will be deployed.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    sku Property Map
    The SKU to create, which affects price, performance, and features.
    clusterName String
    The name of the RedisEnterprise cluster.
    location String
    The geo-location where the resource lives
    minimumTlsVersion String | "1.0" | "1.1" | "1.2"
    The minimum TLS version for the cluster to support, e.g. '1.2'
    tags Map<String>
    Resource tags.
    zones List<String>
    The Availability Zones where this cluster will be deployed.

    Outputs

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

    HostName string
    DNS name of the cluster endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrivateEndpointConnections List<Pulumi.AzureNative.Cache.Outputs.PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    ProvisioningState string
    Current provisioning status of the cluster
    RedisVersion string
    Version of redis the cluster supports, e.g. '6'
    ResourceState string
    Current resource status of the cluster
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    HostName string
    DNS name of the cluster endpoint
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    PrivateEndpointConnections []PrivateEndpointConnectionResponse
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    ProvisioningState string
    Current provisioning status of the cluster
    RedisVersion string
    Version of redis the cluster supports, e.g. '6'
    ResourceState string
    Current resource status of the cluster
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hostName String
    DNS name of the cluster endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    privateEndpointConnections List<PrivateEndpointConnectionResponse>
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    provisioningState String
    Current provisioning status of the cluster
    redisVersion String
    Version of redis the cluster supports, e.g. '6'
    resourceState String
    Current resource status of the cluster
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hostName string
    DNS name of the cluster endpoint
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    privateEndpointConnections PrivateEndpointConnectionResponse[]
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    provisioningState string
    Current provisioning status of the cluster
    redisVersion string
    Version of redis the cluster supports, e.g. '6'
    resourceState string
    Current resource status of the cluster
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    host_name str
    DNS name of the cluster endpoint
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    private_endpoint_connections Sequence[PrivateEndpointConnectionResponse]
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    provisioning_state str
    Current provisioning status of the cluster
    redis_version str
    Version of redis the cluster supports, e.g. '6'
    resource_state str
    Current resource status of the cluster
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    hostName String
    DNS name of the cluster endpoint
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    privateEndpointConnections List<Property Map>
    List of private endpoint connections associated with the specified RedisEnterprise cluster
    provisioningState String
    Current provisioning status of the cluster
    redisVersion String
    Version of redis the cluster supports, e.g. '6'
    resourceState String
    Current resource status of the cluster
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

    Supporting Types

    EnterpriseSku, EnterpriseSkuArgs

    Name string | Pulumi.AzureNative.Cache.SkuName
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    Capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    Name string | SkuName
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    Capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name String | SkuName
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity Integer
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name string | SkuName
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity number
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name str | SkuName
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name String | "Enterprise_E10" | "Enterprise_E20" | "Enterprise_E50" | "Enterprise_E100" | "EnterpriseFlash_F300" | "EnterpriseFlash_F700" | "EnterpriseFlash_F1500"
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity Number
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.

    EnterpriseSkuResponse, EnterpriseSkuResponseArgs

    Name string
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    Capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    Name string
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    Capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name String
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity Integer
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name string
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity number
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name str
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity int
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.
    name String
    The type of RedisEnterprise cluster to deploy. Possible values: (Enterprise_E10, EnterpriseFlash_F300 etc.)
    capacity Number
    The size of the RedisEnterprise cluster. Defaults to 2 or 3 depending on SKU. Valid values are (2, 4, 6, ...) for Enterprise SKUs and (3, 9, 15, ...) for Flash SKUs.

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

    PrivateEndpointResponse, PrivateEndpointResponseArgs

    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.

    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_EnterpriseFlash_F300
    EnterpriseFlash_F300
    SkuName_EnterpriseFlash_F700
    EnterpriseFlash_F700
    SkuName_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
    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

    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

    Import

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

    $ pulumi import azure-native:cache:RedisEnterprise cache1 /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Cache/redisEnterprise/cache1 
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    azure-native-v1 pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native-v1 logo
    These are the docs for Azure Native v1. We recommenend using the latest version, Azure Native v2.
    Azure Native v1 v1.104.0 published on Thursday, Jul 6, 2023 by Pulumi